mirror of
https://github.com/eclipse/mosquitto.git
synced 2025-05-09 01:01:11 +08:00
22 lines
548 B
Python
Executable File
22 lines
548 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from mosq_test_helper import *
|
|
|
|
port = mosq_test.get_port()
|
|
|
|
rc = 1
|
|
keepalive = 60
|
|
connect_packet = mosq_test.gen_connect("test-helper", keepalive=keepalive)
|
|
connack_packet = mosq_test.gen_connack(rc=0)
|
|
|
|
publish_packet = mosq_test.gen_publish("bridge/ssl/test", qos=0, payload="message")
|
|
|
|
disconnect_packet = mosq_test.gen_disconnect()
|
|
|
|
sock = mosq_test.do_client_connect(connect_packet, connack_packet, port=port, connack_error="helper connack")
|
|
sock.send(publish_packet)
|
|
sock.send(disconnect_packet)
|
|
sock.close()
|
|
|
|
exit(0)
|