mosquitto/test/broker/09-extended-auth-unsupported.py

34 lines
907 B
Python
Raw Normal View History

2019-09-23 21:45:27 +00:00
#!/usr/bin/env python3
2019-04-02 09:22:02 +00:00
# Test whether an unsupported extended auth is rejected.
from mosq_test_helper import *
port = mosq_test.get_port()
rc = 1
props = mqtt5_props.gen_string_prop(mqtt5_props.PROP_AUTHENTICATION_METHOD, "unsupported")
props += mqtt5_props.gen_string_prop(mqtt5_props.PROP_AUTHENTICATION_DATA, "test")
connect_packet = mosq_test.gen_connect("client-params-test", keepalive=42, proto_ver=5, properties=props)
connack_packet = mosq_test.gen_connack(rc=mqtt5_rc.MQTT_RC_BAD_AUTHENTICATION_METHOD, proto_ver=5, properties=None)
broker = mosq_test.start_broker(filename=os.path.basename(__file__), port=port)
try:
sock = mosq_test.do_client_connect(connect_packet, connack_packet, timeout=20, port=port)
rc = 0
sock.close()
finally:
broker.terminate()
broker.wait()
(stdo, stde) = broker.communicate()
if rc:
2019-04-02 13:06:28 +00:00
print(stde.decode('utf-8'))
2019-04-02 09:22:02 +00:00
exit(rc)