2023-09-19 14:22:07 +00:00
|
|
|
|
using CodexContractsPlugin;
|
2023-09-28 10:22:35 +00:00
|
|
|
|
using CodexNetDeployer;
|
2023-09-19 14:22:07 +00:00
|
|
|
|
using CodexPlugin;
|
2023-11-12 09:36:48 +00:00
|
|
|
|
using CodexTests.Helpers;
|
2023-09-20 11:56:01 +00:00
|
|
|
|
using Core;
|
2023-09-13 12:24:43 +00:00
|
|
|
|
using DistTestCore;
|
|
|
|
|
using DistTestCore.Helpers;
|
2023-09-28 10:22:35 +00:00
|
|
|
|
using DistTestCore.Logs;
|
2023-09-19 14:22:07 +00:00
|
|
|
|
using NUnit.Framework.Constraints;
|
2023-09-13 12:24:43 +00:00
|
|
|
|
|
2023-10-09 14:59:52 +00:00
|
|
|
|
namespace CodexTests
|
2023-09-13 12:24:43 +00:00
|
|
|
|
{
|
|
|
|
|
public class CodexDistTest : DistTest
|
|
|
|
|
{
|
2023-12-06 09:50:02 +00:00
|
|
|
|
private readonly Dictionary<TestLifecycle, List<ICodexNode>> onlineCodexNodes = new Dictionary<TestLifecycle, List<ICodexNode>>();
|
2023-09-13 12:24:43 +00:00
|
|
|
|
|
2023-09-20 11:56:01 +00:00
|
|
|
|
public CodexDistTest()
|
|
|
|
|
{
|
|
|
|
|
ProjectPlugin.Load<CodexPlugin.CodexPlugin>();
|
|
|
|
|
ProjectPlugin.Load<CodexContractsPlugin.CodexContractsPlugin>();
|
|
|
|
|
ProjectPlugin.Load<GethPlugin.GethPlugin>();
|
|
|
|
|
ProjectPlugin.Load<MetricsPlugin.MetricsPlugin>();
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-28 10:22:35 +00:00
|
|
|
|
protected override void Initialize(FixtureLog fixtureLog)
|
|
|
|
|
{
|
|
|
|
|
var localBuilder = new LocalCodexBuilder(fixtureLog);
|
|
|
|
|
localBuilder.Intialize();
|
|
|
|
|
localBuilder.Build();
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-06 09:50:02 +00:00
|
|
|
|
protected override void LifecycleStart(TestLifecycle lifecycle)
|
|
|
|
|
{
|
|
|
|
|
onlineCodexNodes.Add(lifecycle, new List<ICodexNode>());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LifecycleStop(TestLifecycle lifecycle)
|
|
|
|
|
{
|
|
|
|
|
onlineCodexNodes.Remove(lifecycle);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-19 09:51:59 +00:00
|
|
|
|
public ICodexNode AddCodex()
|
2023-09-13 12:24:43 +00:00
|
|
|
|
{
|
|
|
|
|
return AddCodex(s => { });
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-19 09:51:59 +00:00
|
|
|
|
public ICodexNode AddCodex(Action<ICodexSetup> setup)
|
2023-09-13 12:24:43 +00:00
|
|
|
|
{
|
|
|
|
|
return AddCodex(1, setup)[0];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ICodexNodeGroup AddCodex(int numberOfNodes)
|
|
|
|
|
{
|
|
|
|
|
return AddCodex(numberOfNodes, s => { });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ICodexNodeGroup AddCodex(int numberOfNodes, Action<ICodexSetup> setup)
|
|
|
|
|
{
|
2023-09-20 10:02:32 +00:00
|
|
|
|
var group = Ci.StartCodexNodes(numberOfNodes, s =>
|
2023-09-13 12:24:43 +00:00
|
|
|
|
{
|
|
|
|
|
setup(s);
|
|
|
|
|
OnCodexSetup(s);
|
|
|
|
|
});
|
2023-12-06 09:50:02 +00:00
|
|
|
|
onlineCodexNodes[Get()].AddRange(group);
|
2023-09-13 12:24:43 +00:00
|
|
|
|
return group;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public PeerConnectionTestHelpers CreatePeerConnectionTestHelpers()
|
|
|
|
|
{
|
|
|
|
|
return new PeerConnectionTestHelpers(GetTestLog());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public PeerDownloadTestHelpers CreatePeerDownloadTestHelpers()
|
|
|
|
|
{
|
|
|
|
|
return new PeerDownloadTestHelpers(GetTestLog(), Get().GetFileManager());
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-19 09:51:59 +00:00
|
|
|
|
public IEnumerable<ICodexNode> GetAllOnlineCodexNodes()
|
2023-09-13 12:24:43 +00:00
|
|
|
|
{
|
2023-12-06 09:50:02 +00:00
|
|
|
|
return onlineCodexNodes[Get()];
|
2023-09-13 12:24:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-30 12:30:14 +00:00
|
|
|
|
public void AssertBalance(ICodexContracts contracts, ICodexNode codexNode, Constraint constraint, string msg = "")
|
2023-09-19 14:22:07 +00:00
|
|
|
|
{
|
2023-10-30 12:30:14 +00:00
|
|
|
|
AssertHelpers.RetryAssert(constraint, () => contracts.GetTestTokenBalance(codexNode), nameof(AssertBalance) + msg);
|
2023-09-19 14:22:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-09-13 12:24:43 +00:00
|
|
|
|
protected virtual void OnCodexSetup(ICodexSetup setup)
|
|
|
|
|
{
|
|
|
|
|
}
|
2023-12-06 09:50:02 +00:00
|
|
|
|
|
|
|
|
|
protected override void CollectStatusLogData(TestLifecycle lifecycle, Dictionary<string, string> data)
|
|
|
|
|
{
|
|
|
|
|
var nodes = onlineCodexNodes[lifecycle];
|
|
|
|
|
var upload = nodes.Select(n => n.TransferSpeeds.GetUploadSpeed()).ToList()!.OptionalAverage();
|
|
|
|
|
var download = nodes.Select(n => n.TransferSpeeds.GetDownloadSpeed()).ToList()!.OptionalAverage();
|
|
|
|
|
if (upload != null) data.Add("avgupload", upload.ToString());
|
|
|
|
|
if (download != null) data.Add("avgdownload", download.ToString());
|
|
|
|
|
}
|
2023-09-13 12:24:43 +00:00
|
|
|
|
}
|
|
|
|
|
}
|