2
0
mirror of synced 2025-01-20 21:39:10 +00:00

44 lines
924 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
}
[Test]
public void RestartTest()
{
2024-05-09 09:32:48 +02:00
var primary = StartCodex();
2023-09-12 15:43:30 +02:00
primary.Stop(waitTillStopped: true);
2023-09-12 15:43:30 +02:00
2024-05-09 09:32:48 +02:00
primary = StartCodex();
2023-09-12 15:43:30 +02:00
PerformOneClientTest(primary);
}
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);
}
}
}