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.
mosquitto/test/lib/11-prop-send-payload-format.py

34 lines
1.4 KiB
Python

#!/usr/bin/env python3
# Test whether a client sends a correct PUBLISH to a topic with QoS 0.
# The client should connect to port 1888 with keepalive=60, clean session set,
# and client id publish-qos0-test
# 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 PUBLISH message
# to topic "pub/qos0/test" with payload "message" and QoS=0. If rc!=0, the
# client should exit with an error.
# After sending the PUBLISH message, the client should send a DISCONNECT message.
from mosq_test_helper import *
def do_test(conn, data):
connect_packet = mosq_test.gen_connect("prop-test", proto_ver=5)
connack_packet = mosq_test.gen_connack(rc=0, proto_ver=5)
props = mqtt5_props.gen_byte_prop(mqtt5_props.PROP_PAYLOAD_FORMAT_INDICATOR, 0x01)
publish_packet = mosq_test.gen_publish("prop/qos0", qos=0, payload="message", proto_ver=5, properties=props)
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, "publish", publish_packet)
mosq_test.expect_packet(conn, "disconnect", disconnect_packet)
conn.close()
mosq_test.client_test("c/11-prop-send-payload-format.test", [], do_test, None)
mosq_test.client_test("cpp/11-prop-send-payload-format.test", [], do_test, None)