mosquitto/test/broker/08-ssl-connect-no-auth.py

57 lines
1.6 KiB
Python
Raw Permalink Normal View History

2019-03-28 21:32:12 +00:00
#!/usr/bin/env python3
2014-05-07 22:27:00 +00:00
# Test whether a valid CONNECT results in the correct CONNACK packet using an SSL connection.
2018-11-27 11:26:21 +00:00
from mosq_test_helper import *
2014-05-07 22:27:00 +00:00
if sys.version < '2.7':
print("WARNING: SSL not supported on Python 2.6")
exit(0)
def write_config(filename, port1, port2):
with open(filename, 'w') as f:
f.write("port %d\n" % (port2))
f.write("allow_anonymous true\n")
f.write("\n")
f.write("listener %d\n" % (port1))
f.write("allow_anonymous true\n")
f.write("cafile ../ssl/all-ca.crt\n")
f.write("certfile ../ssl/server.crt\n")
f.write("keyfile ../ssl/server.key\n")
(port1, port2) = mosq_test.get_port(2)
conf_file = os.path.basename(__file__).replace('.py', '.conf')
write_config(conf_file, port1, port2)
2014-05-07 22:27:00 +00:00
rc = 1
keepalive = 10
connect_packet = mosq_test.gen_connect("connect-success-test", keepalive=keepalive)
connack_packet = mosq_test.gen_connack(rc=0)
broker = mosq_test.start_broker(filename=os.path.basename(__file__), port=port2, use_conf=True)
2014-05-07 22:27:00 +00:00
try:
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
context = ssl.create_default_context(ssl.Purpose.SERVER_AUTH, cafile="../ssl/test-root-ca.crt")
ssock = context.wrap_socket(sock, server_hostname="localhost")
2014-05-07 22:27:00 +00:00
ssock.settimeout(20)
ssock.connect(("localhost", port1))
2014-05-07 22:27:00 +00:00
mosq_test.do_send_receive(ssock, connect_packet, connack_packet, "connack")
rc = 0
2014-05-07 22:27:00 +00:00
ssock.close()
2020-08-12 10:06:09 +00:00
except mosq_test.TestError:
pass
2014-05-07 22:27:00 +00:00
finally:
os.remove(conf_file)
2014-05-07 22:27:00 +00:00
broker.terminate()
broker.wait()
(stdo, stde) = broker.communicate()
2014-05-07 22:27:00 +00:00
if rc:
2019-04-02 13:06:28 +00:00
print(stde.decode('utf-8'))
2014-05-07 22:27:00 +00:00
exit(rc)