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.
27 lines
1.2 KiB
Python
27 lines
1.2 KiB
Python
#!/usr/bin/env python3
|
|
|
|
# Test whether a client produces a correct connect and subsequent disconnect.
|
|
|
|
# The client should connect to port 1888 with keepalive=60, clean session set,
|
|
# and client id 01-con-discon-success
|
|
# The test will send a CONNACK message to the client with rc=0. Upon receiving
|
|
# the CONNACK and verifying that rc=0, the client should send a DISCONNECT
|
|
# message. If rc!=0, the client should exit with an error.
|
|
|
|
from mosq_test_helper import *
|
|
|
|
def do_test(conn, data):
|
|
props = mqtt5_props.gen_uint32_prop(mqtt5_props.PROP_MAXIMUM_PACKET_SIZE, 1000)
|
|
props += mqtt5_props.gen_uint16_prop(mqtt5_props.PROP_RECEIVE_MAXIMUM, 20)
|
|
connect_packet = mosq_test.gen_connect("01-con-discon-success-v5", proto_ver=5, properties=props)
|
|
connack_packet = mosq_test.gen_connack(rc=0, proto_ver=5)
|
|
|
|
disconnect_packet = mosq_test.gen_disconnect(proto_ver=5)
|
|
|
|
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-success-v5.test", [], do_test, None)
|
|
mosq_test.client_test("cpp/01-con-discon-success-v5.test", [], do_test, None)
|