2022-11-07 01:46:46 -05:00
|
|
|
# SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
# SPDX-License-Identifier: Unlicense OR CC0-1.0
|
|
|
|
import logging
|
2018-07-24 10:59:03 -04:00
|
|
|
import os
|
2018-12-04 02:32:48 -05:00
|
|
|
import socket
|
2018-09-27 05:46:13 -04:00
|
|
|
import struct
|
2021-01-25 21:49:01 -05:00
|
|
|
import sys
|
2018-07-24 10:59:03 -04:00
|
|
|
import time
|
2021-01-25 21:49:01 -05:00
|
|
|
from threading import Thread
|
2018-07-24 10:59:03 -04:00
|
|
|
|
2022-11-07 01:46:46 -05:00
|
|
|
import pexpect
|
|
|
|
import pytest
|
2022-07-06 12:34:06 -04:00
|
|
|
from common_test_methods import get_host_ip4_by_dest_ip
|
2022-11-07 01:46:46 -05:00
|
|
|
from pytest_embedded import Dut
|
2018-12-04 02:32:48 -05:00
|
|
|
|
|
|
|
msgid = -1
|
|
|
|
|
2018-07-24 10:59:03 -04:00
|
|
|
|
2022-11-07 01:46:46 -05:00
|
|
|
def mqqt_server_sketch(my_ip, port): # type: (str, str) -> None
|
2018-07-24 10:59:03 -04:00
|
|
|
global msgid
|
2021-01-25 21:49:01 -05:00
|
|
|
print('Starting the server on {}'.format(my_ip))
|
2018-09-27 05:46:13 -04:00
|
|
|
s = None
|
|
|
|
try:
|
2018-12-04 02:32:48 -05:00
|
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
2018-09-27 05:46:13 -04:00
|
|
|
s.settimeout(60)
|
|
|
|
s.bind((my_ip, port))
|
|
|
|
s.listen(1)
|
2018-12-04 02:32:48 -05:00
|
|
|
q,addr = s.accept()
|
2018-09-27 05:46:13 -04:00
|
|
|
q.settimeout(30)
|
2021-01-25 21:49:01 -05:00
|
|
|
print('connection accepted')
|
2018-12-04 02:32:48 -05:00
|
|
|
except Exception:
|
2021-01-25 21:49:01 -05:00
|
|
|
print('Local server on {}:{} listening/accepting failure: {}'
|
|
|
|
'Possibly check permissions or firewall settings'
|
|
|
|
'to accept connections on this address'.format(my_ip, port, sys.exc_info()[0]))
|
2018-09-27 05:46:13 -04:00
|
|
|
raise
|
2018-07-24 10:59:03 -04:00
|
|
|
data = q.recv(1024)
|
|
|
|
# check if received initial empty message
|
2022-11-07 01:46:46 -05:00
|
|
|
print('received from client {!r}'.format(data))
|
2018-07-24 10:59:03 -04:00
|
|
|
data = bytearray([0x20, 0x02, 0x00, 0x00])
|
|
|
|
q.send(data)
|
|
|
|
# try to receive qos1
|
|
|
|
data = q.recv(1024)
|
2021-01-25 21:49:01 -05:00
|
|
|
msgid = struct.unpack('>H', data[15:17])[0]
|
2022-11-07 01:46:46 -05:00
|
|
|
print('received from client {!r}, msgid: {}'.format(data, msgid))
|
2018-07-24 10:59:03 -04:00
|
|
|
data = bytearray([0x40, 0x02, data[15], data[16]])
|
|
|
|
q.send(data)
|
|
|
|
time.sleep(5)
|
|
|
|
s.close()
|
2021-01-25 21:49:01 -05:00
|
|
|
print('server closed')
|
2018-07-24 10:59:03 -04:00
|
|
|
|
|
|
|
|
2022-11-07 01:46:46 -05:00
|
|
|
@pytest.mark.esp32
|
|
|
|
@pytest.mark.ethernet
|
|
|
|
def test_examples_protocol_mqtt_qos1(dut: Dut) -> None:
|
2018-07-24 10:59:03 -04:00
|
|
|
global msgid
|
|
|
|
"""
|
|
|
|
steps: (QoS1: Happy flow)
|
|
|
|
1. start the broker broker (with correctly sending ACK)
|
|
|
|
2. DUT client connects to a broker and publishes qos1 message
|
|
|
|
3. Test evaluates that qos1 message is queued and removed from queued after ACK received
|
|
|
|
4. Test the broker received the same message id evaluated in step 3
|
|
|
|
"""
|
|
|
|
# check and log bin size
|
2022-11-07 01:46:46 -05:00
|
|
|
binary_file = os.path.join(dut.app.binary_path, 'mqtt_tcp.bin')
|
2018-07-24 10:59:03 -04:00
|
|
|
bin_size = os.path.getsize(binary_file)
|
2022-11-07 01:46:46 -05:00
|
|
|
logging.info('[Performance][mqtt_tcp_bin_size]: %s KB', bin_size // 1024)
|
2018-07-24 10:59:03 -04:00
|
|
|
# waiting for getting the IP address
|
2018-09-27 05:46:13 -04:00
|
|
|
try:
|
2022-11-07 01:46:46 -05:00
|
|
|
ip_address = dut.expect(r'IPv4 address: (\d+\.\d+\.\d+\.\d+)', timeout=30).group(1).decode()
|
2022-07-03 07:44:00 -04:00
|
|
|
print('Connected to AP/Ethernet with IP: {}'.format(ip_address))
|
2022-11-07 01:46:46 -05:00
|
|
|
except pexpect.TIMEOUT:
|
2022-07-03 07:44:00 -04:00
|
|
|
raise ValueError('ENV_TEST_FAILURE: Cannot connect to AP/Ethernet')
|
2018-09-27 05:46:13 -04:00
|
|
|
|
2022-07-03 04:22:20 -04:00
|
|
|
# 2. start mqtt broker sketch
|
2022-07-06 12:34:06 -04:00
|
|
|
host_ip = get_host_ip4_by_dest_ip(ip_address)
|
2022-07-03 04:22:20 -04:00
|
|
|
thread1 = Thread(target=mqqt_server_sketch, args=(host_ip,1883))
|
|
|
|
thread1.start()
|
|
|
|
|
2022-11-07 01:46:46 -05:00
|
|
|
data_write = 'mqtt://' + host_ip
|
|
|
|
print('writing to device: {}'.format(data_write))
|
|
|
|
dut.write(data_write)
|
2018-07-24 10:59:03 -04:00
|
|
|
thread1.join()
|
2021-01-25 21:49:01 -05:00
|
|
|
print('Message id received from server: {}'.format(msgid))
|
2018-07-24 10:59:03 -04:00
|
|
|
# 3. check the message id was enqueued and then deleted
|
2022-11-07 01:46:46 -05:00
|
|
|
msgid_enqueued = dut.expect(b'outbox: ENQUEUE msgid=([0-9]+)', timeout=30).group(1).decode()
|
|
|
|
msgid_deleted = dut.expect(b'outbox: DELETED msgid=([0-9]+)', timeout=30).group(1).decode()
|
2018-07-24 10:59:03 -04:00
|
|
|
# 4. check the msgid of received data are the same as that of enqueued and deleted from outbox
|
2022-11-07 01:46:46 -05:00
|
|
|
if (msgid_enqueued == str(msgid) and msgid_deleted == str(msgid)):
|
2021-01-25 21:49:01 -05:00
|
|
|
print('PASS: Received correct msg id')
|
2018-07-24 10:59:03 -04:00
|
|
|
else:
|
2021-01-25 21:49:01 -05:00
|
|
|
print('Failure!')
|
2018-07-24 10:59:03 -04:00
|
|
|
raise ValueError('Mismatch of msgid: received: {}, enqueued {}, deleted {}'.format(msgid, msgid_enqueued, msgid_deleted))
|