feat: implement jetstream pull consumer fetch

This commit is contained in:
Joseph Doherty
2026-02-23 06:07:02 -05:00
parent 40b940b1fd
commit 9a0de19c2d
4 changed files with 76 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
namespace NATS.Server.Tests;
public class JetStreamPullConsumerTests
{
[Fact]
public async Task Pull_consumer_fetch_returns_available_messages()
{
await using var fixture = await JetStreamApiFixture.StartWithPullConsumerAsync();
await fixture.PublishAndGetAckAsync("orders.created", "1");
var batch = await fixture.FetchAsync("ORDERS", "PULL", batch: 1);
batch.Messages.Count.ShouldBe(1);
}
}