mosquitto/test/lib/01-will-unpwd-set.py

51 lines
1.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 produces a correct connect with a will, username and password.
# The client should connect to port 1888 with keepalive=60, clean session set,
# client id 01-will-unpwd-set , will topic set to "will-topic", will payload
# set to "will message", will qos=2, will retain not set, username set to
# "oibvvwqw" and password set to "#'^2hg9a&nm38*us".
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("01-will-unpwd-set",
keepalive=keepalive, username="oibvvwqw", password="#'^2hg9a&nm38*us",
2019-03-28 21:32:12 +00:00
will_topic="will-topic", will_qos=2, will_payload=b"will message")
2014-05-07 22:27:00 +00:00
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)
if mosq_test.expect_packet(conn, "connect", connect_packet):
rc = 0
conn.close()
finally:
client.terminate()
client.wait()
sock.close()
exit(rc)