Files
mosquitto/test/lib/01-unpwd-set.py
Roger A. Light 343a984083 Big rejig of library tests
Includes full consistency between C/C++ library tests
2023-01-02 11:45:09 +00:00

18 lines
614 B
Python
Executable File

#!/usr/bin/env python3
# Test whether a client produces a correct connect with a username and password.
# The client should connect to port 1888 with keepalive=60, clean session set,
# client id 01-unpwd-set, username set to uname and password set to ;'[08gn=#
from mosq_test_helper import *
def do_test(conn, data):
connect_packet = mosq_test.gen_connect("01-unpwd-set", username="uname", password=";'[08gn=#")
mosq_test.expect_packet(conn, "connect", connect_packet)
mosq_test.client_test("c/01-unpwd-set.test", [], do_test, None)
mosq_test.client_test("cpp/01-unpwd-set.test", [], do_test, None)