2
0
mirror of synced 2025-02-14 17:36:23 +00:00

32 lines
683 B
C#
Raw Normal View History

2023-09-12 15:43:30 +02:00
using CodexPlugin;
using NUnit.Framework;
using Utils;
namespace CodexTests.BasicTests
2023-09-12 15:43:30 +02:00
{
[TestFixture]
public class OneClientTests : CodexDistTest
2023-09-12 15:43:30 +02:00
{
[Test]
public void OneClientTest()
{
2024-05-09 09:32:48 +02:00
var primary = StartCodex();
2023-09-12 15:43:30 +02:00
PerformOneClientTest(primary);
2024-06-06 10:31:31 +02:00
LogNodeStatus(primary);
2023-09-12 15:43:30 +02:00
}
2023-09-19 11:51:59 +02:00
private void PerformOneClientTest(ICodexNode primary)
2023-09-12 15:43:30 +02:00
{
var testFile = GenerateTestFile(1.MB());
var contentId = primary.UploadFile(testFile);
var downloadedFile = primary.DownloadContent(contentId);
testFile.AssertIsEqual(downloadedFile);
}
}
}