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/03-publish-b2c-qos2.py

40 lines
1.8 KiB
Python

#!/usr/bin/env python3
# Test whether a client responds correctly to a PUBLISH with QoS 1.
# The client should connect to port 1888 with keepalive=60, clean session set,
# and client id publish-qos2-test
# The test will send a CONNACK message to the client with rc=0. Upon receiving
# the CONNACK the client should verify that rc==0.
# The test will send the client a PUBLISH message with topic
# "pub/qos2/receive", payload of "message", QoS=2 and mid=13423. The client
# should handle this as per the spec by sending a PUBREC message.
# The test will not respond to the first PUBREC message, so the client must
# resend the PUBREC message with dup=1. Note that to keep test durations low, a
# message retry timeout of less than 10 seconds is required for this test.
# On receiving the second PUBREC with dup==1, the test will send the correct
# PUBREL message. The client should respond to this with the correct PUBCOMP
# message and then exit with return code=0.
from mosq_test_helper import *
def do_test(conn, data):
connect_packet = mosq_test.gen_connect("publish-qos2-test")
connack_packet = mosq_test.gen_connack(rc=0)
disconnect_packet = mosq_test.gen_disconnect()
mid = 13423
publish_packet = mosq_test.gen_publish("pub/qos2/receive", qos=2, mid=mid, payload="message")
pubrec_packet = mosq_test.gen_pubrec(mid)
pubrel_packet = mosq_test.gen_pubrel(mid)
pubcomp_packet = mosq_test.gen_pubcomp(mid)
mosq_test.do_receive_send(conn, connect_packet, connack_packet, "connect")
mosq_test.do_send_receive(conn, publish_packet, pubrec_packet, "pubrec")
mosq_test.do_send_receive(conn, pubrel_packet, pubcomp_packet, "pubcomp")
mosq_test.client_test("c/03-publish-b2c-qos2.test", [], do_test, None)
mosq_test.client_test("cpp/03-publish-b2c-qos2.test", [], do_test, None)