test: skip superseded MQTT e2e cases
This commit is contained in:
8
tests.md
8
tests.md
@@ -6,6 +6,14 @@ No known failing tests.
|
||||
|
||||
## Skipped Tests
|
||||
|
||||
### NATS.E2E.Tests (3 skipped)
|
||||
|
||||
| Test | Reason |
|
||||
|------|--------|
|
||||
| `MqttTests.Mqtt_PubSub_SameTopicDelivered` | Superseded by `MqttE2ETests` — text-line protocol incompatible with binary MQTT 3.1.1 server |
|
||||
| `MqttTests.Mqtt_DifferentTopic_NotDelivered` | Superseded by `MqttE2ETests` — text-line protocol incompatible with binary MQTT 3.1.1 server |
|
||||
| `MqttTests.Mqtt_Qos1_PubAckReceived_AndDelivered` | Superseded by `MqttE2ETests` — text-line protocol incompatible with binary MQTT 3.1.1 server |
|
||||
|
||||
### NATS.Server.Core.Tests (6 skipped)
|
||||
|
||||
| Test | Reason |
|
||||
|
||||
@@ -61,7 +61,7 @@ public class MqttTests(MqttServerFixture fixture)
|
||||
|
||||
// ---- tests ----
|
||||
|
||||
[Fact]
|
||||
[Fact(Skip = "Superseded by MqttE2ETests — text-line protocol incompatible with binary MQTT 3.1.1 server")]
|
||||
public async Task Mqtt_PubSub_SameTopicDelivered()
|
||||
{
|
||||
using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(15));
|
||||
@@ -94,7 +94,7 @@ public class MqttTests(MqttServerFixture fixture)
|
||||
msg.ShouldBe("MSG e2e/mqtt/test1 hello-world");
|
||||
}
|
||||
|
||||
[Fact]
|
||||
[Fact(Skip = "Superseded by MqttE2ETests — text-line protocol incompatible with binary MQTT 3.1.1 server")]
|
||||
public async Task Mqtt_DifferentTopic_NotDelivered()
|
||||
{
|
||||
using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(15));
|
||||
@@ -118,7 +118,7 @@ public class MqttTests(MqttServerFixture fixture)
|
||||
unexpected.ShouldBeNull();
|
||||
}
|
||||
|
||||
[Fact]
|
||||
[Fact(Skip = "Superseded by MqttE2ETests — text-line protocol incompatible with binary MQTT 3.1.1 server")]
|
||||
public async Task Mqtt_Qos1_PubAckReceived_AndDelivered()
|
||||
{
|
||||
using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(15));
|
||||
|
||||
Reference in New Issue
Block a user