mirror of
https://github.com/logos-messaging/logos-messaging-interop-tests.git
synced 2026-07-28 19:23:10 +00:00
* remove some RC04 variants /add RC05 * fix RC05 * tune the timeout * Adding RC06 * Fix RC05 * Adding additional RC06 variant
165 lines
8.2 KiB
Python
165 lines
8.2 KiB
Python
import pytest
|
|
from src.node.wrappers_manager import WrapperManager
|
|
from src.node.wrapper_helpers import EventCollector, create_message_bindings
|
|
from src.libs.common import delay
|
|
|
|
CHANNEL_ID = "rc01-channel"
|
|
CONTENT_TOPIC = "/test/1/channel/proto"
|
|
SENDER_ID = "rc01-sender"
|
|
|
|
UNKNOWN_CHANNEL_ID = "rc02-unknown-channel"
|
|
|
|
RC03_CHANNEL_ID = "rc03-channel"
|
|
|
|
RC04_CHANNEL_ID = "rc04-channel"
|
|
RC04_CLOSED_CHANNEL_ID = "rc04-closed-channel"
|
|
|
|
# Give the reliable channel manager a moment to settle a freshly-created
|
|
# channel before we act on it.
|
|
CHANNEL_SETTLE_S = 1
|
|
|
|
|
|
@pytest.mark.smoke
|
|
class TestChannelLifecycle:
|
|
def test_rc01_create_channel_duplicate_rejected(self, node_config):
|
|
"""RC01: create a channel; a duplicate create with the same id is rejected.
|
|
|
|
The reliable channel manager is mounted automatically for a Core-mode
|
|
node, so no store / --reliability is needed. No events are expected.
|
|
"""
|
|
node_config.update({"mode": "Core"})
|
|
|
|
collector = EventCollector()
|
|
create_node_result = WrapperManager.create_and_start(config=node_config, event_cb=collector.event_callback)
|
|
assert create_node_result.is_ok(), f"Failed to create and start node: {create_node_result.err()}"
|
|
node = create_node_result.ok_value
|
|
|
|
try:
|
|
create_result = node.channel_create(CHANNEL_ID, CONTENT_TOPIC, SENDER_ID)
|
|
assert create_result.is_ok(), f"channel_create failed: {create_result.err()}"
|
|
assert create_result.ok_value == CHANNEL_ID, f"channel_create returned unexpected id: {create_result.ok_value!r}"
|
|
|
|
duplicate_result = node.channel_create(CHANNEL_ID, CONTENT_TOPIC, SENDER_ID)
|
|
assert duplicate_result.is_err(), f"duplicate channel_create must fail, got Ok({duplicate_result.ok_value!r})"
|
|
assert f"channel already exists: {CHANNEL_ID}" in duplicate_result.err(), f"unexpected error message: {duplicate_result.err()!r}"
|
|
|
|
assert collector.events == [], f"expected no events, got: {collector.events}"
|
|
finally:
|
|
node.stop_and_destroy()
|
|
|
|
def test_rc02_send_on_unknown_channel_rejected(self, node_config):
|
|
"""RC02: channel_send() to an id that was never created is rejected.
|
|
|
|
The send must Err with "unknown channel: <id>" and emit no events.
|
|
"""
|
|
node_config.update({"mode": "Core"})
|
|
|
|
collector = EventCollector()
|
|
create_node_result = WrapperManager.create_and_start(config=node_config, event_cb=collector.event_callback)
|
|
assert create_node_result.is_ok(), f"Failed to create and start node: {create_node_result.err()}"
|
|
node = create_node_result.ok_value
|
|
|
|
try:
|
|
send_result = node.channel_send(UNKNOWN_CHANNEL_ID, create_message_bindings())
|
|
assert send_result.is_err(), f"channel_send on unknown channel must fail, got Ok({send_result.ok_value!r})"
|
|
assert f"unknown channel: {UNKNOWN_CHANNEL_ID}" in send_result.err(), f"unexpected error message: {send_result.err()!r}"
|
|
|
|
assert collector.events == [], f"expected no events, got: {collector.events}"
|
|
finally:
|
|
node.stop_and_destroy()
|
|
|
|
def test_rc03_close_channel_close_unknown_rejected(self, node_config):
|
|
"""RC03: close an existing channel; closing again / an unknown id is rejected.
|
|
|
|
First close succeeds; a second close of the same (now-gone) id and a
|
|
close of a never-created id both Err with "unknown channel: <id>".
|
|
Lifecycle teardown + idempotency guard. No events are expected.
|
|
"""
|
|
node_config.update({"mode": "Core"})
|
|
|
|
collector = EventCollector()
|
|
create_node_result = WrapperManager.create_and_start(config=node_config, event_cb=collector.event_callback)
|
|
assert create_node_result.is_ok(), f"Failed to create and start node: {create_node_result.err()}"
|
|
node = create_node_result.ok_value
|
|
|
|
try:
|
|
create_result = node.channel_create(RC03_CHANNEL_ID, CONTENT_TOPIC, SENDER_ID)
|
|
assert create_result.is_ok(), f"channel_create failed: {create_result.err()}"
|
|
|
|
delay(CHANNEL_SETTLE_S)
|
|
|
|
close_result = node.channel_close(RC03_CHANNEL_ID)
|
|
assert close_result.is_ok(), f"channel_close on an existing channel failed: {close_result.err()}"
|
|
|
|
reclose_result = node.channel_close(RC03_CHANNEL_ID)
|
|
assert reclose_result.is_err(), f"second channel_close must fail, got Ok({reclose_result.ok_value!r})"
|
|
assert f"unknown channel: {RC03_CHANNEL_ID}" in reclose_result.err(), f"unexpected error message: {reclose_result.err()!r}"
|
|
|
|
unknown_close_result = node.channel_close(UNKNOWN_CHANNEL_ID)
|
|
assert unknown_close_result.is_err(), f"channel_close on unknown channel must fail, got Ok({unknown_close_result.ok_value!r})"
|
|
assert f"unknown channel: {UNKNOWN_CHANNEL_ID}" in unknown_close_result.err(), f"unexpected error message: {unknown_close_result.err()!r}"
|
|
|
|
assert collector.events == [], f"expected no events, got: {collector.events}"
|
|
finally:
|
|
node.stop_and_destroy()
|
|
|
|
def test_rc04_empty_payload_rejected_and_send_returns_handle(self, node_config):
|
|
"""RC04: empty payload is rejected; a non-empty send returns a handle synchronously.
|
|
|
|
channel_send with an empty payload Errs with "empty payload"; a normal
|
|
channel_send returns Ok(channelReqId) immediately (delivery is async).
|
|
Input validation + the immediate-handle contract of send.
|
|
"""
|
|
node_config.update({"mode": "Core"})
|
|
|
|
create_node_result = WrapperManager.create_and_start(config=node_config)
|
|
assert create_node_result.is_ok(), f"Failed to create and start node: {create_node_result.err()}"
|
|
node = create_node_result.ok_value
|
|
|
|
try:
|
|
create_result = node.channel_create(RC04_CHANNEL_ID, CONTENT_TOPIC, SENDER_ID)
|
|
assert create_result.is_ok(), f"channel_create failed: {create_result.err()}"
|
|
|
|
delay(CHANNEL_SETTLE_S)
|
|
|
|
empty_result = node.channel_send(RC04_CHANNEL_ID, create_message_bindings(payload=""))
|
|
assert empty_result.is_err(), f"channel_send with an empty payload must fail, got Ok({empty_result.ok_value!r})"
|
|
assert "empty payload" in empty_result.err(), f"unexpected error message: {empty_result.err()!r}"
|
|
|
|
send_result = node.channel_send(RC04_CHANNEL_ID, create_message_bindings())
|
|
assert send_result.is_ok(), f"channel_send with a non-empty payload failed: {send_result.err()}"
|
|
assert send_result.ok_value, f"channel_send must return a non-empty channelReqId handle, got: {send_result.ok_value!r}"
|
|
finally:
|
|
node.stop_and_destroy()
|
|
|
|
def test_rc04_send_after_close_rejected(self, node_config):
|
|
"""RC04 variant: sending after the channel is closed is rejected.
|
|
|
|
Exercises the teardown -> send ordering (distinct from RC02's
|
|
never-created id): once channel_close removes the id, channel_send Errs
|
|
with "unknown channel: <id>". No events are expected.
|
|
"""
|
|
node_config.update({"mode": "Core"})
|
|
|
|
collector = EventCollector()
|
|
create_node_result = WrapperManager.create_and_start(config=node_config, event_cb=collector.event_callback)
|
|
assert create_node_result.is_ok(), f"Failed to create and start node: {create_node_result.err()}"
|
|
node = create_node_result.ok_value
|
|
|
|
try:
|
|
create_result = node.channel_create(RC04_CLOSED_CHANNEL_ID, CONTENT_TOPIC, SENDER_ID)
|
|
assert create_result.is_ok(), f"channel_create failed: {create_result.err()}"
|
|
|
|
delay(CHANNEL_SETTLE_S)
|
|
|
|
close_result = node.channel_close(RC04_CLOSED_CHANNEL_ID)
|
|
assert close_result.is_ok(), f"channel_close failed: {close_result.err()}"
|
|
|
|
send_result = node.channel_send(RC04_CLOSED_CHANNEL_ID, create_message_bindings())
|
|
assert send_result.is_err(), f"channel_send after close must fail, got Ok({send_result.ok_value!r})"
|
|
assert f"unknown channel: {RC04_CLOSED_CHANNEL_ID}" in send_result.err(), f"unexpected error message: {send_result.err()!r}"
|
|
|
|
assert collector.events == [], f"expected no events, got: {collector.events}"
|
|
finally:
|
|
node.stop_and_destroy()
|