cs-codex-dist-tests/LongTests/BasicTests/TestInfraTests.cs

31 lines
892 B
C#
Raw Normal View History

2023-04-17 05:56:08 +00:00
using DistTestCore;
2023-03-23 11:35:03 +00:00
using NUnit.Framework;
2023-04-12 11:53:55 +00:00
namespace TestsLong.BasicTests
2023-03-23 11:35:03 +00:00
{
public class TestInfraTests : DistTest
{
[Test, UseLongTimeouts]
public void TestInfraShouldHave1000AddressSpacesPerPod()
{
2023-04-25 10:52:11 +00:00
var group = SetupCodexNodes(1000, s => s.EnableMetrics()); // Increases use of port address space per node.
2023-03-23 11:35:03 +00:00
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.");
}
[Test, UseLongTimeouts]
public void TestInfraSupportsManyConcurrentPods()
{
for (var i = 0; i < 20; i++)
{
2023-04-25 10:52:11 +00:00
var n = SetupCodexNode();
2023-03-23 11:35:03 +00:00
Assert.That(!string.IsNullOrEmpty(n.GetDebugInfo().id));
}
}
}
}