Files
natsdotnet/tests/NATS.E2E.Tests/LeafNodeTests.cs
Joseph Doherty 338f44b07b test: add E2E gateway tests (cross-gateway messaging, interest-only)
- GatewayFixture: polls /gatewayz monitoring endpoint until both servers
  report num_gateways >= 1, replacing Task.Delay with proper synchronization
- GatewayTests: two tests covering cross-gateway delivery and interest-only
  no-delivery behaviour, using double PingAsync() instead of Task.Delay
- LeafNodeTests: replace Task.Delay(500) with sub.PingAsync()+pub.PingAsync()
  to properly fence subscription propagation without timing dependencies
- Fix GatewayManager.StartAsync to read remotes from RemoteGateways (config-
  parsed) in addition to the legacy Remotes list, enabling config-file-driven
  outbound gateway connections
2026-03-12 19:45:54 -04:00

72 lines
2.6 KiB
C#

using NATS.Client.Core;
using NATS.E2E.Tests.Infrastructure;
namespace NATS.E2E.Tests;
[Collection("E2E-LeafNode")]
public class LeafNodeTests(LeafNodeFixture fixture)
{
[Fact]
public async Task LeafNode_HubToLeaf_MessageDelivered()
{
await using var pub = fixture.CreateHubClient();
await using var sub = fixture.CreateLeafClient();
await pub.ConnectAsync();
await sub.ConnectAsync();
await using var subscription = await sub.SubscribeCoreAsync<string>("e2e.leaf.h2l");
// Ping both sides: subscriber's ping flushes the SUB to the leaf server,
// publisher's ping ensures the hub has received the propagated interest.
await sub.PingAsync();
await pub.PingAsync();
await pub.PublishAsync("e2e.leaf.h2l", "hub-to-leaf");
using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(10));
var msg = await subscription.Msgs.ReadAsync(cts.Token);
msg.Data.ShouldBe("hub-to-leaf");
}
[Fact]
public async Task LeafNode_LeafToHub_MessageDelivered()
{
await using var pub = fixture.CreateLeafClient();
await using var sub = fixture.CreateHubClient();
await pub.ConnectAsync();
await sub.ConnectAsync();
await using var subscription = await sub.SubscribeCoreAsync<string>("e2e.leaf.l2h");
// Ping both sides: subscriber's ping flushes the SUB to the hub server,
// publisher's ping ensures the leaf has received the propagated interest.
await sub.PingAsync();
await pub.PingAsync();
await pub.PublishAsync("e2e.leaf.l2h", "leaf-to-hub");
using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(10));
var msg = await subscription.Msgs.ReadAsync(cts.Token);
msg.Data.ShouldBe("leaf-to-hub");
}
[Fact]
public async Task LeafNode_OnlySubscribedSubjectsPropagate()
{
await using var pub = fixture.CreateHubClient();
await using var sub = fixture.CreateLeafClient();
await pub.ConnectAsync();
await sub.ConnectAsync();
await using var subscription = await sub.SubscribeCoreAsync<string>("e2e.leaf.specific");
// Ping both sides to ensure subscription interest has propagated before publishing.
await sub.PingAsync();
await pub.PingAsync();
await pub.PublishAsync("e2e.leaf.other", "wrong-subject");
await pub.PublishAsync("e2e.leaf.specific", "right-subject");
using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(10));
var msg = await subscription.Msgs.ReadAsync(cts.Token);
msg.Data.ShouldBe("right-subject");
}
}