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

41 lines
1.0 KiB
C#
Raw Normal View History

2023-04-26 12:59:26 +00:00
using DistTestCore;
using NUnit.Framework;
2023-09-08 08:21:40 +00:00
using Utils;
2023-06-01 10:27:54 +00:00
namespace TestsLong.BasicTests
2023-04-26 12:59:26 +00:00
{
[TestFixture]
public class DownloadTests : DistTest
{
[TestCase(3, 500)]
[TestCase(5, 100)]
2023-04-28 05:22:17 +00:00
[TestCase(10, 256)]
[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?>>();
2023-06-01 10:27:54 +00:00
2023-04-26 12:59:26 +00:00
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);
}
}
}
}