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

54 lines
1.4 KiB
C#
Raw Normal View History

2023-04-14 12:53:39 +00:00
using DistTestCore;
using KubernetesWorkflow;
using NUnit.Framework;
namespace Tests.BasicTests
{
[TestFixture]
public class TwoClientTests : DistTest
{
[Test]
public void TwoClientsOnePodTest()
{
2023-04-25 10:52:11 +00:00
var group = SetupCodexNodes(2);
2023-04-14 12:53:39 +00:00
var primary = group[0];
var secondary = group[1];
PerformTwoClientTest(primary, secondary);
}
[Test]
public void TwoClientsTwoPodsTest()
{
2023-04-25 10:52:11 +00:00
var primary = SetupCodexNode();
var secondary = SetupCodexNode();
2023-04-14 12:53:39 +00:00
PerformTwoClientTest(primary, secondary);
}
[Test]
[Ignore("Requires Location map to be configured for k8s cluster.")]
public void TwoClientsTwoLocationsTest()
{
2023-04-25 10:52:11 +00:00
var primary = SetupCodexNode(s => s.At(Location.BensLaptop));
var secondary = SetupCodexNode(s => s.At(Location.BensOldGamingMachine));
2023-04-14 12:53:39 +00:00
PerformTwoClientTest(primary, secondary);
}
private void PerformTwoClientTest(IOnlineCodexNode primary, IOnlineCodexNode secondary)
{
primary.ConnectToPeer(secondary);
var testFile = GenerateTestFile(1.MB());
var contentId = primary.UploadFile(testFile);
var downloadedFile = secondary.DownloadContent(contentId);
testFile.AssertIsEqual(downloadedFile);
}
}
}