| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| LowPower/ | 03-May-2024 | - | 116 | 18 | ||
| MATN/ | 03-May-2024 | - | 1,838 | 953 | ||
| nat64/ | 03-May-2024 | - | 300 | 138 | ||
| README.md | D | 03-May-2024 | 853 | 26 | 17 | |
| test_advertising_proxy.py | D | 03-May-2024 | 13 KiB | 328 | 185 | |
| test_border_router_as_fed.py | D | 03-May-2024 | 3.3 KiB | 102 | 46 | |
| test_dnssd_instance_name_with_space.py | D | 03-May-2024 | 8.2 KiB | 222 | 135 | |
| test_dnssd_server.py | D | 03-May-2024 | 14.1 KiB | 355 | 243 | |
| test_dnssd_server_multi_border_routers.py | D | 03-May-2024 | 14.4 KiB | 380 | 260 | |
| test_end_device_udp_reachability.py | D | 03-May-2024 | 4.8 KiB | 153 | 83 | |
| test_external_route.py | D | 03-May-2024 | 5.9 KiB | 169 | 100 | |
| test_firewall.py | D | 03-May-2024 | 12.2 KiB | 271 | 161 | |
| test_manual_address.py | D | 03-May-2024 | 3.2 KiB | 102 | 42 | |
| test_manual_maddress.py | D | 03-May-2024 | 4.1 KiB | 119 | 56 | |
| test_manual_omr_prefix.py | D | 03-May-2024 | 5.9 KiB | 148 | 77 | |
| test_mdns_restart.py | D | 03-May-2024 | 5.8 KiB | 169 | 101 | |
| test_multi_border_routers.py | D | 03-May-2024 | 9 KiB | 225 | 131 | |
| test_multi_thread_networks.py | D | 03-May-2024 | 5.3 KiB | 154 | 85 | |
| test_on_link_prefix.py | D | 03-May-2024 | 8.5 KiB | 217 | 131 | |
| test_plat_udp_accessiblity.py | D | 03-May-2024 | 5.1 KiB | 146 | 72 | |
| test_publish_meshcop_service.py | D | 03-May-2024 | 6.6 KiB | 176 | 112 | |
| test_radvd_coexist.py | D | 03-May-2024 | 7.2 KiB | 190 | 105 | |
| test_rcp_radio_version.py | D | 03-May-2024 | 2.5 KiB | 71 | 24 | |
| test_single_border_router.py | D | 03-May-2024 | 14.6 KiB | 352 | 196 | |
| test_srp_register_500_services_br.py | D | 03-May-2024 | 3 KiB | 82 | 30 | |
| test_trel_connectivity.py | D | 03-May-2024 | 5 KiB | 158 | 93 |
README.md
1# OpenThread Border Router Tests 2 3## Run Border Router (BR) tests locally 4 5BR tests run in isolated Docker network and containers, so a new OTBR Docker image needs to be created before running these tests: 6 7```shell 8# Use root privilege when necessary. 9 10# Download OpenThread's branch of wireshark. Run this for the first time. 11./script/test get_thread_wireshark 12 13# Clear current OpenThread directory (remember to add new source files). 14git clean -xfd 15 16# Rebuild the OTBR Docker image if OTBR source code is updated. 17LOCAL_OTBR_DIR=$HOME/ot-br-posix ./script/test build_otbr_docker 18 19# Build simulated OpenThread firmware. 20VIRTUAL_TIME=0 ./script/test build 21 22# Run the BR tests locally. 23TEST_CASE=./tests/scripts/thread-cert/border_router/test_advertising_proxy.py 24VERBOSE=1 PACKET_VERIFICATION=1 VIRTUAL_TIME=0 ./script/test cert_suite ${TEST_CASE} 25``` 26