mosquitto/test/broker/01-connect-invalid-reserved.py

34 lines
884 B
Python
Raw Normal View History

2019-03-28 21:32:12 +00:00
#!/usr/bin/env python3
# Test whether a CONNECT with reserved set to 1 results in a disconnect. MQTT-3.1.2-3
2018-11-27 11:26:21 +00:00
from mosq_test_helper import *
from socket import error as SocketError
import errno
rc = 1
keepalive = 10
connect_packet = mosq_test.gen_connect("connect-invalid-test", keepalive=keepalive, connect_reserved=True, proto_ver=4)
port = mosq_test.get_port()
broker = mosq_test.start_broker(filename=os.path.basename(__file__), port=port)
try:
2019-03-28 21:32:12 +00:00
sock = mosq_test.do_client_connect(connect_packet, b"", port=port)
sock.close()
rc = 0
except SocketError as e:
if e.errno == errno.ECONNRESET:
# Connection has been closed by peer (very quickly).
# Fine, this is the expected behavior.
rc = 0
finally:
broker.terminate()
broker.wait()
(stdo, stde) = broker.communicate()
if rc:
2019-04-02 13:06:28 +00:00
print(stde.decode('utf-8'))
exit(rc)