mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-11 16:32:57 +00:00
e823114623
* Result types: * (Web)CallResult types are replaced by HttpResult, WebSocketResult and QueryResult with the same logic * Updated result types to record type * Result creation can be done with (Http/WebSocket/Query)Result.Ok(..) and .Fail(..) * Removed implicit result type conversion to bool, `if (result)` no longer works, instead use `if (result.Success)` * Replaced CallResult.SuccessResult with CallResult.Ok() * Fixed result object nullability hinting, for example Data might be null if Success isn't checked for true * Parameters & serialization: * Added support for `enabled` and `disabled` strings to bool converter * Removed ParameterCollection type, has been replaced by Parameters type * Removed ArraySerialization, OrderParameters and ParameterOrderComparer properties from RestApiClient, moved to ParameterSerializationsSettings * Updated RestRequestConfiguration in AuthenticationProvider.ProcessRequest to contain the full RequestDefinition instead of copied fields * Clients: * Updated Api client constructor logging parameter from ILogger to ILoggerFactory? * Added Api client constructor exchange name parameter * Added ToString overrides on base API types * Added Exchange property on BaseApiClient * Added ApiCredentials property on IRestApiClient and ISocketApiClient interfaces * Updated ILogger source from client name to topic specific client name * Removed logging from client creation * Fixed BaseRestClient SetApiCredentials not marked as virtual * Rest: * Added BaseAddress to RequestDefinition object * Updated RestApiClient AuthenticationProvider logic from private to protected and virtual * Removed RestApiClient.SendAsync baseAddress parameter removed * Removed RestApiClient.SendAsync without type parameter * WebSocket: * Updated MessageRouting definition into CreateForEvent for subscriptions and CreateForQuery for queries * Improved Query type safety with CeateForQuery which allows second parameter for specifying the result type * Renamed MessageRouter.CreateWithoutHandler to CreateVoid * Updated SocketApiClient.GetSocketConnection to check connection uri instead of Tag for finding compatible connections * Removed unused UnhandledMessageExpected property SocketApiClient * Fixed issue in SocketApiClient.GetSocketConnection causing requests to always wait the full max 10 seconds when there was a reconnecting socket * Shared APIs: * Updated Option definitions to always require the exchange name as first parameter * Added missing dedicated option types * Added Discover method on ISharedClient interface, returning info on supported capabilities and operations * Added SharedRequest GetParamValue helper method accepting multiple parameter names * Added ResetStaticExchangeParameters method on ExchangeParameters * Added Status property to SharedWithdrawal model * Added TradingModes property to SharedBalance model * Updated ExchangeSymbolCache to support multiple environments and additional key separation * Updated Shared ExchangeParameters parameter names to be case insensitive * Updated code comments * Replaced ExchangeResult with ExchangeCallResult type * Removed AsExchangeResult/ExchangeWebResult * Removed TradingMode from the response model, only maintained on models where it makes sense * Removed IListenKey support, listen keys now rely on internal management with TokenManager * Rate limiting: * Fixed websocket connection attempts counting towards rate limit even when server could not be reached * Removed host from rate limit methods, now part of the already provided RequestDefinition * Added amount parameter to RateLimit Reset method to allow partially resetting the limit * Added TokenManager implementation for automatic listenkey/token management * Added UserClientProvider base class * Added async streaming on UserDataTracker items with StreamUpdatesAsync * Added cancellation token support to UserDataTracker starting * Added Unit type for non-result types * Added ServerError constructor taking ErrorType and message to make it easier to create * Added SupportedEnvironments property to PlatformInfo * Updated SymbolOrderBook DoResyncAsync to return CallResult instead of CallResult<bool> which was redundant * Various small performance improvements
569 lines
20 KiB
C#
569 lines
20 KiB
C#
using CryptoExchange.Net.SharedApis;
|
|
using NUnit.Framework;
|
|
using System;
|
|
using System.Linq;
|
|
|
|
namespace CryptoExchange.Net.UnitTests
|
|
{
|
|
[TestFixture()]
|
|
public class ExchangeSymbolCacheTests
|
|
{
|
|
private SharedSpotSymbol[] CreateTestSymbols()
|
|
{
|
|
return new[]
|
|
{
|
|
new SharedSpotSymbol("BTC", "USDT", "BTCUSDT", true, TradingMode.Spot),
|
|
new SharedSpotSymbol("ETH", "USDT", "ETHUSDT", true, TradingMode.Spot),
|
|
new SharedSpotSymbol("BTC", "EUR", "BTCEUR", true, TradingMode.Spot),
|
|
new SharedSpotSymbol("ETH", "BTC", "ETHBTC", true, TradingMode.Spot),
|
|
new SharedSpotSymbol("XRP", "USDT", "XRPUSDT", false, TradingMode.Spot)
|
|
};
|
|
}
|
|
|
|
private SharedSpotSymbol[] CreateFuturesSymbols()
|
|
{
|
|
return new[]
|
|
{
|
|
new SharedSpotSymbol("BTC", "USDT", "BTCUSDT-PERP", true, TradingMode.PerpetualLinear),
|
|
new SharedSpotSymbol("ETH", "USDT", "ETHUSDT-PERP", true, TradingMode.PerpetualLinear)
|
|
};
|
|
}
|
|
|
|
[Test]
|
|
public void UpdateSymbolInfo_NewTopic_Should_AddToCache()
|
|
{
|
|
// arrange
|
|
var topicId = "NewExchange";
|
|
var symbols = CreateTestSymbols();
|
|
|
|
// act
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, symbols);
|
|
var hasCached = ExchangeSymbolCache.HasCached(topicId, "Env", null);
|
|
|
|
// assert
|
|
Assert.That(hasCached, Is.True);
|
|
}
|
|
|
|
[Test]
|
|
public void UpdateSymbolInfo_Should_StoreAllSymbols()
|
|
{
|
|
// arrange
|
|
var topicId = "ExchangeWithSymbols";
|
|
var symbols = CreateTestSymbols();
|
|
|
|
// act
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, symbols);
|
|
|
|
// assert
|
|
Assert.That(ExchangeSymbolCache.SupportsSymbol(topicId, "Env", null, "BTCUSDT"), Is.True);
|
|
Assert.That(ExchangeSymbolCache.SupportsSymbol(topicId, "Env", null, "ETHUSDT"), Is.True);
|
|
Assert.That(ExchangeSymbolCache.SupportsSymbol(topicId, "Env", null, "BTCEUR"), Is.True);
|
|
Assert.That(ExchangeSymbolCache.SupportsSymbol(topicId, "Env", null, "ETHBTC"), Is.True);
|
|
Assert.That(ExchangeSymbolCache.SupportsSymbol(topicId, "Env", null, "XRPUSDT"), Is.True);
|
|
}
|
|
|
|
[Test]
|
|
public void UpdateSymbolInfo_CalledTwiceWithinAnHour_Should_NotUpdate()
|
|
{
|
|
// arrange
|
|
var topicId = "ExchangeNoUpdate";
|
|
var initialSymbols = new[]
|
|
{
|
|
new SharedSpotSymbol("BTC", "USDT", "BTCUSDT", true, TradingMode.Spot)
|
|
};
|
|
var updatedSymbols = new[]
|
|
{
|
|
new SharedSpotSymbol("BTC", "USDT", "BTCUSDT", true, TradingMode.Spot),
|
|
new SharedSpotSymbol("ETH", "USDT", "ETHUSDT", true, TradingMode.Spot)
|
|
};
|
|
|
|
// act
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, initialSymbols);
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, updatedSymbols);
|
|
|
|
// assert - should still have only the initial symbol since less than 60 minutes passed
|
|
Assert.That(ExchangeSymbolCache.SupportsSymbol(topicId, "Env", null, "BTCUSDT"), Is.True);
|
|
// The second update should not have been applied
|
|
Assert.That(ExchangeSymbolCache.SupportsSymbol(topicId, "Env", null, "ETHUSDT"), Is.False);
|
|
}
|
|
|
|
[Test]
|
|
public void UpdateSymbolInfo_WithEmptyArray_Should_CreateEmptyCache()
|
|
{
|
|
// arrange
|
|
var topicId = "EmptyExchange";
|
|
var symbols = Array.Empty<SharedSpotSymbol>();
|
|
|
|
// act
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, symbols);
|
|
var hasCached = ExchangeSymbolCache.HasCached(topicId, "Env", null);
|
|
|
|
// assert
|
|
Assert.That(hasCached, Is.False);
|
|
}
|
|
|
|
[Test]
|
|
public void HasCached_NonExistentTopic_Should_ReturnFalse()
|
|
{
|
|
// arrange
|
|
var nonExistentTopic = "NonExistent_" + Guid.NewGuid();
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.HasCached(nonExistentTopic, "Env", null);
|
|
|
|
// assert
|
|
Assert.That(result, Is.False);
|
|
}
|
|
|
|
[Test]
|
|
public void HasCached_ExistingTopicWithSymbols_Should_ReturnTrue()
|
|
{
|
|
// arrange
|
|
var topicId = "ExchangeWithData";
|
|
var symbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, symbols);
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.HasCached(topicId, "Env", null);
|
|
|
|
// assert
|
|
Assert.That(result, Is.True);
|
|
}
|
|
|
|
[Test]
|
|
public void HasCached_ExistingTopicWithNoSymbols_Should_ReturnFalse()
|
|
{
|
|
// arrange
|
|
var topicId = "ExchangeNoData";
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, Array.Empty<SharedSpotSymbol>());
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.HasCached(topicId, "Env", null);
|
|
|
|
// assert
|
|
Assert.That(result, Is.False);
|
|
}
|
|
|
|
[Test]
|
|
public void SupportsSymbol_ByName_ExistingSymbol_Should_ReturnTrue()
|
|
{
|
|
// arrange
|
|
var topicId = "ExchangeSupports";
|
|
var symbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, symbols);
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.SupportsSymbol(topicId, "Env", null, "BTCUSDT");
|
|
|
|
// assert
|
|
Assert.That(result, Is.True);
|
|
}
|
|
|
|
[Test]
|
|
public void SupportsSymbol_ByName_NonExistingSymbol_Should_ReturnFalse()
|
|
{
|
|
// arrange
|
|
var topicId = "ExchangeNoSupport";
|
|
var symbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, symbols);
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.SupportsSymbol(topicId, "Env", null, "LINKUSDT");
|
|
|
|
// assert
|
|
Assert.That(result, Is.False);
|
|
}
|
|
|
|
[Test]
|
|
public void SupportsSymbol_ByName_NonExistentTopic_Should_ReturnFalse()
|
|
{
|
|
// arrange
|
|
var nonExistentTopic = "NonExistent_" + Guid.NewGuid();
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.SupportsSymbol(nonExistentTopic, "Env", null, "BTCUSDT");
|
|
|
|
// assert
|
|
Assert.That(result, Is.False);
|
|
}
|
|
|
|
[Test]
|
|
public void SupportsSymbol_BySharedSymbol_ExistingSymbol_Should_ReturnTrue()
|
|
{
|
|
// arrange
|
|
var topicId = "ExchangeSharedSymbol";
|
|
var symbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, symbols);
|
|
var sharedSymbol = new SharedSymbol(TradingMode.Spot, "BTC", "USDT");
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.SupportsSymbol(topicId, "Env", null, sharedSymbol);
|
|
|
|
// assert
|
|
Assert.That(result, Is.True);
|
|
}
|
|
|
|
[Test]
|
|
public void SupportsSymbol_BySharedSymbol_NonExistingSymbol_Should_ReturnFalse()
|
|
{
|
|
// arrange
|
|
var topicId = "ExchangeNoSharedSymbol";
|
|
var symbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, symbols);
|
|
var sharedSymbol = new SharedSymbol(TradingMode.Spot, "LINK", "USDT");
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.SupportsSymbol(topicId, "Env", null, sharedSymbol);
|
|
|
|
// assert
|
|
Assert.That(result, Is.False);
|
|
}
|
|
|
|
[Test]
|
|
public void SupportsSymbol_BySharedSymbol_DifferentTradingMode_Should_ReturnFalse()
|
|
{
|
|
// arrange
|
|
var topicId = "ExchangeDifferentMode";
|
|
var symbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, symbols);
|
|
var sharedSymbol = new SharedSymbol(TradingMode.PerpetualLinear, "BTC", "USDT");
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.SupportsSymbol(topicId, "Env", null, sharedSymbol);
|
|
|
|
// assert
|
|
Assert.That(result, Is.False);
|
|
}
|
|
|
|
[Test]
|
|
public void SupportsSymbol_BySharedSymbol_NonExistentTopic_Should_ReturnFalse()
|
|
{
|
|
// arrange
|
|
var nonExistentTopic = "NonExistent_" + Guid.NewGuid();
|
|
var sharedSymbol = new SharedSymbol(TradingMode.Spot, "BTC", "USDT");
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.SupportsSymbol(nonExistentTopic, "Env", null, sharedSymbol);
|
|
|
|
// assert
|
|
Assert.That(result, Is.False);
|
|
}
|
|
|
|
[Test]
|
|
public void GetSymbolsForBaseAsset_ExistingBaseAsset_Should_ReturnMatchingSymbols()
|
|
{
|
|
// arrange
|
|
var topicId = "ExchangeBaseAsset";
|
|
var symbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, symbols);
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.GetSymbolsForBaseAsset(topicId, "Env", null, "BTC");
|
|
|
|
// assert
|
|
Assert.That(result, Is.Not.Null);
|
|
Assert.That(result.Length, Is.EqualTo(2));
|
|
Assert.That(result.Any(x => x.QuoteAsset == "USDT"), Is.True);
|
|
Assert.That(result.Any(x => x.QuoteAsset == "EUR"), Is.True);
|
|
}
|
|
|
|
[Test]
|
|
public void GetSymbolsForBaseAsset_CaseInsensitive_Should_ReturnMatchingSymbols()
|
|
{
|
|
// arrange
|
|
var topicId = "ExchangeCaseInsensitive";
|
|
var symbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, symbols);
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.GetSymbolsForBaseAsset(topicId, "Env", null, "btc");
|
|
|
|
// assert
|
|
Assert.That(result, Is.Not.Null);
|
|
Assert.That(result.Length, Is.EqualTo(2));
|
|
}
|
|
|
|
[Test]
|
|
public void GetSymbolsForBaseAsset_NonExistingBaseAsset_Should_ReturnEmptyArray()
|
|
{
|
|
// arrange
|
|
var topicId = "ExchangeNoBaseAsset";
|
|
var symbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, symbols);
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.GetSymbolsForBaseAsset(topicId, "Env", null, "LINK");
|
|
|
|
// assert
|
|
Assert.That(result, Is.Not.Null);
|
|
Assert.That(result.Length, Is.EqualTo(0));
|
|
}
|
|
|
|
[Test]
|
|
public void GetSymbolsForBaseAsset_NonExistentTopic_Should_ReturnEmptyArray()
|
|
{
|
|
// arrange
|
|
var nonExistentTopic = "NonExistent_" + Guid.NewGuid();
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.GetSymbolsForBaseAsset(nonExistentTopic, "Env", null, "BTC");
|
|
|
|
// assert
|
|
Assert.That(result, Is.Not.Null);
|
|
Assert.That(result.Length, Is.EqualTo(0));
|
|
}
|
|
|
|
[Test]
|
|
public void ParseSymbol_ExistingSymbol_Should_ReturnSharedSymbol()
|
|
{
|
|
// arrange
|
|
var topicId = "ExchangeParse";
|
|
var symbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, symbols);
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.ParseSymbol(topicId, "Env", null, "BTCUSDT");
|
|
|
|
// assert
|
|
Assert.That(result, Is.Not.Null);
|
|
Assert.That(result!.BaseAsset, Is.EqualTo("BTC"));
|
|
Assert.That(result.QuoteAsset, Is.EqualTo("USDT"));
|
|
Assert.That(result.TradingMode, Is.EqualTo(TradingMode.Spot));
|
|
Assert.That(result.SymbolName, Is.EqualTo("BTCUSDT"));
|
|
}
|
|
|
|
[Test]
|
|
public void ParseSymbol_NonExistingSymbol_Should_ReturnNull()
|
|
{
|
|
// arrange
|
|
var topicId = "ExchangeNoParse";
|
|
var symbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, symbols);
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.ParseSymbol(topicId, "Env", null, "LINKUSDT");
|
|
|
|
// assert
|
|
Assert.That(result, Is.Null);
|
|
}
|
|
|
|
[Test]
|
|
public void ParseSymbol_NullSymbolName_Should_ReturnNull()
|
|
{
|
|
// arrange
|
|
var topicId = "ExchangeNullSymbol";
|
|
var symbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, symbols);
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.ParseSymbol(topicId, "Env", null, null);
|
|
|
|
// assert
|
|
Assert.That(result, Is.Null);
|
|
}
|
|
|
|
[Test]
|
|
public void ParseSymbol_NonExistentTopic_Should_ReturnNull()
|
|
{
|
|
// arrange
|
|
var nonExistentTopic = "NonExistent_" + Guid.NewGuid();
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.ParseSymbol(nonExistentTopic, "Env", null, "BTCUSDT");
|
|
|
|
// assert
|
|
Assert.That(result, Is.Null);
|
|
}
|
|
|
|
[Test]
|
|
public void MultipleTopics_Should_MaintainSeparateData()
|
|
{
|
|
// arrange
|
|
var topic1 = "Exchange1";
|
|
var topic2 = "Exchange2";
|
|
var symbols1 = new[]
|
|
{
|
|
new SharedSpotSymbol("BTC", "USDT", "BTCUSDT", true, TradingMode.Spot)
|
|
};
|
|
var symbols2 = new[]
|
|
{
|
|
new SharedSpotSymbol("ETH", "USDT", "ETHUSDT", true, TradingMode.Spot)
|
|
};
|
|
|
|
// act
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topic1, "Env", null, symbols1);
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topic2, "Env", null, symbols2);
|
|
|
|
// assert
|
|
Assert.That(ExchangeSymbolCache.SupportsSymbol(topic1, "Env", null, "BTCUSDT"), Is.True);
|
|
Assert.That(ExchangeSymbolCache.SupportsSymbol(topic1, "Env", null, "ETHUSDT"), Is.False);
|
|
Assert.That(ExchangeSymbolCache.SupportsSymbol(topic2, "Env", null, "ETHUSDT"), Is.True);
|
|
Assert.That(ExchangeSymbolCache.SupportsSymbol(topic2, "Env", null, "BTCUSDT"), Is.False);
|
|
}
|
|
|
|
[Test]
|
|
public void UpdateSymbolInfo_WithDifferentTradingModes_Should_StoreCorrectly()
|
|
{
|
|
// arrange
|
|
var topicId = "ExchangeMixedModes";
|
|
var spotSymbols = CreateTestSymbols();
|
|
var futuresSymbols = CreateFuturesSymbols();
|
|
var allSymbols = spotSymbols.Concat(futuresSymbols).ToArray();
|
|
|
|
// act
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, allSymbols);
|
|
|
|
// assert
|
|
var spotSymbol = new SharedSymbol(TradingMode.Spot, "BTC", "USDT");
|
|
var futuresSymbol = new SharedSymbol(TradingMode.PerpetualLinear, "BTC", "USDT");
|
|
|
|
Assert.That(ExchangeSymbolCache.SupportsSymbol(topicId, "Env", null, spotSymbol), Is.True);
|
|
Assert.That(ExchangeSymbolCache.SupportsSymbol(topicId, "Env", null, futuresSymbol), Is.True);
|
|
}
|
|
|
|
[Test]
|
|
public void GetSymbolsForBaseAsset_Should_ReturnAllTradingModes()
|
|
{
|
|
// arrange
|
|
var topicId = "ExchangeAllModes";
|
|
var spotSymbols = CreateTestSymbols();
|
|
var futuresSymbols = CreateFuturesSymbols();
|
|
var allSymbols = spotSymbols.Concat(futuresSymbols).ToArray();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, allSymbols);
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.GetSymbolsForBaseAsset(topicId, "Env", null, "BTC");
|
|
|
|
// assert
|
|
Assert.That(result.Length, Is.GreaterThanOrEqualTo(2));
|
|
Assert.That(result.Any(x => x.TradingMode == TradingMode.Spot), Is.True);
|
|
Assert.That(result.Any(x => x.TradingMode == TradingMode.PerpetualLinear), Is.True);
|
|
}
|
|
|
|
[Test]
|
|
public void GetSymbolsForBaseAsset_WithMultipleMatchingSymbols_Should_ReturnAll()
|
|
{
|
|
// arrange
|
|
var topicId = "ExchangeMultiple";
|
|
var symbols = new[]
|
|
{
|
|
new SharedSpotSymbol("ETH", "USDT", "ETHUSDT", true, TradingMode.Spot),
|
|
new SharedSpotSymbol("ETH", "BTC", "ETHBTC", true, TradingMode.Spot),
|
|
new SharedSpotSymbol("ETH", "EUR", "ETHEUR", true, TradingMode.Spot)
|
|
};
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Env", null, symbols);
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.GetSymbolsForBaseAsset(topicId, "Env", null, "ETH");
|
|
|
|
// assert
|
|
Assert.That(result.Length, Is.EqualTo(3));
|
|
Assert.That(result.All(x => x.BaseAsset == "ETH"), Is.True);
|
|
}
|
|
|
|
[Test]
|
|
public void GetSymbolsForBaseAsset_WithDifferentEnvironments_Should_ReturnNone()
|
|
{
|
|
// arrange
|
|
var topicId = "Topic1";
|
|
var spotSymbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Live", null, spotSymbols);
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.GetSymbolsForBaseAsset(topicId, "Test", null, "BTC");
|
|
|
|
// assert
|
|
Assert.That(result.Length, Is.EqualTo(0));
|
|
}
|
|
|
|
[Test]
|
|
public void GetSymbolsForBaseAsset_WithDifferentKey_Should_ReturnNone()
|
|
{
|
|
// arrange
|
|
var topicId = "Topic2";
|
|
var spotSymbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Live", "1", spotSymbols);
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.GetSymbolsForBaseAsset(topicId, "Live", "2", "BTC");
|
|
|
|
// assert
|
|
Assert.That(result.Length, Is.EqualTo(0));
|
|
}
|
|
|
|
[Test]
|
|
public void GetSymbolsForBaseAsset_WithSetKey_Should_ReturnNone()
|
|
{
|
|
// arrange
|
|
var topicId = "Topic3";
|
|
var spotSymbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Live", null, spotSymbols);
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.GetSymbolsForBaseAsset(topicId, "Live", "2", "BTC");
|
|
|
|
// assert
|
|
Assert.That(result.Length, Is.EqualTo(0));
|
|
}
|
|
|
|
[Test]
|
|
public void GetSymbolsForBaseAsset_WithNotSetKey_Should_ReturnNone()
|
|
{
|
|
// arrange
|
|
var topicId = "Topic4";
|
|
var spotSymbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Live", "2", spotSymbols);
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.GetSymbolsForBaseAsset(topicId, "Live", null, "BTC");
|
|
|
|
// assert
|
|
Assert.That(result.Length, Is.EqualTo(2));
|
|
}
|
|
|
|
[Test]
|
|
public void ParseSymbol_WithDifferentKey_Should_ReturnNull()
|
|
{
|
|
// arrange
|
|
var topicId = "Topic5";
|
|
var spotSymbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Live", "1", spotSymbols);
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.ParseSymbol(topicId, "Live", "2", "BTCUSDT");
|
|
|
|
// assert
|
|
Assert.That(result, Is.Null);
|
|
}
|
|
|
|
[Test]
|
|
public void ParseSymbol_WithSetKey_Should_ReturnNull()
|
|
{
|
|
// arrange
|
|
var topicId = "Topic6";
|
|
var spotSymbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Live", null, spotSymbols);
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.ParseSymbol(topicId, "Live", "2", "BTCUSDT");
|
|
|
|
// assert
|
|
Assert.That(result, Is.Null);
|
|
}
|
|
|
|
[Test]
|
|
public void ParseSymbol_WithNotSetKey_Should_ReturnNull()
|
|
{
|
|
// arrange
|
|
var topicId = "Topic7";
|
|
var spotSymbols = CreateTestSymbols();
|
|
ExchangeSymbolCache.UpdateSymbolInfo(topicId, "Live", "1", spotSymbols);
|
|
|
|
// act
|
|
var result = ExchangeSymbolCache.ParseSymbol(topicId, "Live", null, "BTCUSDT");
|
|
|
|
// assert
|
|
Assert.That(result, Is.Not.Null);
|
|
}
|
|
}
|
|
} |