2023-05-10 07:09:31 +00:00
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
|
|
|
|
|
namespace DistTestCore
|
2023-05-01 09:14:42 +00:00
|
|
|
|
{
|
|
|
|
|
public class AutoBootstrapDistTest : DistTest
|
|
|
|
|
{
|
2023-09-11 09:59:33 +00:00
|
|
|
|
//public override IOnlineCodexNode SetupCodexBootstrapNode(Action<ICodexSetup> setup)
|
|
|
|
|
//{
|
|
|
|
|
// throw new Exception("AutoBootstrapDistTest creates and attaches a single bootstrap node for you. " +
|
|
|
|
|
// "If you want to control the bootstrap node from your test, please use DistTest instead.");
|
|
|
|
|
//}
|
2023-05-01 09:14:42 +00:00
|
|
|
|
|
2023-09-11 09:59:33 +00:00
|
|
|
|
//public override ICodexNodeGroup SetupCodexNodes(int numberOfNodes, Action<ICodexSetup> setup)
|
|
|
|
|
//{
|
|
|
|
|
// var codexSetup = CreateCodexSetup(numberOfNodes);
|
|
|
|
|
// setup(codexSetup);
|
|
|
|
|
// codexSetup.WithBootstrapNode(BootstrapNode);
|
|
|
|
|
// return BringOnline(codexSetup);
|
|
|
|
|
//}
|
2023-05-01 09:14:42 +00:00
|
|
|
|
|
2023-09-11 09:59:33 +00:00
|
|
|
|
//[SetUp]
|
|
|
|
|
//public void SetUpBootstrapNode()
|
|
|
|
|
//{
|
|
|
|
|
// var setup = CreateCodexSetup(1).WithName("BOOTSTRAP");
|
|
|
|
|
// BootstrapNode = BringOnline(setup)[0];
|
|
|
|
|
//}
|
2023-05-10 06:53:57 +00:00
|
|
|
|
|
2023-09-11 09:59:33 +00:00
|
|
|
|
//protected IOnlineCodexNode BootstrapNode { get; private set; } = null!;
|
2023-05-01 09:14:42 +00:00
|
|
|
|
}
|
|
|
|
|
}
|