2
0
mirror of synced 2025-01-13 10:04:29 +00:00

31 lines
892 B
C#
Raw Normal View History

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