mirror of
https://github.com/eclipse/mosquitto.git
synced 2025-05-09 17:21:09 +08:00
76 lines
2.3 KiB
Python
Executable File
76 lines
2.3 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
# Test whether a client sends a correct SUBSCRIBE to a topic with QoS 2.
|
|
|
|
# The client should connect to port 1888 with keepalive=60, clean session set,
|
|
# and client id subscribe-qos2-test
|
|
# The test will send a CONNACK message to the client with rc=0. Upon receiving
|
|
# the CONNACK and verifying that rc=0, the client should send a SUBSCRIBE
|
|
# message to subscribe to topic "qos2/test" with QoS=2. If rc!=0, the client
|
|
# should exit with an error.
|
|
# Upon receiving the correct SUBSCRIBE message, the test will reply with a
|
|
# SUBACK message with the accepted QoS set to 2. On receiving the SUBACK
|
|
# message, the client should send a DISCONNECT message.
|
|
|
|
import inspect
|
|
import os
|
|
import socket
|
|
import sys
|
|
|
|
# From http://stackoverflow.com/questions/279237/python-import-a-module-from-a-folder
|
|
cmd_subfolder = os.path.realpath(os.path.abspath(os.path.join(os.path.split(inspect.getfile( inspect.currentframe() ))[0],"..")))
|
|
if cmd_subfolder not in sys.path:
|
|
sys.path.insert(0, cmd_subfolder)
|
|
|
|
import mosq_test
|
|
|
|
port = mosq_test.get_lib_port()
|
|
|
|
rc = 1
|
|
keepalive = 60
|
|
connect_packet = mosq_test.gen_connect("subscribe-qos2-test", keepalive=keepalive)
|
|
connack_packet = mosq_test.gen_connack(rc=0)
|
|
|
|
disconnect_packet = mosq_test.gen_disconnect()
|
|
|
|
mid = 1
|
|
subscribe_packet = mosq_test.gen_subscribe(mid, "qos2/test", 2)
|
|
suback_packet = mosq_test.gen_suback(mid, 2)
|
|
|
|
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
|
sock.settimeout(10)
|
|
sock.bind(('', port))
|
|
sock.listen(5)
|
|
|
|
client_args = sys.argv[1:]
|
|
env = dict(os.environ)
|
|
env['LD_LIBRARY_PATH'] = '../../lib:../../lib/cpp'
|
|
try:
|
|
pp = env['PYTHONPATH']
|
|
except KeyError:
|
|
pp = ''
|
|
env['PYTHONPATH'] = '../../lib/python:'+pp
|
|
client = mosq_test.start_client(filename=sys.argv[1].replace('/', '-'), cmd=client_args, env=env, port=port)
|
|
|
|
try:
|
|
(conn, address) = sock.accept()
|
|
conn.settimeout(10)
|
|
|
|
if mosq_test.expect_packet(conn, "connect", connect_packet):
|
|
conn.send(connack_packet)
|
|
|
|
if mosq_test.expect_packet(conn, "subscribe", subscribe_packet):
|
|
conn.send(suback_packet)
|
|
|
|
if mosq_test.expect_packet(conn, "disconnect", disconnect_packet):
|
|
rc = 0
|
|
|
|
conn.close()
|
|
finally:
|
|
client.terminate()
|
|
client.wait()
|
|
sock.close()
|
|
|
|
exit(rc)
|