feat: complete remaining jetstream parity implementation plan
This commit is contained in:
16
tests/NATS.Server.Tests/JetStreamStreamListApiTests.cs
Normal file
16
tests/NATS.Server.Tests/JetStreamStreamListApiTests.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace NATS.Server.Tests;
|
||||
|
||||
public class JetStreamStreamListApiTests
|
||||
{
|
||||
[Fact]
|
||||
public async Task Stream_names_and_list_return_created_streams()
|
||||
{
|
||||
await using var fx = await JetStreamApiFixture.StartWithStreamAsync("ORDERS", "orders.*");
|
||||
_ = await fx.RequestLocalAsync("$JS.API.STREAM.CREATE.INVOICES", "{\"subjects\":[\"invoices.*\"]}");
|
||||
|
||||
var names = await fx.RequestLocalAsync("$JS.API.STREAM.NAMES", "{}");
|
||||
names.StreamNames.ShouldNotBeNull();
|
||||
names.StreamNames.ShouldContain("ORDERS");
|
||||
names.StreamNames.ShouldContain("INVOICES");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user