cs-codex-dist-tests/Tests/CodexTests/BasicTests/TwoClientTests.cs

57 lines
1.5 KiB
C#
Raw Normal View History

2023-09-12 13:43:30 +00:00
using CodexPlugin;
using DistTestCore;
2023-04-14 12:53:39 +00:00
using NUnit.Framework;
2023-09-08 08:21:40 +00:00
using Utils;
2023-04-14 12:53:39 +00:00
namespace Tests.BasicTests
{
[TestFixture]
public class TwoClientTests : DistTest
{
[Test]
public void TwoClientTest()
2023-04-14 12:53:39 +00:00
{
2023-09-20 10:02:32 +00:00
var group = Ci.StartCodexNodes(2);
2023-04-14 12:53:39 +00:00
var primary = group[0];
var secondary = group[1];
PerformTwoClientTest(primary, secondary);
2023-04-14 12:53:39 +00:00
}
[Test]
public void TwoClientsTwoLocationsTest()
{
2023-09-25 06:47:19 +00:00
var locations = Ci.GetKnownLocations();
if (locations.NumberOfLocations < 2)
{
Assert.Inconclusive("Two-locations test requires 2 nodes to be available in the cluster.");
return;
}
var primary = Ci.StartCodexNode(s => s.At(locations.Get(0)));
var secondary = Ci.StartCodexNode(s => s.At(locations.Get(1)));
2023-04-14 12:53:39 +00:00
PerformTwoClientTest(primary, secondary);
}
2023-09-19 09:51:59 +00:00
private void PerformTwoClientTest(ICodexNode primary, ICodexNode secondary)
2023-05-04 06:25:48 +00:00
{
PerformTwoClientTest(primary, secondary, 1.MB());
}
2023-09-19 09:51:59 +00:00
private void PerformTwoClientTest(ICodexNode primary, ICodexNode secondary, ByteSize size)
2023-04-14 12:53:39 +00:00
{
primary.ConnectToPeer(secondary);
2023-05-04 06:25:48 +00:00
var testFile = GenerateTestFile(size);
2023-04-14 12:53:39 +00:00
var contentId = primary.UploadFile(testFile);
var downloadedFile = secondary.DownloadContent(contentId);
testFile.AssertIsEqual(downloadedFile);
}
}
}