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
|
## 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)
|
### NATS.Server.Core.Tests (6 skipped)
|
||||||
|
|
||||||
| Test | Reason |
|
| Test | Reason |
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ public class MqttTests(MqttServerFixture fixture)
|
|||||||
|
|
||||||
// ---- tests ----
|
// ---- tests ----
|
||||||
|
|
||||||
[Fact]
|
[Fact(Skip = "Superseded by MqttE2ETests — text-line protocol incompatible with binary MQTT 3.1.1 server")]
|
||||||
public async Task Mqtt_PubSub_SameTopicDelivered()
|
public async Task Mqtt_PubSub_SameTopicDelivered()
|
||||||
{
|
{
|
||||||
using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(15));
|
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");
|
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()
|
public async Task Mqtt_DifferentTopic_NotDelivered()
|
||||||
{
|
{
|
||||||
using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(15));
|
using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(15));
|
||||||
@@ -118,7 +118,7 @@ public class MqttTests(MqttServerFixture fixture)
|
|||||||
unexpected.ShouldBeNull();
|
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()
|
public async Task Mqtt_Qos1_PubAckReceived_AndDelivered()
|
||||||
{
|
{
|
||||||
using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(15));
|
using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(15));
|
||||||
|
|||||||
Reference in New Issue
Block a user