cs-codex-dist-tests/DistTestCore/Helpers/PeerDownloadTestHelpers.cs

90 lines
3.3 KiB
C#
Raw Normal View History

using DistTestCore.Codex;
using FileUtils;
using Logging;
2023-09-08 08:14:52 +00:00
using Utils;
2023-08-24 08:59:11 +00:00
using static DistTestCore.Helpers.FullConnectivityHelper;
2023-06-06 12:36:37 +00:00
namespace DistTestCore.Helpers
{
2023-07-18 14:07:52 +00:00
public class PeerDownloadTestHelpers : IFullConnectivityImplementation
{
2023-07-18 14:07:52 +00:00
private readonly FullConnectivityHelper helper;
private readonly BaseLog log;
2023-08-24 08:59:11 +00:00
private readonly FileManager fileManager;
2023-07-18 14:07:52 +00:00
private ByteSize testFileSize;
2023-08-24 08:59:11 +00:00
public PeerDownloadTestHelpers(BaseLog log, FileManager fileManager)
{
2023-08-24 08:59:11 +00:00
helper = new FullConnectivityHelper(log, this);
2023-07-18 14:07:52 +00:00
testFileSize = 1.MB();
this.log = log;
2023-08-24 08:59:11 +00:00
this.fileManager = fileManager;
}
public void AssertFullDownloadInterconnectivity(IEnumerable<IOnlineCodexNode> nodes, ByteSize testFileSize)
{
AssertFullDownloadInterconnectivity(nodes.Select(n => ((OnlineCodexNode)n).CodexAccess), testFileSize);
}
public void AssertFullDownloadInterconnectivity(IEnumerable<CodexAccess> nodes, ByteSize testFileSize)
{
2023-07-18 14:07:52 +00:00
this.testFileSize = testFileSize;
helper.AssertFullyConnected(nodes);
2023-06-06 12:36:37 +00:00
}
2023-07-18 14:07:52 +00:00
public string Description()
2023-06-06 12:36:37 +00:00
{
2023-07-18 14:07:52 +00:00
return "Download Connectivity";
}
2023-06-06 12:36:37 +00:00
2023-07-18 14:07:52 +00:00
public string ValidateEntry(Entry entry, Entry[] allEntries)
{
return string.Empty;
}
2023-07-18 14:07:52 +00:00
public PeerConnectionState Check(Entry from, Entry to)
{
return fileManager.ScopedFiles(() => CheckConnectivity(from, to));
}
private PeerConnectionState CheckConnectivity(Entry from, Entry to)
{
2023-07-18 14:07:52 +00:00
var expectedFile = GenerateTestFile(from.Node, to.Node);
using var uploadStream = File.OpenRead(expectedFile.Filename);
var contentId = Stopwatch.Measure(log, "Upload", () => from.Node.UploadFile(uploadStream));
2023-07-18 14:07:52 +00:00
try
{
var downloadedFile = Stopwatch.Measure(log, "Download", () => DownloadFile(to.Node, contentId, expectedFile.Label + "_downloaded"));
expectedFile.AssertIsEqual(downloadedFile);
2023-07-18 14:07:52 +00:00
return PeerConnectionState.Connection;
}
2023-07-18 14:07:52 +00:00
catch
{
// Should an exception occur during the download or file-content assertion,
// We consider that as no-connection for the purpose of this test.
return PeerConnectionState.NoConnection;
}
// Should an exception occur during upload, then this try is inconclusive and we try again next loop.
}
private TestFile DownloadFile(CodexAccess node, string contentId, string label)
{
var downloadedFile = fileManager.CreateEmptyTestFile(label);
using var downloadStream = File.OpenWrite(downloadedFile.Filename);
using var stream = node.DownloadFile(contentId);
stream.CopyTo(downloadStream);
return downloadedFile;
}
private TestFile GenerateTestFile(CodexAccess uploader, CodexAccess downloader)
{
var up = uploader.GetName().Replace("<", "").Replace(">", "");
var down = downloader.GetName().Replace("<", "").Replace(">", "");
2023-07-18 14:07:52 +00:00
var label = $"~from:{up}-to:{down}~";
2023-08-24 08:59:11 +00:00
return fileManager.GenerateTestFile(testFileSize, label);
}
}
}