1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
# Test whether a client produces a correct connect with a will.
# Will QoS=1, will retain=1.
# The client should connect with keepalive=60, clean session set,
# client id 01-will-set will topic set to topic/on/unexpected/disconnect , will
# payload set to "will message", will qos set to 1 and will retain set.
import tests.paho_test as paho_test
connect_packet = paho_test.gen_connect(
"01-will-set", keepalive=60, will_topic="topic/on/unexpected/disconnect",
will_qos=1, will_retain=True, will_payload="will message")
def test_01_will_set(server_socket, start_client):
start_client("01-will-set.py")
(conn, address) = server_socket.accept()
conn.settimeout(10)
paho_test.expect_packet(conn, "connect", connect_packet)
conn.close()
|