2019-03-28 22:32:12 +01:00
|
|
|
#!/usr/bin/env python3
|
2014-05-08 00:27:00 +02:00
|
|
|
|
|
|
|
|
# Test whether a client will is transmitted correctly.
|
|
|
|
|
|
2018-11-27 12:26:21 +01:00
|
|
|
from mosq_test_helper import *
|
2014-05-08 00:27:00 +02:00
|
|
|
|
|
|
|
|
|
2026-05-05 02:25:16 +02:00
|
|
|
def do_test(proto_ver, clean_session):
|
2019-05-21 15:35:43 +02:00
|
|
|
mid = 53
|
2026-05-04 23:54:48 +02:00
|
|
|
connect1_packet = mqtt_packets.gen_connect("will-qos0-test", proto_ver=proto_ver)
|
|
|
|
|
connack1_packet = mqtt_packets.gen_connack(rc=0, proto_ver=proto_ver)
|
2019-05-21 15:35:43 +02:00
|
|
|
|
2026-05-04 23:54:48 +02:00
|
|
|
connect2_packet = mqtt_packets.gen_connect("will-qos0-helper", will_topic="will/qos0/test", will_payload=b"will-message", clean_session=clean_session, proto_ver=proto_ver, session_expiry=60)
|
|
|
|
|
connack2_packet = mqtt_packets.gen_connack(rc=0, proto_ver=proto_ver)
|
2019-05-21 15:35:43 +02:00
|
|
|
|
2026-05-04 23:54:48 +02:00
|
|
|
subscribe_packet = mqtt_packets.gen_subscribe(mid, "will/qos0/test", 0, proto_ver=proto_ver)
|
|
|
|
|
suback_packet = mqtt_packets.gen_suback(mid, 0, proto_ver=proto_ver)
|
2019-05-21 15:35:43 +02:00
|
|
|
|
2026-05-04 23:54:48 +02:00
|
|
|
publish_packet = mqtt_packets.gen_publish("will/qos0/test", qos=0, payload="will-message", proto_ver=proto_ver)
|
2019-05-21 15:35:43 +02:00
|
|
|
|
2026-05-04 23:54:48 +02:00
|
|
|
connect2_packet_clear = mqtt_packets.gen_connect("will-qos0-helper", proto_ver=proto_ver)
|
2021-03-10 15:56:35 +01:00
|
|
|
|
2019-05-21 15:35:43 +02:00
|
|
|
port = mosq_test.get_port()
|
2026-05-05 02:25:16 +02:00
|
|
|
broker = MosquittoBroker(port=port)
|
|
|
|
|
with broker:
|
2019-05-21 15:35:43 +02:00
|
|
|
sock = mosq_test.do_client_connect(connect1_packet, connack1_packet, timeout=5, port=port)
|
|
|
|
|
mosq_test.do_send_receive(sock, subscribe_packet, suback_packet, "suback")
|
|
|
|
|
|
|
|
|
|
sock2 = mosq_test.do_client_connect(connect2_packet, connack2_packet, port=port, timeout=5)
|
|
|
|
|
sock2.close()
|
|
|
|
|
|
2020-08-12 12:06:09 +02:00
|
|
|
mosq_test.expect_packet(sock, "publish", publish_packet)
|
2019-05-21 15:35:43 +02:00
|
|
|
sock.close()
|
2021-03-10 15:56:35 +01:00
|
|
|
|
|
|
|
|
sock = mosq_test.do_client_connect(connect2_packet_clear, connack1_packet, timeout=5, port=port)
|
|
|
|
|
sock.close()
|
|
|
|
|
|
2014-05-08 00:27:00 +02:00
|
|
|
|
2021-03-10 15:56:35 +01:00
|
|
|
if __name__ == '__main__':
|
2026-05-05 02:25:16 +02:00
|
|
|
do_test(proto_ver=4, clean_session=True)
|
|
|
|
|
do_test(proto_ver=4, clean_session=False)
|
|
|
|
|
do_test(proto_ver=5, clean_session=True)
|
|
|
|
|
do_test(proto_ver=5, clean_session=False)
|