mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-07 07:56:12 +00:00
* Added support for Native AOT compilation * Updated all IEnumerable response types to array response types * Added Pass support for ApiCredentials, removing the need for most implementations to add their own ApiCredentials type * Added KeepAliveTimeout setting setting ping frame timeouts for SocketApiClient * Added IBookTickerRestClient Shared interface for requesting book tickers * Added ISpotTriggerOrderRestClient Shared interface for managing spot trigger orders * Added ISpotOrderClientIdClient Shared interface for managing spot orders by client order id * Added IFuturesTriggerOrderRestClient Shared interface for managing futures trigger orders * Added IFuturesOrderClientIdClient Shared interface for managing futures orders by client order id * Added IFuturesTpSlRestClient Shared interface for setting TP/SL on open futures positions * Added GenerateClientOrderId to ISpotOrderRestClient and IFuturesOrderRestClient interface * Added OptionalExchangeParameters and Supported properties to EndpointOptions * Refactor Shared interfaces quantity parameters and properties to use SharedQuantity * Added SharedSymbol property to Shared interface models returning a symbol * Added TriggerPrice, IsTriggerOrder, TakeProfitPrice, StopLossPrice and IsCloseOrder to SharedFuturesOrder response model * Added MaxShortLeverage and MaxLongLeverage to SharedFuturesSymbol response model * Added StopLossPrice and TakeProfitPrice to SharedPosition response model * Added TriggerPrice and IsTriggerOrder to SharedSpotOrder response model * Added QuoteVolume property to SharedSpotTicker response model * Added AssetAlias configuration models * Added static ExchangeSymbolCache for tracking symbol information from exchanges * Added static CallResult.SuccessResult to be used instead of constructing success CallResult instance * Added static ApplyRules, RandomHexString and RandomLong helper methods to ExchangeHelpers class * Added AsErrorWithData To CallResult * Added OriginalData property to CallResult * Added support for adjusting the rate limit key per call, allowing for ratelimiting depending on request parameters * Added implementation for integration testing ISymbolOrderBook instances * Added implementation for integration testing socket subscriptions * Added implementation for testing socket queries * Updated request cancellation logging to Debug level * Updated logging SourceContext to include the client type * Updated some logging logic, errors no longer contain any data, exception are not logged as string but instead forwarded to structured logging * Fixed warning for Enum parsing throwing exception and output warnings for each object in a response to only once to prevent slowing down execution * Fixed memory leak in AsyncAutoRestEvent * Fixed logging for ping frame timeout * Fixed warning getting logged when user stops SymbolOrderBook instance * Fixed socket client `UnsubscribeAll` not unsubscribing dedicated connections * Fixed memory leak in Rest client cache * Fixed integers bigger than int16 not getting correctly parsed to enums * Fixed issue where the default options were overridden when using SetApiCredentials * Removed Newtonsoft.Json dependency * Removed legacy Rest client code * Removed legacy ISpotClient and IFuturesClient support
184 lines
6.2 KiB
C#
184 lines
6.2 KiB
C#
using CryptoExchange.Net.Objects;
|
|
using NUnit.Framework;
|
|
using NUnit.Framework.Legacy;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net.Http;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CryptoExchange.Net.UnitTests
|
|
{
|
|
[TestFixture()]
|
|
internal class CallResultTests
|
|
{
|
|
[Test]
|
|
public void TestBasicErrorCallResult()
|
|
{
|
|
var result = new CallResult(new ServerError("TestError"));
|
|
|
|
ClassicAssert.AreSame(result.Error.Message, "TestError");
|
|
ClassicAssert.IsFalse(result);
|
|
ClassicAssert.IsFalse(result.Success);
|
|
}
|
|
|
|
[Test]
|
|
public void TestBasicSuccessCallResult()
|
|
{
|
|
var result = new CallResult(null);
|
|
|
|
ClassicAssert.IsNull(result.Error);
|
|
Assert.That(result);
|
|
Assert.That(result.Success);
|
|
}
|
|
|
|
[Test]
|
|
public void TestCallResultError()
|
|
{
|
|
var result = new CallResult<object>(new ServerError("TestError"));
|
|
|
|
ClassicAssert.AreSame(result.Error.Message, "TestError");
|
|
ClassicAssert.IsNull(result.Data);
|
|
ClassicAssert.IsFalse(result);
|
|
ClassicAssert.IsFalse(result.Success);
|
|
}
|
|
|
|
[Test]
|
|
public void TestCallResultSuccess()
|
|
{
|
|
var result = new CallResult<object>(new object());
|
|
|
|
ClassicAssert.IsNull(result.Error);
|
|
ClassicAssert.IsNotNull(result.Data);
|
|
Assert.That(result);
|
|
Assert.That(result.Success);
|
|
}
|
|
|
|
[Test]
|
|
public void TestCallResultSuccessAs()
|
|
{
|
|
var result = new CallResult<TestObjectResult>(new TestObjectResult());
|
|
var asResult = result.As<TestObject2>(result.Data.InnerData);
|
|
|
|
ClassicAssert.IsNull(asResult.Error);
|
|
ClassicAssert.IsNotNull(asResult.Data);
|
|
Assert.That(asResult.Data is not null);
|
|
Assert.That(asResult);
|
|
Assert.That(asResult.Success);
|
|
}
|
|
|
|
[Test]
|
|
public void TestCallResultErrorAs()
|
|
{
|
|
var result = new CallResult<TestObjectResult>(new ServerError("TestError"));
|
|
var asResult = result.As<TestObject2>(default);
|
|
|
|
ClassicAssert.IsNotNull(asResult.Error);
|
|
ClassicAssert.AreSame(asResult.Error.Message, "TestError");
|
|
ClassicAssert.IsNull(asResult.Data);
|
|
ClassicAssert.IsFalse(asResult);
|
|
ClassicAssert.IsFalse(asResult.Success);
|
|
}
|
|
|
|
[Test]
|
|
public void TestCallResultErrorAsError()
|
|
{
|
|
var result = new CallResult<TestObjectResult>(new ServerError("TestError"));
|
|
var asResult = result.AsError<TestObject2>(new ServerError("TestError2"));
|
|
|
|
ClassicAssert.IsNotNull(asResult.Error);
|
|
ClassicAssert.AreSame(asResult.Error.Message, "TestError2");
|
|
ClassicAssert.IsNull(asResult.Data);
|
|
ClassicAssert.IsFalse(asResult);
|
|
ClassicAssert.IsFalse(asResult.Success);
|
|
}
|
|
|
|
[Test]
|
|
public void TestWebCallResultErrorAsError()
|
|
{
|
|
var result = new WebCallResult<TestObjectResult>(new ServerError("TestError"));
|
|
var asResult = result.AsError<TestObject2>(new ServerError("TestError2"));
|
|
|
|
ClassicAssert.IsNotNull(asResult.Error);
|
|
ClassicAssert.AreSame(asResult.Error.Message, "TestError2");
|
|
ClassicAssert.IsNull(asResult.Data);
|
|
ClassicAssert.IsFalse(asResult);
|
|
ClassicAssert.IsFalse(asResult.Success);
|
|
}
|
|
|
|
[Test]
|
|
public void TestWebCallResultSuccessAsError()
|
|
{
|
|
var result = new WebCallResult<TestObjectResult>(
|
|
System.Net.HttpStatusCode.OK,
|
|
new KeyValuePair<string, string[]>[0],
|
|
TimeSpan.FromSeconds(1),
|
|
null,
|
|
"{}",
|
|
1,
|
|
"https://test.com/api",
|
|
null,
|
|
HttpMethod.Get,
|
|
new KeyValuePair<string, string[]>[0],
|
|
ResultDataSource.Server,
|
|
new TestObjectResult(),
|
|
null);
|
|
var asResult = result.AsError<TestObject2>(new ServerError("TestError2"));
|
|
|
|
ClassicAssert.IsNotNull(asResult.Error);
|
|
Assert.That(asResult.Error.Message == "TestError2");
|
|
Assert.That(asResult.ResponseStatusCode == System.Net.HttpStatusCode.OK);
|
|
Assert.That(asResult.ResponseTime == TimeSpan.FromSeconds(1));
|
|
Assert.That(asResult.RequestUrl == "https://test.com/api");
|
|
Assert.That(asResult.RequestMethod == HttpMethod.Get);
|
|
ClassicAssert.IsNull(asResult.Data);
|
|
ClassicAssert.IsFalse(asResult);
|
|
ClassicAssert.IsFalse(asResult.Success);
|
|
}
|
|
|
|
[Test]
|
|
public void TestWebCallResultSuccessAsSuccess()
|
|
{
|
|
var result = new WebCallResult<TestObjectResult>(
|
|
System.Net.HttpStatusCode.OK,
|
|
new KeyValuePair<string, string[]>[0],
|
|
TimeSpan.FromSeconds(1),
|
|
null,
|
|
"{}",
|
|
1,
|
|
"https://test.com/api",
|
|
null,
|
|
HttpMethod.Get,
|
|
new KeyValuePair<string, string[]>[0],
|
|
ResultDataSource.Server,
|
|
new TestObjectResult(),
|
|
null);
|
|
var asResult = result.As<TestObject2>(result.Data.InnerData);
|
|
|
|
ClassicAssert.IsNull(asResult.Error);
|
|
Assert.That(asResult.ResponseStatusCode == System.Net.HttpStatusCode.OK);
|
|
Assert.That(asResult.ResponseTime == TimeSpan.FromSeconds(1));
|
|
Assert.That(asResult.RequestUrl == "https://test.com/api");
|
|
Assert.That(asResult.RequestMethod == HttpMethod.Get);
|
|
ClassicAssert.IsNotNull(asResult.Data);
|
|
Assert.That(asResult);
|
|
Assert.That(asResult.Success);
|
|
}
|
|
}
|
|
|
|
public class TestObjectResult
|
|
{
|
|
public TestObject2 InnerData;
|
|
|
|
public TestObjectResult()
|
|
{
|
|
InnerData = new TestObject2();
|
|
}
|
|
}
|
|
|
|
public class TestObject2
|
|
{
|
|
}
|
|
}
|