1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| #!/usr/bin/env python3
|
| import struct
|
| from mosq_test_helper import *
|
| rc = 1
| keepalive = 60
| connect_packet = mosq_test.gen_connect("will-null-topic", keepalive=keepalive, will_topic="", will_payload=struct.pack("!4sB7s", b"will", 0, b"message"))
| connack_packet = mosq_test.gen_connack(rc=2)
|
| port = mosq_test.get_port()
| broker = mosq_test.start_broker(filename=os.path.basename(__file__), port=port)
|
| try:
| sock = mosq_test.do_client_connect(connect_packet, b"", timeout=30, port=port)
| rc = 0
| sock.close()
| finally:
| broker.terminate()
| broker.wait()
| (stdo, stde) = broker.communicate()
| if rc:
| print(stde.decode('utf-8'))
|
| exit(rc)
|
|