mirror of
https://github.com/retailcrm/api-client-dotnet.git
synced 2024-11-23 21:36:03 +03:00
8ef01ecfb5
* update test to use env variables
42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using Retailcrm;
|
|
using Retailcrm.Versions.V4;
|
|
|
|
namespace RetailcrmUnitTest.V4
|
|
{
|
|
[TestClass]
|
|
public class OrdersTest
|
|
{
|
|
private readonly Client _client;
|
|
|
|
public OrdersTest()
|
|
{
|
|
_client = new Client(
|
|
Environment.GetEnvironmentVariable("RETAILCRM_URL"),
|
|
Environment.GetEnvironmentVariable("RETAILCRM_KEY")
|
|
);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void OrdersHistory()
|
|
{
|
|
DateTime datetime = DateTime.Now;
|
|
|
|
Dictionary<string, object> filter = new Dictionary<string, object>
|
|
{
|
|
{ "startDate", datetime.AddHours(-24).ToString("yyyy-MM-dd HH:mm:ss") },
|
|
{ "endDate", datetime.AddHours(-1).ToString("yyyy-MM-dd HH:mm:ss")}
|
|
};
|
|
|
|
Response response = _client.OrdersHistory(filter, 1, 50);
|
|
|
|
Assert.IsTrue(response.IsSuccessfull());
|
|
Assert.IsTrue(response.GetStatusCode() == 200);
|
|
Assert.IsInstanceOfType(response, typeof(Response));
|
|
Assert.IsTrue(response.GetResponse().ContainsKey("history"));
|
|
}
|
|
}
|
|
}
|