Adding RC06

This commit is contained in:
Aya Hassan 2026-07-19 21:59:12 +02:00
parent 0abd63ef17
commit 6e3258862e

View File

@ -16,9 +16,17 @@ SENDER_A = "rc05-sender-a"
SENDER_B = "rc05-sender-b"
CHANNEL_RECEIVED_EVENT = "channel_message_received"
MESSAGE_RECEIVED_EVENT = "message_received"
RC06_CHANNEL_ID = "rc06-channel"
RC06_CONTENT_TOPIC = "/test/1/rc06-channel/proto"
MESH_SETTLE_S = 10
DELIVERY_TIMEOUT_S = 50.0
# Once the unmarked message has provably reached B's messaging layer, the
# channel ingress decision has already been made on that same event, so this is
# just a short grace window to catch any late channel_message_received.
NO_CHANNEL_DELIVERY_WINDOW_S = 10.0
def wait_for_channel_received(collector, channel_id, timeout_s, poll_interval_s=0.5):
@ -32,6 +40,22 @@ def wait_for_channel_received(collector, channel_id, timeout_s, poll_interval_s=
time.sleep(poll_interval_s)
def wait_for_message_received(collector, content_topic, timeout_s, poll_interval_s=0.5):
"""Wait for a messaging-layer message_received event on `content_topic`.
Used to prove a raw relay message actually reached the receiver, independent
of the channel layer (the content topic lives under the nested `message`).
"""
deadline = time.monotonic() + timeout_s
while True:
for event in collector.snapshot():
if event.get("eventType") == MESSAGE_RECEIVED_EVENT and (event.get("message") or {}).get("contentTopic") == content_topic:
return event
if time.monotonic() >= deadline:
return None
time.sleep(poll_interval_s)
class TestChannelDelivery:
def test_rc05_basic_a_to_b_delivery(self, node_config):
"""RC05: A's channel send is delivered to B on the matching channel + topic.
@ -95,3 +119,68 @@ class TestChannelDelivery:
assert (
received["senderId"] == SENDER_A
), f"received event must carry the originator's senderId {SENDER_A!r}, got {received.get('senderId')!r}"
def test_rc06_missing_marker_dropped(self, node_config):
"""RC06: a plain message on the channel's content topic but without the
Reliable-Channel spec marker is dropped at channel ingress.
A publishes a raw relay message (no RELIABLE-CHANNEL-API/1 meta) on B's
content topic. B's messaging layer still surfaces it (message_received),
proving the message arrived, but the channel ingress filter drops it: no
channel_message_received fires for the channel.
"""
payload_b64 = to_base64("rc06 unmarked message")
node_config.update(
{
"relay": True,
"store": False,
"reliabilityEnabled": False,
"numShardsInNetwork": 1,
}
)
receiver_collector = EventCollector()
receiver_result = WrapperManager.create_and_start(config=node_config, event_cb=receiver_collector.event_callback)
assert receiver_result.is_ok(), f"Failed to start receiver: {receiver_result.err()}"
with receiver_result.ok_value as receiver:
sender_config = {
**node_config,
"staticnodes": [get_node_multiaddr(receiver)],
"portsShift": 1,
}
sender_collector = EventCollector()
sender_result = WrapperManager.create_and_start(config=sender_config, event_cb=sender_collector.event_callback)
assert sender_result.is_ok(), f"Failed to start sender: {sender_result.err()}"
with sender_result.ok_value as sender:
assert wait_for_connected(sender_collector) is not None, "Sender did not reach Connected/PartiallyConnected state"
subscribe_result = receiver.subscribe_content_topic(RC06_CONTENT_TOPIC)
assert subscribe_result.is_ok(), f"receiver subscribe_content_topic failed: {subscribe_result.err()}"
subscribe_result = sender.subscribe_content_topic(RC06_CONTENT_TOPIC)
assert subscribe_result.is_ok(), f"sender subscribe_content_topic failed: {subscribe_result.err()}"
# Only B runs a channel; A never marks its traffic.
receiver_create = receiver.channel_create(RC06_CHANNEL_ID, RC06_CONTENT_TOPIC, SENDER_B)
assert receiver_create.is_ok(), f"receiver channel_create failed: {receiver_create.err()}"
delay(MESH_SETTLE_S)
# Plain relay publish: right content topic, but no Reliable-Channel
# marker, so B's channel ingress filter must drop it.
send_result = sender.send_message(create_message_bindings(contentTopic=RC06_CONTENT_TOPIC, payload=payload_b64))
assert send_result.is_ok(), f"send_message failed: {send_result.err()}"
# It reaches B's messaging layer, so the drop below is the marker
# filter at work, not a message that simply never arrived.
arrived = wait_for_message_received(receiver_collector, RC06_CONTENT_TOPIC, DELIVERY_TIMEOUT_S)
assert arrived is not None, (
f"receiver never saw a {MESSAGE_RECEIVED_EVENT} for {RC06_CONTENT_TOPIC} within {DELIVERY_TIMEOUT_S}s; "
f"cannot conclude the channel dropped it. Collected events: {receiver_collector.snapshot()}"
)
# The channel ingress filter drops the unmarked message: no channel event.
leaked = wait_for_channel_received(receiver_collector, RC06_CHANNEL_ID, NO_CHANNEL_DELIVERY_WINDOW_S)
assert leaked is None, f"an unmarked message must not surface as a {CHANNEL_RECEIVED_EVENT}; got: {leaked!r}"