| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668 |
- # SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
- # SPDX-License-Identifier: Unlicense OR CC0-1.0
- # !/usr/bin/env python3
- import os.path
- import re
- import subprocess
- import threading
- import time
- from typing import Tuple
- import ot_ci_function as ocf
- import pexpect
- import pytest
- from pytest_embedded_idf.dut import IdfDut
- # This file contains the test scripts for Thread:
- # Case 1: Thread network formation and attaching
- # A Thread Border Router forms a Thread network, Thread devices attache to it, then test ping connection between them.
- # Case 2: Bidirectional IPv6 connectivity
- # Test IPv6 ping connection between Thread device and Linux Host (via Thread Border Router).
- # Case 3: Multicast forwarding from Wi-Fi to Thread network
- # Thread device joins the multicast group, then test group communication from Wi-Fi to Thread network.
- # Case 4: Multicast forwarding from Thread to Wi-Fi network
- # Linux Host joins the multicast group, test group communication from Thread to Wi-Fi network.
- # Case 5: discover Serice published by Thread device
- # Thread device publishes the service, Linux Host discovers the service on Wi-Fi network.
- # Case 6: discover Serice published by W-Fi device
- # Linux Host device publishes the service on Wi-Fi network, Thread device discovers the service.
- # Case 7: ICMP communication via NAT64
- # Thread device (IPV6) ping the host device (IPV4) via NAT64.
- # Case 8: UDP communication via NAT64
- # Thread device (IPV6) send udp message to the host device (IPV4) via NAT64.
- # Case 9: TCP communication via NAT64
- # Thread device (IPV6) send tcp message to the host device (IPV4) via NAT64.
- @pytest.fixture(scope='module', name='Init_avahi')
- def fixture_Init_avahi() -> bool:
- print('Init Avahi')
- ocf.start_avahi()
- time.sleep(10)
- return True
- @pytest.fixture(name='Init_interface')
- def fixture_Init_interface() -> bool:
- print('Init interface')
- ocf.init_interface_ipv6_address()
- ocf.reset_host_interface()
- time.sleep(30)
- ocf.set_interface_sysctl_options()
- return True
- default_br_ot_para = ocf.thread_parameter('leader', '', '12', '7766554433221100', True)
- default_br_wifi_para = ocf.wifi_parameter('OTCITE', 'otcitest888', 10)
- default_cli_ot_para = ocf.thread_parameter('router', '', '', '', False)
- # Case 1: Thread network formation and attaching
- @pytest.mark.supported_targets
- @pytest.mark.esp32h2
- @pytest.mark.esp32c6
- @pytest.mark.openthread_br
- @pytest.mark.flaky(reruns=1, reruns_delay=1)
- @pytest.mark.parametrize(
- 'config, count, app_path, target', [
- ('rcp|cli_h2|br', 3,
- f'{os.path.join(os.path.dirname(__file__), "ot_rcp")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_cli")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_br")}',
- 'esp32c6|esp32h2|esp32s3'),
- ],
- indirect=True,
- )
- def test_thread_connect(dut:Tuple[IdfDut, IdfDut, IdfDut]) -> None:
- br = dut[2]
- cli_h2 = dut[1]
- dut[0].serial.stop_redirect_thread()
- cli_list = [cli_h2]
- router_extaddr_list = ['7766554433221101']
- ocf.init_thread(br)
- for cli in cli_list:
- ocf.init_thread(cli)
- br_ot_para = default_br_ot_para
- ocf.joinThreadNetwork(br, br_ot_para)
- cli_ot_para = default_cli_ot_para
- cli_ot_para.dataset = ocf.getDataset(br)
- try:
- order = 0
- for cli in cli_list:
- cli_ot_para.exaddr = router_extaddr_list[order]
- order = order + 1
- ocf.joinThreadNetwork(cli, cli_ot_para)
- for cli in cli_list:
- cli_mleid_addr = ocf.get_mleid_addr(cli)
- br_mleid_addr = ocf.get_mleid_addr(br)
- rx_nums = ocf.ot_ping(cli, br_mleid_addr, 5)[1]
- assert rx_nums == 5
- rx_nums = ocf.ot_ping(br, cli_mleid_addr, 5)[1]
- assert rx_nums == 5
- finally:
- ocf.execute_command(br, 'factoryreset')
- for cli in cli_list:
- ocf.execute_command(cli, 'factoryreset')
- time.sleep(3)
- # Form a Wi-Fi/Thread network with a Wi-Fi host, a border router and a Thread end device
- # Topology:
- # Border_Router
- # / \
- # / \
- # Wi-FI_Host Thread_End_Device
- def formBasicWiFiThreadNetwork(br:IdfDut, cli:IdfDut) -> None:
- ocf.init_thread(br)
- ocf.init_thread(cli)
- ocf.joinWiFiNetwork(br, default_br_wifi_para)
- ocf.joinThreadNetwork(br, default_br_ot_para)
- ot_para = default_cli_ot_para
- ot_para.dataset = ocf.getDataset(br)
- ot_para.exaddr = '7766554433221101'
- ocf.joinThreadNetwork(cli, ot_para)
- ocf.wait(cli,10)
- # Case 2: Bidirectional IPv6 connectivity
- @pytest.mark.supported_targets
- @pytest.mark.esp32h2
- @pytest.mark.esp32c6
- @pytest.mark.openthread_br
- @pytest.mark.flaky(reruns=1, reruns_delay=1)
- @pytest.mark.parametrize(
- 'config, count, app_path, target', [
- ('rcp|cli_h2|br', 3,
- f'{os.path.join(os.path.dirname(__file__), "ot_rcp")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_cli")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_br")}',
- 'esp32c6|esp32h2|esp32s3'),
- ],
- indirect=True,
- )
- def test_Bidirectional_IPv6_connectivity(Init_interface:bool, dut: Tuple[IdfDut, IdfDut, IdfDut]) -> None:
- br = dut[2]
- cli = dut[1]
- assert Init_interface
- dut[0].serial.stop_redirect_thread()
- formBasicWiFiThreadNetwork(br, cli)
- try:
- assert ocf.is_joined_wifi_network(br)
- cli_global_unicast_addr = ocf.get_global_unicast_addr(cli, br)
- print('cli_global_unicast_addr', cli_global_unicast_addr)
- command = 'ping ' + str(cli_global_unicast_addr) + ' -c 10'
- out_str = subprocess.getoutput(command)
- print('ping result:\n', str(out_str))
- role = re.findall(r' (\d+)%', str(out_str))[0]
- assert role != '100'
- interface_name = ocf.get_host_interface_name()
- command = 'ifconfig ' + interface_name + ' | grep inet6 | grep global'
- out_bytes = subprocess.check_output(command, shell=True, timeout=5)
- out_str = out_bytes.decode('utf-8')
- onlinkprefix = ocf.get_onlinkprefix(br)
- host_global_unicast_addr = re.findall(r'\W+(%s(?:\w+:){3}\w+)\W+' % onlinkprefix, str(out_str))
- rx_nums = 0
- for ip_addr in host_global_unicast_addr:
- txrx_nums = ocf.ot_ping(cli, str(ip_addr), 5)
- rx_nums = rx_nums + int(txrx_nums[1])
- assert rx_nums != 0
- finally:
- ocf.execute_command(br, 'factoryreset')
- ocf.execute_command(cli, 'factoryreset')
- time.sleep(3)
- # Case 3: Multicast forwarding from Wi-Fi to Thread network
- @pytest.mark.supported_targets
- @pytest.mark.esp32h2
- @pytest.mark.esp32c6
- @pytest.mark.openthread_br
- @pytest.mark.flaky(reruns=1, reruns_delay=1)
- @pytest.mark.parametrize(
- 'config, count, app_path, target', [
- ('rcp|cli_h2|br', 3,
- f'{os.path.join(os.path.dirname(__file__), "ot_rcp")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_cli")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_br")}',
- 'esp32c6|esp32h2|esp32s3'),
- ],
- indirect=True,
- )
- def test_multicast_forwarding_A(Init_interface:bool, dut: Tuple[IdfDut, IdfDut, IdfDut]) -> None:
- br = dut[2]
- cli = dut[1]
- assert Init_interface
- dut[0].serial.stop_redirect_thread()
- formBasicWiFiThreadNetwork(br, cli)
- try:
- assert ocf.is_joined_wifi_network(br)
- ocf.execute_command(br, 'bbr')
- br.expect('server16', timeout=5)
- assert ocf.thread_is_joined_group(cli)
- interface_name = ocf.get_host_interface_name()
- command = 'ping -I ' + str(interface_name) + ' -t 64 ff04::125 -c 10'
- out_str = subprocess.getoutput(command)
- print('ping result:\n', str(out_str))
- role = re.findall(r' (\d+)%', str(out_str))[0]
- assert role != '100'
- ocf.execute_command(cli, 'udp open')
- cli.expect('Done', timeout=5)
- ocf.execute_command(cli, 'udp bind :: 12350')
- cli.expect('Done', timeout=5)
- ocf.clean_buffer(cli)
- target_udp = ocf.udp_parameter('INET6', 'ff04::125', 12350, '', False, 15.0, b'hello')
- ocf.host_udp_send_message(target_udp)
- cli.expect('hello', timeout=5)
- ocf.execute_command(cli, 'udp close')
- cli.expect('Done', timeout=5)
- finally:
- ocf.execute_command(br, 'factoryreset')
- ocf.execute_command(cli, 'factoryreset')
- time.sleep(3)
- # Case 4: Multicast forwarding from Thread to Wi-Fi network
- @pytest.mark.supported_targets
- @pytest.mark.esp32h2
- @pytest.mark.esp32c6
- @pytest.mark.openthread_br
- @pytest.mark.flaky(reruns=1, reruns_delay=1)
- @pytest.mark.parametrize(
- 'config, count, app_path, target', [
- ('rcp|cli_h2|br', 3,
- f'{os.path.join(os.path.dirname(__file__), "ot_rcp")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_cli")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_br")}',
- 'esp32c6|esp32h2|esp32s3'),
- ],
- indirect=True,
- )
- def test_multicast_forwarding_B(Init_interface:bool, dut: Tuple[IdfDut, IdfDut, IdfDut]) -> None:
- br = dut[2]
- cli = dut[1]
- assert Init_interface
- dut[0].serial.stop_redirect_thread()
- formBasicWiFiThreadNetwork(br, cli)
- try:
- assert ocf.is_joined_wifi_network(br)
- ocf.execute_command(br, 'bbr')
- br.expect('server16', timeout=5)
- ocf.execute_command(cli, 'udp open')
- cli.expect('Done', timeout=5)
- ocf.wait(cli, 3)
- myudp = ocf.udp_parameter('INET6', '::', 5090, 'ff04::125', False, 15.0, b'')
- udp_mission = threading.Thread(target=ocf.create_host_udp_server, args=(myudp, ))
- udp_mission.start()
- start_time = time.time()
- while not myudp.init_flag:
- if (time.time() - start_time) > 10:
- assert False
- for num in range(0, 3):
- command = 'udp send ff04::125 5090 hello' + str(num)
- ocf.execute_command(cli, command)
- cli.expect('Done', timeout=5)
- ocf.wait(cli, 0.5)
- while udp_mission.is_alive():
- time.sleep(1)
- finally:
- ocf.execute_command(br, 'factoryreset')
- ocf.execute_command(cli, 'factoryreset')
- time.sleep(3)
- assert b'hello' in myudp.udp_bytes
- # Case 5: discover dervice published by Thread device
- @pytest.mark.supported_targets
- @pytest.mark.esp32h2
- @pytest.mark.esp32c6
- @pytest.mark.openthread_br
- @pytest.mark.flaky(reruns=1, reruns_delay=1)
- @pytest.mark.parametrize(
- 'config, count, app_path, target', [
- ('rcp|cli_h2|br', 3,
- f'{os.path.join(os.path.dirname(__file__), "ot_rcp")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_cli")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_br")}',
- 'esp32c6|esp32h2|esp32s3'),
- ],
- indirect=True,
- )
- def test_service_discovery_of_Thread_device(Init_interface:bool, Init_avahi:bool, dut: Tuple[IdfDut, IdfDut, IdfDut]) -> None:
- br = dut[2]
- cli = dut[1]
- assert Init_interface
- assert Init_avahi
- dut[0].serial.stop_redirect_thread()
- formBasicWiFiThreadNetwork(br, cli)
- try:
- assert ocf.is_joined_wifi_network(br)
- command = 'avahi-browse -rt _testyyy._udp'
- out_str = subprocess.getoutput(command)
- print('avahi-browse:\n', str(out_str))
- assert 'myTest' not in str(out_str)
- hostname = 'myTest'
- command = 'srp client host name ' + hostname
- ocf.execute_command(cli, command)
- cli.expect('Done', timeout=5)
- cli_global_unicast_addr = ocf.get_global_unicast_addr(cli, br)
- print('cli_global_unicast_addr', cli_global_unicast_addr)
- command = 'srp client host address ' + str(cli_global_unicast_addr)
- ocf.execute_command(cli, command)
- cli.expect('Done', timeout=5)
- port = '12348'
- command = 'srp client service add my-service _testyyy._udp ' + port
- ocf.execute_command(cli, command)
- cli.expect('Done', timeout=5)
- ocf.execute_command(cli, 'srp client autostart enable')
- cli.expect('Done', timeout=5)
- ocf.wait(cli, 3)
- command = 'avahi-browse -rt _testyyy._udp'
- out_str = subprocess.getoutput(command)
- print('avahi-browse:\n', str(out_str))
- assert 'myTest' in str(out_str)
- finally:
- ocf.execute_command(br, 'factoryreset')
- ocf.execute_command(cli, 'factoryreset')
- time.sleep(3)
- # Case 6: discover dervice published by Wi-Fi device
- @pytest.mark.supported_targets
- @pytest.mark.esp32h2
- @pytest.mark.esp32c6
- @pytest.mark.openthread_br
- @pytest.mark.flaky(reruns=1, reruns_delay=1)
- @pytest.mark.parametrize(
- 'config, count, app_path, target', [
- ('rcp|cli_h2|br', 3,
- f'{os.path.join(os.path.dirname(__file__), "ot_rcp")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_cli")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_br")}',
- 'esp32c6|esp32h2|esp32s3'),
- ],
- indirect=True,
- )
- def test_service_discovery_of_WiFi_device(Init_interface:bool, Init_avahi:bool, dut: Tuple[IdfDut, IdfDut, IdfDut]) -> None:
- br = dut[2]
- cli = dut[1]
- assert Init_interface
- assert Init_avahi
- dut[0].serial.stop_redirect_thread()
- formBasicWiFiThreadNetwork(br, cli)
- try:
- assert ocf.is_joined_wifi_network(br)
- br_global_unicast_addr = ocf.get_global_unicast_addr(br, br)
- command = 'dns config ' + br_global_unicast_addr
- ocf.execute_command(cli, command)
- cli.expect('Done', timeout=5)
- ocf.wait(cli, 1)
- domain_name = ocf.get_domain()
- print('domain name is: ', domain_name)
- command = 'dns resolve ' + domain_name + '.default.service.arpa.'
- ocf.execute_command(cli, command)
- cli.expect('TTL', timeout=10)
- cli.expect('Done', timeout=10)
- command = 'dns browse _testxxx._udp.default.service.arpa'
- tmp = ocf.get_ouput_string(cli, command, 5)
- assert 'Port:12347' not in str(tmp)
- ocf.host_publish_service()
- ocf.wait(cli, 5)
- command = 'dns browse _testxxx._udp.default.service.arpa'
- tmp = ocf.get_ouput_string(cli, command, 5)
- assert 'response for _testxxx' in str(tmp)
- assert 'Port:12347' in str(tmp)
- command = 'dns browse _testxxx._udp.default.service.arpa'
- tmp = ocf.get_ouput_string(cli, command, 5)
- ocf.execute_command(cli, 'dns service testxxx _testxxx._udp.default.service.arpa.')
- tmp = cli.expect(pexpect.TIMEOUT, timeout=5)
- assert 'response for testxxx' in str(tmp)
- assert 'Port:12347' in str(tmp)
- finally:
- ocf.host_close_service()
- ocf.execute_command(br, 'factoryreset')
- ocf.execute_command(cli, 'factoryreset')
- time.sleep(3)
- # Case 7: ICMP communication via NAT64
- @pytest.mark.supported_targets
- @pytest.mark.esp32h2
- @pytest.mark.esp32c6
- @pytest.mark.openthread_br
- @pytest.mark.flaky(reruns=1, reruns_delay=1)
- @pytest.mark.parametrize(
- 'config, count, app_path, target', [
- ('rcp|cli_h2|br', 3,
- f'{os.path.join(os.path.dirname(__file__), "ot_rcp")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_cli")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_br")}',
- 'esp32c6|esp32h2|esp32s3'),
- ],
- indirect=True,
- )
- def test_ICMP_NAT64(Init_interface:bool, dut: Tuple[IdfDut, IdfDut, IdfDut]) -> None:
- br = dut[2]
- cli = dut[1]
- assert Init_interface
- dut[0].serial.stop_redirect_thread()
- formBasicWiFiThreadNetwork(br, cli)
- try:
- assert ocf.is_joined_wifi_network(br)
- host_ipv4_address = ocf.get_host_ipv4_address()
- print('host_ipv4_address: ', host_ipv4_address)
- rx_nums = ocf.ot_ping(cli, str(host_ipv4_address), 5)[1]
- assert rx_nums != 0
- finally:
- ocf.execute_command(br, 'factoryreset')
- ocf.execute_command(cli, 'factoryreset')
- time.sleep(3)
- # Case 8: UDP communication via NAT64
- @pytest.mark.supported_targets
- @pytest.mark.esp32h2
- @pytest.mark.esp32c6
- @pytest.mark.openthread_br
- @pytest.mark.flaky(reruns=1, reruns_delay=1)
- @pytest.mark.parametrize(
- 'config, count, app_path, target', [
- ('rcp|cli_h2|br', 3,
- f'{os.path.join(os.path.dirname(__file__), "ot_rcp")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_cli")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_br")}',
- 'esp32c6|esp32h2|esp32s3'),
- ],
- indirect=True,
- )
- def test_UDP_NAT64(Init_interface:bool, dut: Tuple[IdfDut, IdfDut, IdfDut]) -> None:
- br = dut[2]
- cli = dut[1]
- assert Init_interface
- dut[0].serial.stop_redirect_thread()
- formBasicWiFiThreadNetwork(br, cli)
- try:
- assert ocf.is_joined_wifi_network(br)
- ocf.execute_command(br, 'bbr')
- br.expect('server16', timeout=5)
- ocf.execute_command(cli, 'udp open')
- cli.expect('Done', timeout=5)
- ocf.wait(cli, 3)
- host_ipv4_address = ocf.get_host_ipv4_address()
- print('host_ipv4_address: ', host_ipv4_address)
- myudp = ocf.udp_parameter('INET4', host_ipv4_address, 5090, '', False, 15.0, b'')
- udp_mission = threading.Thread(target=ocf.create_host_udp_server, args=(myudp, ))
- udp_mission.start()
- start_time = time.time()
- while not myudp.init_flag:
- if (time.time() - start_time) > 10:
- assert False
- for num in range(0, 3):
- command = 'udp send ' + host_ipv4_address + ' 5090 hello' + str(num)
- ocf.execute_command(cli, command)
- cli.expect('Done', timeout=5)
- ocf.wait(cli, 0.5)
- while udp_mission.is_alive():
- time.sleep(1)
- finally:
- ocf.execute_command(br, 'factoryreset')
- ocf.execute_command(cli, 'factoryreset')
- time.sleep(3)
- assert b'hello' in myudp.udp_bytes
- # Case 9: TCP communication via NAT64
- @pytest.mark.supported_targets
- @pytest.mark.esp32h2
- @pytest.mark.esp32c6
- @pytest.mark.openthread_br
- @pytest.mark.flaky(reruns=1, reruns_delay=1)
- @pytest.mark.parametrize(
- 'config, count, app_path, target', [
- ('rcp|cli_h2|br', 3,
- f'{os.path.join(os.path.dirname(__file__), "ot_rcp")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_cli")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_br")}',
- 'esp32c6|esp32h2|esp32s3'),
- ],
- indirect=True,
- )
- def test_TCP_NAT64(Init_interface:bool, dut: Tuple[IdfDut, IdfDut, IdfDut]) -> None:
- br = dut[2]
- cli = dut[1]
- assert Init_interface
- dut[0].serial.stop_redirect_thread()
- formBasicWiFiThreadNetwork(br, cli)
- try:
- assert ocf.is_joined_wifi_network(br)
- ocf.execute_command(br, 'bbr')
- br.expect('server16', timeout=5)
- ocf.execute_command(cli, 'tcpsockclient open')
- cli.expect('Done', timeout=5)
- ocf.wait(cli, 3)
- host_ipv4_address = ocf.get_host_ipv4_address()
- connect_address = ocf.get_ipv6_from_ipv4(host_ipv4_address, br)
- print('connect_address is: ', connect_address)
- mytcp = ocf.tcp_parameter('INET4', host_ipv4_address, 12345, False, False, 15.0, b'')
- tcp_mission = threading.Thread(target=ocf.create_host_tcp_server, args=(mytcp, ))
- tcp_mission.start()
- start_time = time.time()
- while not mytcp.listen_flag:
- if (time.time() - start_time) > 10:
- assert False
- command = 'tcpsockclient connect ' + connect_address + ' 12345'
- ocf.execute_command(cli, command)
- cli.expect('Successfully connected', timeout=10)
- start_time = time.time()
- while not mytcp.recv_flag:
- if (time.time() - start_time) > 10:
- assert False
- command = 'tcpsockclient send hello'
- ocf.execute_command(cli, command)
- cli.expect('Done', timeout=5)
- while tcp_mission.is_alive():
- time.sleep(1)
- finally:
- ocf.execute_command(br, 'factoryreset')
- ocf.execute_command(cli, 'factoryreset')
- time.sleep(3)
- assert b'hello' in mytcp.tcp_bytes
- # Case 10: Sleepy device test
- @pytest.mark.esp32h2
- @pytest.mark.esp32c6
- @pytest.mark.openthread_sleep
- @pytest.mark.parametrize(
- 'config, count, app_path, target', [
- ('cli_c6|sleepy_h2', 2,
- f'{os.path.join(os.path.dirname(__file__), "ot_cli")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_sleepy_device")}',
- 'esp32c6|esp32h2'),
- ],
- indirect=True,
- )
- def test_ot_sleepy_device(dut: Tuple[IdfDut, IdfDut]) -> None:
- leader = dut[0]
- sleepy_device = dut[1]
- try:
- ocf.init_thread(leader)
- time.sleep(3)
- leader_para = ocf.thread_parameter('leader', '', '12', '7766554433221100', False)
- leader_para.setnetworkname('OpenThread-ESP')
- leader_para.setpanid('0x1234')
- leader_para.setextpanid('dead00beef00cafe')
- leader_para.setnetworkkey('aabbccddeeff00112233445566778899')
- leader_para.setpskc('104810e2315100afd6bc9215a6bfac53')
- ocf.joinThreadNetwork(leader, leader_para)
- ocf.wait(leader, 5)
- ocf.clean_buffer(sleepy_device)
- sleepy_device.serial.hard_reset()
- sleepy_device.expect('detached -> child', timeout=20)
- sleepy_device.expect('PMU_SLEEP_PD_TOP: True', timeout=10)
- sleepy_device.expect('PMU_SLEEP_PD_MODEM: True', timeout=20)
- output = sleepy_device.expect(pexpect.TIMEOUT, timeout=5)
- assert 'rst:' not in str(output) and 'boot:' not in str(output)
- finally:
- ocf.execute_command(leader, 'factoryreset')
- time.sleep(3)
- # Case 11: Basic startup Test of BR
- @pytest.mark.supported_targets
- @pytest.mark.esp32h2
- @pytest.mark.esp32c6
- @pytest.mark.openthread_br
- @pytest.mark.flaky(reruns=1, reruns_delay=1)
- @pytest.mark.parametrize(
- 'config, count, app_path, target', [
- ('rcp|br', 2,
- f'{os.path.join(os.path.dirname(__file__), "ot_rcp")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_br")}',
- 'esp32c6|esp32s3'),
- ],
- indirect=True,
- )
- def test_basic_startup(dut: Tuple[IdfDut, IdfDut]) -> None:
- br = dut[1]
- dut[0].serial.stop_redirect_thread()
- try:
- ocf.init_thread(br)
- time.sleep(3)
- ocf.clean_buffer(br)
- ocf.execute_command(br, 'ifconfig up')
- br.expect('Done', timeout=5)
- ocf.execute_command(br, 'thread start')
- br.expect('Done', timeout=5)
- assert ocf.wait_for_join(br, 'leader')
- ocf.reset_thread(br)
- ocf.joinWiFiNetwork(br, default_br_wifi_para)
- ocf.execute_command(br, 'ifconfig up')
- br.expect('Done', timeout=5)
- ocf.execute_command(br, 'thread start')
- br.expect('Done', timeout=5)
- assert ocf.wait_for_join(br, 'leader')
- finally:
- ocf.execute_command(br, 'factoryreset')
- time.sleep(3)
- # Case 12: Curl a website via DNS and NAT64
- @pytest.mark.supported_targets
- @pytest.mark.esp32h2
- @pytest.mark.esp32c6
- @pytest.mark.openthread_bbr
- @pytest.mark.flaky(reruns=1, reruns_delay=1)
- @pytest.mark.parametrize(
- 'config, count, app_path, target', [
- ('rcp|cli_h2|br', 3,
- f'{os.path.join(os.path.dirname(__file__), "ot_rcp")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_cli")}'
- f'|{os.path.join(os.path.dirname(__file__), "ot_br")}',
- 'esp32c6|esp32h2|esp32s3'),
- ],
- indirect=True,
- )
- def test_NAT64_DNS(Init_interface:bool, dut: Tuple[IdfDut, IdfDut, IdfDut]) -> None:
- br = dut[2]
- cli = dut[1]
- assert Init_interface
- dut[0].serial.stop_redirect_thread()
- formBasicWiFiThreadNetwork(br, cli)
- try:
- ocf.execute_command(br, 'bbr')
- br.expect('server16', timeout=5)
- ocf.execute_command(cli, 'dns64server 8.8.8.8')
- cli.expect('Done', timeout=5)
- command = 'curl http://www.espressif.com'
- message = ocf.get_ouput_string(cli, command, 10)
- assert '<html>' in str(message)
- assert '301 Moved Permanently' in str(message)
- finally:
- ocf.execute_command(br, 'factoryreset')
- ocf.execute_command(cli, 'factoryreset')
- time.sleep(3)
|