2018-03-21 15:56:36 +03:00
|
|
|
|
using System;
|
2017-10-30 13:51:45 +03:00
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
|
using Retailcrm;
|
|
|
|
|
using Retailcrm.Versions.V3;
|
|
|
|
|
|
|
|
|
|
namespace RetailcrmUnitTest.V3
|
|
|
|
|
{
|
|
|
|
|
[TestClass]
|
|
|
|
|
public class TelephonyTest
|
|
|
|
|
{
|
|
|
|
|
private readonly Client _client;
|
2018-03-21 15:56:36 +03:00
|
|
|
|
|
2017-10-30 13:51:45 +03:00
|
|
|
|
public TelephonyTest()
|
|
|
|
|
{
|
2018-03-21 15:56:36 +03:00
|
|
|
|
_client = new Client(
|
|
|
|
|
Environment.GetEnvironmentVariable("RETAILCRM_URL"),
|
|
|
|
|
Environment.GetEnvironmentVariable("RETAILCRM_KEY")
|
|
|
|
|
);
|
2017-10-30 13:51:45 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod]
|
2020-02-19 23:27:39 +03:00
|
|
|
|
[Ignore]
|
2017-10-30 13:51:45 +03:00
|
|
|
|
public void TelephonyManagerGet()
|
|
|
|
|
{
|
2018-03-21 15:56:36 +03:00
|
|
|
|
Response response = _client.TelephonyManagerGet("+79999999999");
|
2017-10-30 13:51:45 +03:00
|
|
|
|
Debug.WriteLine(response.GetRawResponse());
|
|
|
|
|
Assert.IsTrue(response.IsSuccessfull());
|
|
|
|
|
Assert.IsTrue(response.GetStatusCode() == 200);
|
|
|
|
|
Assert.IsInstanceOfType(response, typeof(Response));
|
|
|
|
|
Assert.IsTrue(response.GetResponse().ContainsKey("success"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|