1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| #!/usr/bin/env python3
|
| from mosq_test_helper import *
|
| port = int(sys.argv[2])
|
| rc = 1
| keepalive = 60
| connect_packet = mosq_test.gen_connect("test-helper", keepalive=keepalive)
| connack_packet = mosq_test.gen_connack(rc=0)
|
| publish_packet = mosq_test.gen_publish(sys.argv[1], qos=0, retain=True, payload="message")
|
| sock = mosq_test.do_client_connect(connect_packet, connack_packet, connack_error="helper connack", port=port)
| sock.send(publish_packet)
| rc = 0
| sock.close()
|
| exit(rc)
|
|