cs-codex-dist-tests/DistTestCore/AutoBootstrapDistTest.cs

31 lines
1.0 KiB
C#
Raw Normal View History

2023-05-10 07:09:31 +00:00
using NUnit.Framework;
namespace DistTestCore
{
public class AutoBootstrapDistTest : DistTest
{
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.");
}
public override ICodexNodeGroup SetupCodexNodes(int numberOfNodes, Action<ICodexSetup> setup)
{
2023-05-31 11:34:12 +00:00
var codexSetup = CreateCodexSetup(numberOfNodes);
setup(codexSetup);
2023-05-10 07:09:31 +00:00
codexSetup.WithBootstrapNode(BootstrapNode);
return BringOnline(codexSetup);
}
2023-05-10 07:09:31 +00:00
[SetUp]
public void SetUpBootstrapNode()
2023-05-10 06:53:57 +00:00
{
var setup = CreateCodexSetup(1).WithName("BOOTSTRAP");
BootstrapNode = BringOnline(setup)[0];
2023-05-10 06:53:57 +00:00
}
2023-05-10 07:09:31 +00:00
protected IOnlineCodexNode BootstrapNode { get; private set; } = null!;
}
}