mirror of
https://github.com/eclipse/mosquitto.git
synced 2025-05-09 01:01:11 +08:00

Conflicts: ChangeLog.txt config.mk src/context.c src/loop.c src/subs.c test/broker/01-connect-bad-packet.py test/broker/02-subpub-qos1-bad-pubcomp.py test/broker/02-subpub-qos1-bad-pubrec.py test/broker/02-subpub-qos2-bad-puback-1.py test/broker/02-subpub-qos2-bad-puback-2.py test/broker/02-subpub-qos2-bad-pubcomp.py test/broker/02-subpub-qos2.py test/broker/07-will-null-topic.py
37 lines
1.1 KiB
Python
Executable File
37 lines
1.1 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import struct
|
|
|
|
from mosq_test_helper import *
|
|
|
|
def do_test(proto_ver):
|
|
rc = 1
|
|
keepalive = 60
|
|
connect_packet = mosq_test.gen_connect("will-null-topic", keepalive=keepalive, will_topic="", will_payload=struct.pack("!4sB7s", b"will", 0, b"message"), proto_ver=proto_ver)
|
|
connack_packet = mosq_test.gen_connack(rc=2, proto_ver=proto_ver)
|
|
|
|
port = mosq_test.get_port()
|
|
broker = mosq_test.start_broker(filename=os.path.basename(__file__), port=port)
|
|
|
|
try:
|
|
sock = mosq_test.do_client_connect(connect_packet, b"", timeout=30, port=port)
|
|
rc = 0
|
|
sock.close()
|
|
except socket.error as e:
|
|
if e.errno == errno.ECONNRESET:
|
|
# Connection has been closed by peer, this is the expected behaviour
|
|
rc = 0
|
|
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)
|