2
0
mirror of synced 2025-01-13 01:54:07 +00:00
cs-codex-dist-tests/Tests/BasicTests/ThreeClientTest.cs
2023-09-08 10:21:40 +02:00

26 lines
576 B
C#

using DistTestCore;
using NUnit.Framework;
using Utils;
namespace Tests.BasicTests
{
[TestFixture]
public class ThreeClientTest : AutoBootstrapDistTest
{
[Test]
public void ThreeClient()
{
var primary = SetupCodexNode();
var secondary = SetupCodexNode();
var testFile = GenerateTestFile(10.MB());
var contentId = primary.UploadFile(testFile);
var downloadedFile = secondary.DownloadContent(contentId);
testFile.AssertIsEqual(downloadedFile);
}
}
}