Adds test for 1000 codex nodes in one pod
This commit is contained in:
parent
79a513814f
commit
54f008a5e3
|
@ -22,5 +22,16 @@ namespace LongTests.BasicTests
|
|||
|
||||
testFile.AssertIsEqual(downloadedFile);
|
||||
}
|
||||
|
||||
[Test, UseLongTimeouts]
|
||||
public void TestEnvironmentAddressSpaceTest()
|
||||
{
|
||||
var group = SetupCodexNodes(1000).BringOnline();
|
||||
|
||||
var nodeIds = group.Select(n => n.GetDebugInfo().id).ToArray();
|
||||
|
||||
Assert.That(nodeIds.Length, Is.EqualTo(nodeIds.Distinct().Count()),
|
||||
"Not all created nodes provided a unique id.");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue