Exemplo n.º 1
0
 public static Task<NumberPortabilityResponse> Check(Client client, string[] numbers, bool fullCheck = false)
 {
     var request = new NumberPortabilityRequest
     {
         TnList = numbers
     };
     return client.MakePostRequest<NumberPortabilityResponse>(string.Format("{0}?fullCheck={1}", client.ConcatAccountPath(LnpCheckerPath), fullCheck.ToString().ToLower()), request);
 }
Exemplo n.º 2
0
        public static Task <NumberPortabilityResponse> Check(Client client, string[] numbers, bool fullCheck = false)
        {
            var request = new NumberPortabilityRequest
            {
                TnList = numbers
            };

            return(client.MakePostRequest <NumberPortabilityResponse>(string.Format("{0}?fullCheck={1}", client.ConcatAccountPath(LnpCheckerPath), fullCheck.ToString().ToLower()), request));
        }
        public void CheckWithXmlTest()
        {
            var request = new NumberPortabilityRequest
            {
                TnList = new[] { "1111", "2222", "3333" }
            };
            
            using (var server = new HttpServer(new RequestHandler
            {
                EstimatedMethod = "POST",
                EstimatedPathAndQuery = string.Format("/v1.0/accounts/{0}/lnpchecker?fullCheck=true", Helper.AccountId),
                EstimatedContent = Helper.ToXmlString(request),
                ContentToSend = new StringContent(TestXmlStrings.LnpCheckResponse, Encoding.UTF8, "application/xml")
            }))
            {
                var client = Helper.CreateClient();
                var result = LnpChecker.Check(client, new[] { "1111", "2222", "3333" }, true).Result;
                if (server.Error != null) throw server.Error;
                CollectionAssert.AreEqual(new[] { "9195551212", "9195551213" }, result.PortableNumbers);
                Assert.AreEqual("NC", result.SupportedRateCenters[0].State);
                CollectionAssert.AreEqual(new[] { "9195551212", "9195551213" }, result.SupportedLosingCarriers.LosingCarrierTnList.TnList);

            }
        }
 public void CheckTest()
 {
     var request = new NumberPortabilityRequest
     {
         TnList = new[] { "1111", "2222", "3333" }
     };
     var response = new NumberPortabilityResponse
     {
         SupportedRateCenters = new[]
         {
             new RateCenterGroup
             {
                 RateCenter = "Center1",
                 City = "City1",
                 State = "State1",
                 Lata = "11",
                 Tiers = new []{"111", "222", "333"},
                 TnList = new []{"1111", "2222", "3333"}
             }, 
         },
         UnsupportedRateCenters = new RateCenterGroup[0]
     };
     using (var server = new HttpServer(new RequestHandler
     {
         EstimatedMethod = "POST",
         EstimatedPathAndQuery = string.Format("/v1.0/accounts/{0}/lnpchecker?fullCheck=true", Helper.AccountId),
         EstimatedContent = Helper.ToXmlString(request),
         ContentToSend = Helper.CreateXmlContent(response)
     }))
     {
         var client = Helper.CreateClient();
         var result = LnpChecker.Check(client, new[] { "1111", "2222", "3333" }, true).Result;
         if (server.Error != null) throw server.Error;
         Helper.AssertObjects(response, result);
     }
 }