mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-07 16:06:15 +00:00
commit 90f285d7f6bcd926ce9ca3d5832b1d70a5eae6ab Author: JKorf <jankorf91@gmail.com> Date: Sun Jun 25 19:51:12 2023 +0200 Docs commit 72187035c703d1402b37bd2f4c3e066706f28d67 Author: JKorf <jankorf91@gmail.com> Date: Sat Jun 24 16:02:53 2023 +0200 docs commit 8411977292f1fb0b6e0705b1ad675b79a5311d90 Author: JKorf <jankorf91@gmail.com> Date: Fri Jun 23 18:25:15 2023 +0200 wip commit cb7d33aad5d2751104c8b8a6c6eadbf0d36b672c Author: JKorf <jankorf91@gmail.com> Date: Fri Jun 2 19:26:26 2023 +0200 wip commit 4359a2d05ea1141cff516dab18f364a6ca854e18 Author: JKorf <jankorf91@gmail.com> Date: Wed May 31 20:51:36 2023 +0200 wip commit c6adb1b2f728d143f6bd667139c619581122a3c9 Author: JKorf <jankorf91@gmail.com> Date: Mon May 1 21:13:47 2023 +0200 wip commit 7fee733f82fa6ff574030452f0955c9e817647dd Author: JKorf <jankorf91@gmail.com> Date: Thu Apr 27 13:02:56 2023 +0200 wip commit f8057313ffc9b0c31effcda71d35d105ea390971 Author: JKorf <jankorf91@gmail.com> Date: Mon Apr 17 21:37:51 2023 +0200 wip
154 lines
5.9 KiB
C#
154 lines
5.9 KiB
C#
using CryptoExchange.Net.Authentication;
|
|
using CryptoExchange.Net.Objects;
|
|
using CryptoExchange.Net.Objects.Options;
|
|
using CryptoExchange.Net.UnitTests.TestImplementations;
|
|
using Microsoft.Extensions.Logging;
|
|
using NUnit.Framework;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CryptoExchange.Net.UnitTests
|
|
{
|
|
[TestFixture()]
|
|
public class OptionsTests
|
|
{
|
|
[TearDown]
|
|
public void Init()
|
|
{
|
|
TestClientOptions.Default = new TestClientOptions
|
|
{
|
|
};
|
|
}
|
|
|
|
[TestCase(null, null)]
|
|
[TestCase("", "")]
|
|
[TestCase("test", null)]
|
|
[TestCase("test", "")]
|
|
[TestCase(null, "test")]
|
|
[TestCase("", "test")]
|
|
public void SettingEmptyValuesForAPICredentials_Should_ThrowException(string key, string secret)
|
|
{
|
|
// arrange
|
|
// act
|
|
// assert
|
|
Assert.Throws(typeof(ArgumentException),
|
|
() => new RestExchangeOptions<TestEnvironment, ApiCredentials>() { ApiCredentials = new ApiCredentials(key, secret) });
|
|
}
|
|
|
|
[Test]
|
|
public void TestBasicOptionsAreSet()
|
|
{
|
|
// arrange, act
|
|
var options = new TestClientOptions
|
|
{
|
|
ApiCredentials = new ApiCredentials("123", "456"),
|
|
ReceiveWindow = TimeSpan.FromSeconds(10)
|
|
};
|
|
|
|
// assert
|
|
Assert.AreEqual(options.ReceiveWindow, TimeSpan.FromSeconds(10));
|
|
Assert.AreEqual(options.ApiCredentials.Key.GetString(), "123");
|
|
Assert.AreEqual(options.ApiCredentials.Secret.GetString(), "456");
|
|
}
|
|
|
|
[Test]
|
|
public void TestApiOptionsAreSet()
|
|
{
|
|
// arrange, act
|
|
var options = new TestClientOptions();
|
|
options.Api1Options.ApiCredentials = new ApiCredentials("123", "456");
|
|
options.Api2Options.ApiCredentials = new ApiCredentials("789", "101");
|
|
|
|
// assert
|
|
Assert.AreEqual(options.Api1Options.ApiCredentials.Key.GetString(), "123");
|
|
Assert.AreEqual(options.Api1Options.ApiCredentials.Secret.GetString(), "456");
|
|
Assert.AreEqual(options.Api2Options.ApiCredentials.Key.GetString(), "789");
|
|
Assert.AreEqual(options.Api2Options.ApiCredentials.Secret.GetString(), "101");
|
|
}
|
|
|
|
[Test]
|
|
public void TestClientUsesCorrectOptions()
|
|
{
|
|
var client = new TestRestClient(options => {
|
|
options.Api1Options.ApiCredentials = new ApiCredentials("111", "222");
|
|
options.ApiCredentials = new ApiCredentials("333", "444");
|
|
});
|
|
|
|
var authProvider1 = (TestAuthProvider)client.Api1.AuthenticationProvider;
|
|
var authProvider2 = (TestAuthProvider)client.Api2.AuthenticationProvider;
|
|
Assert.AreEqual(authProvider1.GetKey(), "111");
|
|
Assert.AreEqual(authProvider1.GetSecret(), "222");
|
|
Assert.AreEqual(authProvider2.GetKey(), "333");
|
|
Assert.AreEqual(authProvider2.GetSecret(), "444");
|
|
}
|
|
|
|
[Test]
|
|
public void TestClientUsesCorrectOptionsWithDefault()
|
|
{
|
|
TestClientOptions.Default.ApiCredentials = new ApiCredentials("123", "456");
|
|
TestClientOptions.Default.Api1Options.ApiCredentials = new ApiCredentials("111", "222");
|
|
|
|
var client = new TestRestClient();
|
|
|
|
var authProvider1 = (TestAuthProvider)client.Api1.AuthenticationProvider;
|
|
var authProvider2 = (TestAuthProvider)client.Api2.AuthenticationProvider;
|
|
Assert.AreEqual(authProvider1.GetKey(), "111");
|
|
Assert.AreEqual(authProvider1.GetSecret(), "222");
|
|
Assert.AreEqual(authProvider2.GetKey(), "123");
|
|
Assert.AreEqual(authProvider2.GetSecret(), "456");
|
|
}
|
|
|
|
[Test]
|
|
public void TestClientUsesCorrectOptionsWithOverridingDefault()
|
|
{
|
|
TestClientOptions.Default.ApiCredentials = new ApiCredentials("123", "456");
|
|
TestClientOptions.Default.Api1Options.ApiCredentials = new ApiCredentials("111", "222");
|
|
|
|
var client = new TestRestClient(options =>
|
|
{
|
|
options.Api1Options.ApiCredentials = new ApiCredentials("333", "444");
|
|
options.Environment = new TestEnvironment("Test", "https://test.test");
|
|
});
|
|
|
|
var authProvider1 = (TestAuthProvider)client.Api1.AuthenticationProvider;
|
|
var authProvider2 = (TestAuthProvider)client.Api2.AuthenticationProvider;
|
|
Assert.AreEqual(authProvider1.GetKey(), "333");
|
|
Assert.AreEqual(authProvider1.GetSecret(), "444");
|
|
Assert.AreEqual(authProvider2.GetKey(), "123");
|
|
Assert.AreEqual(authProvider2.GetSecret(), "456");
|
|
Assert.AreEqual(client.Api2.BaseAddress, "https://localhost:123");
|
|
}
|
|
}
|
|
|
|
public class TestClientOptions: RestExchangeOptions<TestEnvironment, ApiCredentials>
|
|
{
|
|
/// <summary>
|
|
/// Default options for the futures client
|
|
/// </summary>
|
|
public static TestClientOptions Default { get; set; } = new TestClientOptions()
|
|
{
|
|
Environment = new TestEnvironment("test", "https://test.com")
|
|
};
|
|
|
|
/// <summary>
|
|
/// The default receive window for requests
|
|
/// </summary>
|
|
public TimeSpan ReceiveWindow { get; set; } = TimeSpan.FromSeconds(5);
|
|
|
|
public RestApiOptions Api1Options { get; private set; } = new RestApiOptions();
|
|
|
|
public RestApiOptions Api2Options { get; set; } = new RestApiOptions();
|
|
|
|
internal TestClientOptions Copy()
|
|
{
|
|
var options = Copy<TestClientOptions>();
|
|
options.Api1Options = Api1Options.Copy<RestApiOptions>();
|
|
options.Api2Options = Api2Options.Copy<RestApiOptions>();
|
|
return options;
|
|
}
|
|
}
|
|
}
|