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
|
|
|
|
|
2023-10-09 14:59:52 +00:00
|
|
|
|
namespace CodexTests.BasicTests
|
2023-04-14 12:53:39 +00:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
public class TwoClientTests : DistTest
|
|
|
|
|
{
|
2023-05-05 06:35:13 +00:00
|
|
|
|
[Test]
|
2023-08-28 09:16:58 +00:00
|
|
|
|
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];
|
|
|
|
|
|
2023-05-05 06:35:13 +00:00
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|