mirror of
https://github.com/logos-messaging/logos-messaging-interop-tests.git
synced 2026-01-11 02:13:07 +00:00
small adjustments
This commit is contained in:
parent
62fe136cf9
commit
ffbe8d8fa1
@ -68,7 +68,10 @@ INVALID_CONTENT_TOPICS = [
|
|||||||
VALID_PUBSUB_TOPICS = [
|
VALID_PUBSUB_TOPICS = [
|
||||||
DEFAULT_PUBSUB_TOPIC,
|
DEFAULT_PUBSUB_TOPIC,
|
||||||
"/waku/2/rs/0/1",
|
"/waku/2/rs/0/1",
|
||||||
"/waku/2/rs/0/50",
|
"/waku/2/rs/0/0",
|
||||||
|
"/waku/2/rs/0/9",
|
||||||
|
"/waku/2/rs/0/25",
|
||||||
|
"/waku/2/rs/0/1000",
|
||||||
]
|
]
|
||||||
|
|
||||||
INVALID_PUBSUB_TOPICS = ["/test/2/rs/0/1", "/waku/3/rs/0/1", "/waku/2/test/0/1", "/waku/2/rs/0/b", "/waku/2/rs/0"]
|
INVALID_PUBSUB_TOPICS = ["/test/2/rs/0/1", "/waku/3/rs/0/1", "/waku/2/test/0/1", "/waku/2/rs/0/b", "/waku/2/rs/0"]
|
||||||
|
|||||||
@ -57,7 +57,7 @@ class TestRelayPublish(StepsRelay):
|
|||||||
self.check_published_message_reaches_relay_peer(message, message_propagation_delay=2)
|
self.check_published_message_reaches_relay_peer(message, message_propagation_delay=2)
|
||||||
raise AssertionError("Message with payload > 1MB was received")
|
raise AssertionError("Message with payload > 1MB was received")
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
assert "couldn't find any messages" in str(ex)
|
assert "couldn't find any messages" in str(ex) or "Bad Request" in str(ex)
|
||||||
|
|
||||||
def test_publish_with_valid_content_topics(self):
|
def test_publish_with_valid_content_topics(self):
|
||||||
failed_content_topics = []
|
failed_content_topics = []
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user