mirror of
https://github.com/eclipse/mosquitto.git
synced 2025-05-09 01:01:11 +08:00
53 lines
1.6 KiB
Python
Executable File
53 lines
1.6 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# Test whether a PUBLISH to a topic with an invalid UTF-8 topic fails
|
|
|
|
from mosq_test_helper import *
|
|
|
|
def do_test(proto_ver):
|
|
rc = 1
|
|
mid = 53
|
|
keepalive = 60
|
|
connect_packet = mosq_test.gen_connect("publish-invalid-utf8", keepalive=keepalive, proto_ver=proto_ver)
|
|
connack_packet = mosq_test.gen_connack(rc=0, proto_ver=proto_ver)
|
|
|
|
publish_packet = mosq_test.gen_publish("invalid/utf8", 1, mid=mid, proto_ver=proto_ver)
|
|
b = list(struct.unpack("B"*len(publish_packet), publish_packet))
|
|
b[11] = 0 # Topic should never have a 0x0000
|
|
publish_packet = struct.pack("B"*len(b), *b)
|
|
|
|
puback_packet = mosq_test.gen_puback(mid, proto_ver=proto_ver)
|
|
|
|
port = mosq_test.get_port()
|
|
broker = mosq_test.start_broker(filename=os.path.basename(__file__), port=port)
|
|
|
|
try:
|
|
time.sleep(0.5)
|
|
|
|
sock = mosq_test.do_client_connect(connect_packet, connack_packet, port=port)
|
|
if proto_ver == 4:
|
|
mosq_test.do_send_receive(sock, publish_packet, b"", "puback")
|
|
else:
|
|
disconnect_packet = mosq_test.gen_disconnect(proto_ver=5, reason_code=mqtt5_rc.MQTT_RC_MALFORMED_PACKET)
|
|
mosq_test.do_send_receive(sock, publish_packet, disconnect_packet, "puback")
|
|
|
|
rc = 0
|
|
|
|
sock.close()
|
|
except mosq_test.TestError:
|
|
pass
|
|
finally:
|
|
broker.terminate()
|
|
broker.wait()
|
|
(stdo, stde) = broker.communicate()
|
|
if rc:
|
|
print(stde.decode('utf-8'))
|
|
print("proto_ver=%d" % (proto_ver))
|
|
exit(rc)
|
|
|
|
|
|
do_test(proto_ver=4)
|
|
do_test(proto_ver=5)
|
|
exit(0)
|
|
|