2023-05-10 09:09:31 +02:00
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
|
|
|
|
|
namespace DistTestCore
|
2023-05-01 11:14:42 +02:00
|
|
|
|
{
|
|
|
|
|
public class AutoBootstrapDistTest : DistTest
|
|
|
|
|
{
|
|
|
|
|
public override IOnlineCodexNode SetupCodexBootstrapNode(Action<ICodexSetup> setup)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("AutoBootstrapDistTest creates and attaches a single boostrap 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 13:34:12 +02:00
|
|
|
|
var codexSetup = CreateCodexSetup(numberOfNodes);
|
2023-05-01 11:14:42 +02:00
|
|
|
|
setup(codexSetup);
|
2023-05-10 09:09:31 +02:00
|
|
|
|
codexSetup.WithBootstrapNode(BootstrapNode);
|
2023-05-01 11:14:42 +02:00
|
|
|
|
return BringOnline(codexSetup);
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-10 09:09:31 +02:00
|
|
|
|
[SetUp]
|
|
|
|
|
public void SetUpBootstrapNode()
|
2023-05-10 08:53:57 +02:00
|
|
|
|
{
|
2023-05-31 13:34:12 +02:00
|
|
|
|
BootstrapNode = BringOnline(CreateCodexSetup(1))[0];
|
2023-05-10 08:53:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
2023-05-10 09:09:31 +02:00
|
|
|
|
protected IOnlineCodexNode BootstrapNode { get; private set; } = null!;
|
2023-05-01 11:14:42 +02:00
|
|
|
|
}
|
|
|
|
|
}
|