1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| #!/usr/bin/env python3
|
| # Test whether a PUBLISH to a topic with QoS 2 results in the correct packet flow.
|
| from mosq_test_helper import *
|
| rc = 1
| keepalive = 60
| connect_packet = mosq_test.gen_connect("test-helper", keepalive=keepalive)
| connack_packet = mosq_test.gen_connack(rc=0)
|
| mid = 128
| publish_packet = mosq_test.gen_publish("qos1/timeout/test", qos=1, mid=mid, payload="timeout-message")
| puback_packet = mosq_test.gen_puback(mid)
|
| sock = mosq_test.do_client_connect(connect_packet, connack_packet, connack_error="helper connack")
| mosq_test.do_send_receive(sock, publish_packet, puback_packet, "helper puback")
|
| rc = 0
|
| sock.close()
|
| exit(rc)
|
|