You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
714 B
Python
18 lines
714 B
Python
#!/usr/bin/env python3
|
|
|
|
# Test whether a client produces a correct connect and subsequent disconnect, with a will.
|
|
|
|
from mosq_test_helper import *
|
|
|
|
def do_test(conn, data):
|
|
connect_packet = mosq_test.gen_connect("01-con-discon-will", will_topic="will/topic", will_payload=b"will-payload", will_qos=1, will_retain=True)
|
|
connack_packet = mosq_test.gen_connack(rc=0)
|
|
disconnect_packet = mosq_test.gen_disconnect()
|
|
|
|
mosq_test.do_receive_send(conn, connect_packet, connack_packet, "connect")
|
|
mosq_test.expect_packet(conn, "disconnect", disconnect_packet)
|
|
|
|
|
|
mosq_test.client_test("c/01-con-discon-will.test", [], do_test, None)
|
|
mosq_test.client_test("cpp/01-con-discon-will.test", [], do_test, None)
|