2018-03-21 15:56:36 +03:00
|
|
|
|
using System;
|
2017-10-30 13:51:45 +03:00
|
|
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
|
using Retailcrm;
|
|
|
|
|
using Retailcrm.Versions.V4;
|
|
|
|
|
|
|
|
|
|
namespace RetailcrmUnitTest.V4
|
|
|
|
|
{
|
|
|
|
|
[TestClass]
|
|
|
|
|
public class UsersTest
|
|
|
|
|
{
|
|
|
|
|
private readonly Client _client;
|
|
|
|
|
|
|
|
|
|
public UsersTest()
|
|
|
|
|
{
|
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]
|
|
|
|
|
public void UsersGroups()
|
|
|
|
|
{
|
|
|
|
|
Response usersGroups = _client.UsersGroups();
|
|
|
|
|
Assert.IsTrue(usersGroups.IsSuccessfull());
|
|
|
|
|
Assert.IsTrue(usersGroups.GetStatusCode() == 200);
|
|
|
|
|
Assert.IsInstanceOfType(usersGroups, typeof(Response));
|
|
|
|
|
Assert.IsTrue(usersGroups.GetResponse().ContainsKey("success"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
public void User()
|
|
|
|
|
{
|
2018-03-21 15:56:36 +03:00
|
|
|
|
Response usersGroups = _client.User(int.Parse(Environment.GetEnvironmentVariable("RETAILCRM_USER")));
|
2017-10-30 13:51:45 +03:00
|
|
|
|
Assert.IsTrue(usersGroups.IsSuccessfull());
|
|
|
|
|
Assert.IsTrue(usersGroups.GetStatusCode() == 200);
|
|
|
|
|
Assert.IsInstanceOfType(usersGroups, typeof(Response));
|
|
|
|
|
Assert.IsTrue(usersGroups.GetResponse().ContainsKey("success"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|