Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
LowPower/ | 04-Jan-2025 | - | 116 | 18 | ||
MATN/ | 04-Jan-2025 | - | 1,838 | 953 | ||
nat64/ | 04-Jan-2025 | - | 882 | 494 | ||
README.md | D | 04-Jan-2025 | 853 | 26 | 17 | |
test_advertising_proxy.py | D | 04-Jan-2025 | 15.4 KiB | 377 | 224 | |
test_border_router_as_fed.py | D | 04-Jan-2025 | 3.3 KiB | 102 | 46 | |
test_dnssd_instance_name_with_space.py | D | 04-Jan-2025 | 8.4 KiB | 225 | 136 | |
test_dnssd_server.py | D | 04-Jan-2025 | 13.6 KiB | 346 | 234 | |
test_dnssd_server_multi_border_routers.py | D | 04-Jan-2025 | 17.1 KiB | 438 | 305 | |
test_end_device_udp_reachability.py | D | 04-Jan-2025 | 4.8 KiB | 153 | 83 | |
test_ephemeral_key_counters.py | D | 04-Jan-2025 | 4.8 KiB | 124 | 64 | |
test_external_route.py | D | 04-Jan-2025 | 5.9 KiB | 169 | 100 | |
test_firewall.py | D | 04-Jan-2025 | 15.7 KiB | 333 | 196 | |
test_manual_address.py | D | 04-Jan-2025 | 3.2 KiB | 102 | 42 | |
test_manual_maddress.py | D | 04-Jan-2025 | 4.1 KiB | 119 | 56 | |
test_manual_omr_prefix.py | D | 04-Jan-2025 | 5.9 KiB | 148 | 77 | |
test_mdns_restart.py | D | 04-Jan-2025 | 6 KiB | 172 | 101 | |
test_multi_ail.py | D | 04-Jan-2025 | 5.1 KiB | 130 | 77 | |
test_multi_border_routers.py | D | 04-Jan-2025 | 8.6 KiB | 221 | 127 | |
test_multi_thread_networks.py | D | 04-Jan-2025 | 6 KiB | 161 | 93 | |
test_on_link_prefix.py | D | 04-Jan-2025 | 6.9 KiB | 194 | 116 | |
test_plat_udp_accessiblity.py | D | 04-Jan-2025 | 5.1 KiB | 147 | 73 | |
test_publish_meshcop_service.py | D | 04-Jan-2025 | 10.5 KiB | 259 | 166 | |
test_radvd_coexist.py | D | 04-Jan-2025 | 7.2 KiB | 190 | 105 | |
test_rcp_radio_version.py | D | 04-Jan-2025 | 2.5 KiB | 71 | 24 | |
test_single_border_router.py | D | 04-Jan-2025 | 14.1 KiB | 346 | 190 | |
test_srp_register_500_services_br.py | D | 04-Jan-2025 | 3 KiB | 82 | 30 | |
test_trel_connectivity.py | D | 04-Jan-2025 | 6 KiB | 181 | 112 |
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