wires up testfile size in download helper
This commit is contained in:
parent
8c85cd22bb
commit
816cd1728b
|
@ -24,17 +24,17 @@
|
||||||
|
|
||||||
test.ScopedTestFiles(() =>
|
test.ScopedTestFiles(() =>
|
||||||
{
|
{
|
||||||
PerformTest(uploader, downloaders);
|
PerformTest(uploader, downloaders, testFileSize);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
test.Debug($"Success! Full download interconnectivity for nodes: {string.Join(",", nodes.Select(n => n.GetName()))}");
|
test.Debug($"Success! Full download interconnectivity for nodes: {string.Join(",", nodes.Select(n => n.GetName()))}");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void PerformTest(IOnlineCodexNode uploader, IOnlineCodexNode[] downloaders)
|
private void PerformTest(IOnlineCodexNode uploader, IOnlineCodexNode[] downloaders, ByteSize testFileSize)
|
||||||
{
|
{
|
||||||
// 1 test file per downloader.
|
// 1 test file per downloader.
|
||||||
var files = downloaders.Select(d => test.GenerateTestFile(1.MB())).ToArray();
|
var files = downloaders.Select(d => test.GenerateTestFile(testFileSize)).ToArray();
|
||||||
|
|
||||||
// Upload all the test files to the uploader.
|
// Upload all the test files to the uploader.
|
||||||
var contentIds = files.Select(uploader.UploadFile).ToArray();
|
var contentIds = files.Select(uploader.UploadFile).ToArray();
|
||||||
|
|
Loading…
Reference in New Issue