test: skip superseded MQTT e2e cases

This commit is contained in:
Joseph Doherty
2026-03-13 11:50:01 -04:00
parent 497aa227af
commit 699449da6a
2 changed files with 11 additions and 3 deletions

View File

@@ -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 |

View File

@@ -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));