feat: add jetstream consumer api lifecycle

This commit is contained in:
Joseph Doherty
2026-02-23 06:06:02 -05:00
parent 6825839191
commit 40b940b1fd
6 changed files with 175 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
namespace NATS.Server.Tests;
public class JetStreamConsumerApiTests
{
[Fact]
public async Task Create_consumer_and_fetch_info_roundtrip()
{
await using var fixture = await JetStreamApiFixture.StartWithStreamAsync("ORDERS", "orders.*");
var create = await fixture.CreateConsumerAsync("ORDERS", "DUR", "orders.created");
create.Error.ShouldBeNull();
var info = await fixture.GetConsumerInfoAsync("ORDERS", "DUR");
info.Config.DurableName.ShouldBe("DUR");
}
}