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

25 lines
553 B
C#
Raw Normal View History

using NUnit.Framework;
2023-09-12 13:43:30 +00:00
using Utils;
namespace CodexTests.BasicTests
2023-09-12 13:43:30 +00:00
{
[TestFixture]
public class ThreeClientTest : AutoBootstrapDistTest
{
[Test]
public void ThreeClient()
{
2024-05-09 07:32:48 +00:00
var primary = StartCodex();
var secondary = StartCodex();
2023-09-12 13:43:30 +00:00
var testFile = GenerateTestFile(10.MB());
var contentId = primary.UploadFile(testFile);
var downloadedFile = secondary.DownloadContent(contentId);
testFile.AssertIsEqual(downloadedFile);
}
}
}