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

39 lines
1.0 KiB
C#
Raw Normal View History

2023-04-26 12:59:26 +00:00
using DistTestCore;
using NUnit.Framework;
2023-04-26 12:59:26 +00:00
namespace Tests.ParallelTests
{
[TestFixture]
public class DownloadTests : DistTest
{
[TestCase(3, 50)]
[TestCase(5, 750)]
[TestCase(10, 25)]
[UseLongTimeouts]
public void ParallelDownload(int numberOfNodes, int filesizeMb)
2023-04-26 12:59:26 +00:00
{
2023-04-26 13:32:27 +00:00
var group = SetupCodexNodes(numberOfNodes);
var host = SetupCodexNode();
2023-04-26 12:59:26 +00:00
foreach (var node in group)
{
host.ConnectToPeer(node);
}
var testFile = GenerateTestFile(filesizeMb.MB());
2023-04-26 12:59:26 +00:00
var contentId = host.UploadFile(testFile);
var list = new List<Task<TestFile?>>();
foreach (var node in group)
{
list.Add(Task.Run(() => { return node.DownloadContent(contentId); }));
}
Task.WaitAll(list.ToArray());
foreach (var task in list)
{
testFile.AssertIsEqual(task.Result);
}
}
}
}