mosquitto/test/broker/06-bridge-fail-persist-resend-qos1.py

78 lines
2.0 KiB
Python
Raw Normal View History

#!/usr/bin/env python
# Test whether a bridge can cope with an unknown PUBACK
import socket
import subprocess
import time
import inspect, os, sys
# From http://stackoverflow.com/questions/279237/python-import-a-module-from-a-folder
cmd_subfolder = os.path.realpath(os.path.abspath(os.path.join(os.path.split(inspect.getfile( inspect.currentframe() ))[0],"..")))
if cmd_subfolder not in sys.path:
sys.path.insert(0, cmd_subfolder)
import mosq_test
rc = 1
keepalive = 60
2016-06-21 22:33:58 +00:00
connect_packet = mosq_test.gen_connect("bridge-u-test", keepalive=keepalive, proto_ver=3)
connack_packet = mosq_test.gen_connack(rc=0)
mid = 180
mid_unknown = 2000
publish_packet = mosq_test.gen_publish("bridge/unknown/qos1", qos=1, payload="bridge-message", mid=mid)
puback_packet = mosq_test.gen_puback(mid)
puback_packet_unknown = mosq_test.gen_puback(mid_unknown)
unsubscribe_packet = mosq_test.gen_unsubscribe(1, "bridge/#")
unsuback_packet = mosq_test.gen_unsuback(1)
if os.environ.get('MOSQ_USE_VALGRIND') is not None:
sleep_time = 5
else:
sleep_time = 0.5
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
sock.settimeout(10)
sock.bind(('', 1888))
sock.listen(5)
broker = mosq_test.start_broker(filename=os.path.basename(__file__), port=1889)
time.sleep(sleep_time)
try:
(conn, address) = sock.accept()
conn.settimeout(20)
if mosq_test.expect_packet(conn, "connect", connect_packet):
conn.send(connack_packet)
if mosq_test.expect_packet(conn, "unsubscribe", unsubscribe_packet):
conn.send(unsuback_packet)
# Send the unexpected puback packet
conn.send(puback_packet_unknown)
# Send a legitimate publish packet to verify everything is still ok
conn.send(publish_packet)
if mosq_test.expect_packet(conn, "puback", puback_packet):
rc = 0
finally:
broker.terminate()
broker.wait()
if rc:
(stdo, stde) = broker.communicate()
print(stde)
sock.close()
exit(rc)