mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-05-21 12:24:29 +02:00
58 lines
1.5 KiB
Python
Executable file
58 lines
1.5 KiB
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
from mosq_test_helper import *
|
|
import json
|
|
import shutil
|
|
|
|
mosq_test.require_features(["WITH_CONTROL", "WITH_PLUGINS", "WITH_PLUGIN_DYNAMIC_SECURITY", "WITH_TLS"])
|
|
|
|
def write_config(filename, port):
|
|
with open(filename, 'w') as f:
|
|
f.write("listener %d\n" % (port))
|
|
f.write("allow_anonymous false\n")
|
|
f.write(f"plugin {mosq_paths.plugin_dynamic_security}\n")
|
|
f.write(f"plugin_opt_config_file {Path(str(port), 'dynamic-security.json')}\n")
|
|
|
|
|
|
port = mosq_test.get_port()
|
|
conf_file = os.path.basename(__file__).replace('.py', '.conf')
|
|
write_config(conf_file, port)
|
|
|
|
try:
|
|
os.mkdir(str(port))
|
|
except FileExistsError:
|
|
pass
|
|
|
|
rc = 1
|
|
connect_packet = mqtt_packets.gen_connect("ctrl-test", username="admin", password="adminadminadmin")
|
|
connack_packet = mqtt_packets.gen_connack(rc=0)
|
|
|
|
env = os.environ
|
|
env["MOSQUITTO_DYNSEC_PASSWORD"] = "adminadminadmin"
|
|
broker = mosq_test.start_broker(filename=os.path.basename(__file__), use_conf=True, port=port, env=env, timeout=3)
|
|
|
|
try:
|
|
sock = mosq_test.do_client_connect(connect_packet, connack_packet, timeout=5, port=port)
|
|
rc = 0
|
|
sock.close()
|
|
except mosq_test.TestError:
|
|
pass
|
|
finally:
|
|
os.remove(conf_file)
|
|
try:
|
|
os.remove(f"{port}/dynamic-security.json")
|
|
except FileNotFoundError:
|
|
pass
|
|
try:
|
|
os.remove(f"{port}/dynamic-security.json.pw")
|
|
except FileNotFoundError:
|
|
pass
|
|
os.rmdir(f"{port}")
|
|
mosq_test.terminate_broker(broker)
|
|
broker.wait()
|
|
if rc:
|
|
print(mosq_test.broker_log(broker))
|
|
|
|
|
|
exit(rc)
|