#!/usr/bin/env python3
|
|
# Test whether a client responds correctly to a PUBLISH with QoS 1.
|
|
# 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.
|
# The test will send the client a PUBLISH message with topic
|
# "pub/qos1/receive", payload of "message", QoS=1 and mid=123. The client
|
# should handle this as per the spec by sending a PUBACK message.
|
# The client should then exit with return code==0.
|
|
from mosq_test_helper import *
|
|
port = mosq_test.get_lib_port()
|
|
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 = 123
|
publish_packet = mosq_test.gen_publish("pub/qos1/receive", qos=1, mid=mid, payload="message")
|
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))
|
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)
|
|
try:
|
(conn, address) = sock.accept()
|
conn.settimeout(10)
|
|
if mosq_test.expect_packet(conn, "connect", connect_packet):
|
conn.send(connack_packet)
|
conn.send(publish_packet)
|
|
if mosq_test.expect_packet(conn, "puback", puback_packet):
|
rc = 0
|
|
conn.close()
|
finally:
|
for i in range(0, 5):
|
if client.returncode != None:
|
break
|
time.sleep(0.1)
|
|
try:
|
client.terminate()
|
except OSError:
|
pass
|
client.wait()
|
sock.close()
|
if client.returncode != 0:
|
exit(1)
|
|
exit(rc)
|