mosquitto/test/lib/03-publish-c2b-qos1-timeout.py

74 lines
2.4 KiB
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 client sends a correct PUBLISH to a topic with QoS 1 and responds to a delay.
# The client should connect to port 1888 with keepalive=60, clean session set,
# and client id publish-qos1-test
# The test will send a CONNACK message to the client with rc=0. Upon receiving
# the CONNACK the client should verify that rc==0. If not, it should exit with
# return code=1.
# On a successful CONNACK, the client should send a PUBLISH message with topic
# "pub/qos1/test", payload "message" and QoS=1.
# The test will not respond to the first PUBLISH message, so the client must
# resend the PUBLISH message with dup=1. Note that to keep test durations low, a
# message retry timeout of less than 10 seconds is required for this test.
# On receiving the second PUBLISH message, the test will send the correct
# PUBACK response. On receiving the correct PUBACK response, the client should
# send a DISCONNECT message.
2018-11-27 11:26:21 +00:00
from mosq_test_helper import *
2014-05-07 22:27:00 +00:00
port = mosq_test.get_lib_port()
2014-05-07 22:27:00 +00:00
rc = 1
keepalive = 60
connect_packet = mosq_test.gen_connect("publish-qos1-test", keepalive=keepalive)
connack_packet = mosq_test.gen_connack(rc=0)
disconnect_packet = mosq_test.gen_disconnect()
mid = 1
publish_packet = mosq_test.gen_publish("pub/qos1/test", qos=1, mid=mid, payload="message")
publish_packet_dup = mosq_test.gen_publish("pub/qos1/test", qos=1, mid=mid, payload="message", dup=True)
puback_packet = mosq_test.gen_puback(mid)
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
sock.settimeout(10)
sock.bind(('', port))
2014-05-07 22:27:00 +00:00
sock.listen(5)
client_args = sys.argv[1:]
env = dict(os.environ)
env['LD_LIBRARY_PATH'] = '../../lib:../../lib/cpp'
try:
pp = env['PYTHONPATH']
except KeyError:
pp = ''
env['PYTHONPATH'] = '../../lib/python:'+pp
client = mosq_test.start_client(filename=sys.argv[1].replace('/', '-'), cmd=client_args, env=env, port=port)
2014-05-07 22:27:00 +00:00
try:
(conn, address) = sock.accept()
conn.settimeout(10)
2020-08-12 10:06:09 +00:00
mosq_test.do_receive_send(conn, connect_packet, connack_packet, "connect")
2014-05-07 22:27:00 +00:00
2020-08-12 10:06:09 +00:00
mosq_test.expect_packet(conn, "publish", publish_packet)
# Delay for > 3 seconds (message retry time)
2014-05-07 22:27:00 +00:00
2020-08-12 10:06:09 +00:00
mosq_test.do_receive_send(conn, publish_packet_dup, puback_packet, "dup publish")
2014-05-07 22:27:00 +00:00
2020-08-12 10:06:09 +00:00
mosq_test.expect_packet(conn, "disconnect", disconnect_packet)
rc = 0
2014-05-07 22:27:00 +00:00
conn.close()
2020-08-12 10:06:09 +00:00
except mosq_test.TestError:
pass
2014-05-07 22:27:00 +00:00
finally:
client.terminate()
client.wait()
sock.close()
exit(rc)