mosquitto/test/broker/02-unsubscribe-qos0.py

36 lines
926 B
Python
Raw Normal View History

2019-03-28 21:32:12 +00:00
#!/usr/bin/env python3
2014-05-07 22:27:00 +00:00
# Test whether a UNSUBSCRIBE to a topic with QoS 0 results in the correct UNSUBACK packet.
# This doesn't assume a subscription exists.
2018-11-27 11:26:21 +00:00
from mosq_test_helper import *
2014-05-07 22:27:00 +00:00
rc = 1
mid = 53
keepalive = 60
connect_packet = mosq_test.gen_connect("unsubscribe-qos0-test", keepalive=keepalive)
connack_packet = mosq_test.gen_connack(rc=0)
unsubscribe_packet = mosq_test.gen_unsubscribe(mid, "qos0/test")
unsuback_packet = mosq_test.gen_unsuback(mid)
port = mosq_test.get_port()
broker = mosq_test.start_broker(filename=os.path.basename(__file__), port=port)
2014-05-07 22:27:00 +00:00
try:
sock = mosq_test.do_client_connect(connect_packet, connack_packet, port=port)
mosq_test.do_send_receive(sock, unsubscribe_packet, unsuback_packet, "unsuback")
2014-05-07 22:27:00 +00:00
rc = 0
2014-05-07 22:27:00 +00:00
sock.close()
finally:
broker.terminate()
broker.wait()
(stdo, stde) = broker.communicate()
2014-05-07 22:27:00 +00:00
if rc:
2019-04-02 13:06:28 +00:00
print(stde.decode('utf-8'))
2014-05-07 22:27:00 +00:00
exit(rc)