2022-11-07 10:46:46 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
2025-02-24 10:18:03 +08:00
|
|
|
# SPDX-FileCopyrightText: 2022-2025 Espressif Systems (Shanghai) CO LTD
|
2022-11-07 10:46:46 +04:00
|
|
|
# SPDX-License-Identifier: Unlicense OR CC0-1.0
|
|
|
|
import logging
|
2018-07-24 16:59:03 +02:00
|
|
|
import os
|
2021-01-26 10:49:01 +08:00
|
|
|
import re
|
2018-07-24 16:59:03 +02:00
|
|
|
import ssl
|
2021-01-26 10:49:01 +08:00
|
|
|
import sys
|
2025-02-24 10:18:03 +08:00
|
|
|
from threading import Event
|
|
|
|
from threading import Thread
|
2018-12-07 15:15:34 +01:00
|
|
|
|
2021-01-26 10:49:01 +08:00
|
|
|
import paho.mqtt.client as mqtt
|
2022-11-07 10:46:46 +04:00
|
|
|
import pexpect
|
|
|
|
import pytest
|
2025-09-25 15:49:41 +02:00
|
|
|
from pytest_embedded import Dut # noqa: F401
|
2025-02-24 10:18:03 +08:00
|
|
|
from pytest_embedded_idf.utils import idf_parametrize
|
2018-12-04 08:32:48 +01:00
|
|
|
|
2018-12-07 15:15:34 +01:00
|
|
|
event_client_connected = Event()
|
|
|
|
event_stop_client = Event()
|
|
|
|
event_client_received_correct = Event()
|
2025-10-01 10:21:02 +02:00
|
|
|
message_log = ""
|
2018-12-04 08:32:48 +01:00
|
|
|
|
2018-07-24 16:59:03 +02:00
|
|
|
|
|
|
|
# The callback for when the client receives a CONNACK response from the server.
|
2022-11-07 10:46:46 +04:00
|
|
|
def on_connect(client, userdata, flags, rc): # type: (mqtt.Client, tuple, bool, str) -> None
|
|
|
|
_ = (userdata, flags)
|
2025-10-01 10:21:02 +02:00
|
|
|
print("Connected with result code " + str(rc))
|
2018-12-07 15:15:34 +01:00
|
|
|
event_client_connected.set()
|
2025-10-01 10:21:02 +02:00
|
|
|
client.subscribe("/topic/qos0")
|
2018-07-24 16:59:03 +02:00
|
|
|
|
2018-12-04 08:32:48 +01:00
|
|
|
|
2022-11-07 10:46:46 +04:00
|
|
|
def mqtt_client_task(client): # type: (mqtt.Client) -> None
|
2018-12-07 15:15:34 +01:00
|
|
|
while not event_stop_client.is_set():
|
|
|
|
client.loop()
|
|
|
|
|
|
|
|
|
2018-07-24 16:59:03 +02:00
|
|
|
# The callback for when a PUBLISH message is received from the server.
|
2022-11-07 10:46:46 +04:00
|
|
|
def on_message(client, userdata, msg): # type: (mqtt.Client, tuple, mqtt.client.MQTTMessage) -> None
|
|
|
|
_ = userdata
|
2018-12-07 15:15:34 +01:00
|
|
|
global message_log
|
2018-09-27 11:46:13 +02:00
|
|
|
payload = msg.payload.decode()
|
2025-10-01 10:21:02 +02:00
|
|
|
if not event_client_received_correct.is_set() and payload == "data":
|
|
|
|
client.publish("/topic/qos0", "data_to_esp32")
|
|
|
|
if msg.topic == "/topic/qos0" and payload == "data":
|
2018-12-07 15:15:34 +01:00
|
|
|
event_client_received_correct.set()
|
2025-10-01 10:21:02 +02:00
|
|
|
message_log += "Received data:" + msg.topic + " " + payload + "\n"
|
2018-07-24 16:59:03 +02:00
|
|
|
|
|
|
|
|
2025-10-01 10:21:02 +02:00
|
|
|
@pytest.mark.eth_ip101
|
|
|
|
@idf_parametrize("target", ["esp32"], indirect=["target"])
|
2025-09-25 15:49:41 +02:00
|
|
|
def test_examples_protocol_mqtt_wss(dut): # type: (Dut) -> None # type: ignore
|
2025-10-01 10:21:02 +02:00
|
|
|
broker_url = ""
|
2018-12-07 15:15:34 +01:00
|
|
|
broker_port = 0
|
2018-07-24 16:59:03 +02:00
|
|
|
"""
|
|
|
|
steps: |
|
|
|
|
1. join AP and connects to wss broker
|
|
|
|
2. Test connects a client to the same broker
|
|
|
|
3. Test evaluates it received correct qos0 message
|
|
|
|
4. Test ESP32 client received correct qos0 message
|
|
|
|
"""
|
|
|
|
# check and log bin size
|
2025-10-01 10:21:02 +02:00
|
|
|
binary_file = os.path.join(dut.app.binary_path, "mqtt_websocket_secure.bin")
|
2018-07-24 16:59:03 +02:00
|
|
|
bin_size = os.path.getsize(binary_file)
|
2025-10-01 10:21:02 +02:00
|
|
|
logging.info("[Performance][mqtt_websocket_secure_bin_size]: %s KB", bin_size // 1024)
|
2018-12-07 15:15:34 +01:00
|
|
|
# Look for host:port in sdkconfig
|
|
|
|
try:
|
2025-10-01 10:21:02 +02:00
|
|
|
value = re.search(r"\:\/\/([^:]+)\:([0-9]+)", dut.app.sdkconfig.get("BROKER_URI"))
|
2022-11-07 10:46:46 +04:00
|
|
|
assert value is not None
|
2018-12-07 15:15:34 +01:00
|
|
|
broker_url = value.group(1)
|
|
|
|
broker_port = int(value.group(2))
|
|
|
|
except Exception:
|
2025-10-01 10:21:02 +02:00
|
|
|
print("ENV_TEST_FAILURE: Cannot find broker url in sdkconfig")
|
2018-12-07 15:15:34 +01:00
|
|
|
raise
|
2018-09-27 11:46:13 +02:00
|
|
|
client = None
|
2018-12-07 15:15:34 +01:00
|
|
|
# 1. Test connects to a broker
|
2018-09-27 11:46:13 +02:00
|
|
|
try:
|
2025-10-01 10:21:02 +02:00
|
|
|
client = mqtt.Client(transport="websockets")
|
2018-07-24 16:59:03 +02:00
|
|
|
client.on_connect = on_connect
|
|
|
|
client.on_message = on_message
|
2025-02-24 10:18:03 +08:00
|
|
|
client.tls_set(None, None, None, cert_reqs=ssl.CERT_NONE, tls_version=ssl.PROTOCOL_TLSv1_2, ciphers=None)
|
2025-10-01 10:21:02 +02:00
|
|
|
print("Connecting...")
|
2018-12-07 15:15:34 +01:00
|
|
|
client.connect(broker_url, broker_port, 60)
|
2018-12-04 08:32:48 +01:00
|
|
|
except Exception:
|
2025-02-24 10:18:03 +08:00
|
|
|
print(
|
2025-10-01 10:21:02 +02:00
|
|
|
"ENV_TEST_FAILURE: Unexpected error while connecting to broker {}: {}:".format(
|
2025-02-24 10:18:03 +08:00
|
|
|
broker_url, sys.exc_info()[0]
|
|
|
|
)
|
|
|
|
)
|
2018-09-27 11:46:13 +02:00
|
|
|
raise
|
2018-12-07 15:15:34 +01:00
|
|
|
# Starting a py-client in a separate thread
|
|
|
|
thread1 = Thread(target=mqtt_client_task, args=(client,))
|
|
|
|
thread1.start()
|
|
|
|
try:
|
2025-10-01 10:21:02 +02:00
|
|
|
print("Connecting py-client to broker {}:{}...".format(broker_url, broker_port))
|
2018-12-07 15:15:34 +01:00
|
|
|
if not event_client_connected.wait(timeout=30):
|
2025-10-01 10:21:02 +02:00
|
|
|
raise ValueError("ENV_TEST_FAILURE: Test script cannot connect to broker: {}".format(broker_url))
|
2018-12-07 15:15:34 +01:00
|
|
|
try:
|
2025-10-01 10:21:02 +02:00
|
|
|
ip_address = dut.expect(r"IPv4 address: (\d+\.\d+\.\d+\.\d+)[^\d]", timeout=30)[0]
|
|
|
|
print("Connected to AP with IP: {}".format(ip_address))
|
2022-11-07 10:46:46 +04:00
|
|
|
except pexpect.TIMEOUT:
|
2025-10-01 10:21:02 +02:00
|
|
|
print("ENV_TEST_FAILURE: Cannot connect to AP")
|
2018-12-07 15:15:34 +01:00
|
|
|
raise
|
2025-10-01 10:21:02 +02:00
|
|
|
print("Checking py-client received msg published from esp...")
|
2018-12-07 15:15:34 +01:00
|
|
|
if not event_client_received_correct.wait(timeout=30):
|
2025-10-01 10:21:02 +02:00
|
|
|
raise ValueError("Wrong data received, msg log: {}".format(message_log))
|
|
|
|
print("Checking esp-client received msg published from py-client...")
|
|
|
|
dut.expect(r"DATA=data_to_esp32", timeout=30)
|
2018-12-07 15:15:34 +01:00
|
|
|
finally:
|
|
|
|
event_stop_client.set()
|
|
|
|
thread1.join()
|