WIP merge with main

This commit is contained in:
Corbo12 2023-04-20 15:58:47 +02:00
parent 4492b4f0d2
commit b70e8033f3
1 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
using CodexDistTestCore; using DistTestCore;
using CodexDistTestCore.Config; using KubernetesWorkflow;
using NUnit.Framework; using NUnit.Framework;
namespace Tests.ParallelTests namespace Tests.ParallelTests
{ {
@ -21,7 +21,7 @@ namespace Tests.ParallelTests
{ {
ParallelDownload(10, 16.MB()); ParallelDownload(10, 16.MB());
} }
public void download(ContentId contentId, CodexDistTestCore.IOnlineCodexNode node, TestFile testFile) public void download(ContentId contentId, IOnlineCodexNode node, TestFile testFile)
{ {
var downloadedFile = node.DownloadContent(contentId); var downloadedFile = node.DownloadContent(contentId);
testFile.AssertIsEqual(downloadedFile); testFile.AssertIsEqual(downloadedFile);
@ -96,12 +96,12 @@ namespace Tests.ParallelTests
// Task.WaitAll(); // Task.WaitAll();
} }
void download(ContentId contentId, CodexDistTestCore.IOnlineCodexNode node, TestFile testFile) void download(ContentId contentId, IOnlineCodexNode node, TestFile testFile)
{ {
var downloadedFile = node.DownloadContent(contentId); var downloadedFile = node.DownloadContent(contentId);
testFile.AssertIsEqual(downloadedFile); testFile.AssertIsEqual(downloadedFile);
} }
void upload(CodexDistTestCore.IOnlineCodexNode host, TestFile testfile, List<ContentId> contentIds, int pos) void upload(IOnlineCodexNode host, TestFile testfile, List<ContentId> contentIds, int pos)
{ {
contentIds[pos] = host.UploadFile(testfile); contentIds[pos] = host.UploadFile(testfile);
} }