1*cfb92d14SAndroid Build Coastguard Worker#!/usr/bin/env python3 2*cfb92d14SAndroid Build Coastguard Worker# 3*cfb92d14SAndroid Build Coastguard Worker# Copyright (c) 2020, The OpenThread Authors. 4*cfb92d14SAndroid Build Coastguard Worker# All rights reserved. 5*cfb92d14SAndroid Build Coastguard Worker# 6*cfb92d14SAndroid Build Coastguard Worker# Redistribution and use in source and binary forms, with or without 7*cfb92d14SAndroid Build Coastguard Worker# modification, are permitted provided that the following conditions are met: 8*cfb92d14SAndroid Build Coastguard Worker# 1. Redistributions of source code must retain the above copyright 9*cfb92d14SAndroid Build Coastguard Worker# notice, this list of conditions and the following disclaimer. 10*cfb92d14SAndroid Build Coastguard Worker# 2. Redistributions in binary form must reproduce the above copyright 11*cfb92d14SAndroid Build Coastguard Worker# notice, this list of conditions and the following disclaimer in the 12*cfb92d14SAndroid Build Coastguard Worker# documentation and/or other materials provided with the distribution. 13*cfb92d14SAndroid Build Coastguard Worker# 3. Neither the name of the copyright holder nor the 14*cfb92d14SAndroid Build Coastguard Worker# names of its contributors may be used to endorse or promote products 15*cfb92d14SAndroid Build Coastguard Worker# derived from this software without specific prior written permission. 16*cfb92d14SAndroid Build Coastguard Worker# 17*cfb92d14SAndroid Build Coastguard Worker# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 18*cfb92d14SAndroid Build Coastguard Worker# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19*cfb92d14SAndroid Build Coastguard Worker# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20*cfb92d14SAndroid Build Coastguard Worker# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 21*cfb92d14SAndroid Build Coastguard Worker# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 22*cfb92d14SAndroid Build Coastguard Worker# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 23*cfb92d14SAndroid Build Coastguard Worker# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 24*cfb92d14SAndroid Build Coastguard Worker# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 25*cfb92d14SAndroid Build Coastguard Worker# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 26*cfb92d14SAndroid Build Coastguard Worker# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 27*cfb92d14SAndroid Build Coastguard Worker# POSSIBILITY OF SUCH DAMAGE. 28*cfb92d14SAndroid Build Coastguard Worker 29*cfb92d14SAndroid Build Coastguard Workerimport time 30*cfb92d14SAndroid Build Coastguard Workerimport wpan 31*cfb92d14SAndroid Build Coastguard Workerfrom wpan import verify 32*cfb92d14SAndroid Build Coastguard Worker 33*cfb92d14SAndroid Build Coastguard Worker# ----------------------------------------------------------------------------------------------------------------------- 34*cfb92d14SAndroid Build Coastguard Worker# Test description: This test covers behavior of MeshHeader messages (message sent over multi-hop) when the 35*cfb92d14SAndroid Build Coastguard Worker# underlying devices (in the path) support different radio types with different frame MTU length. 36*cfb92d14SAndroid Build Coastguard Worker# 37*cfb92d14SAndroid Build Coastguard Worker# r1 --------- r2 ---------- r3 38*cfb92d14SAndroid Build Coastguard Worker# (trel) (15.4+trel) (15.4) 39*cfb92d14SAndroid Build Coastguard Worker# | | 40*cfb92d14SAndroid Build Coastguard Worker# | | 41*cfb92d14SAndroid Build Coastguard Worker# c2 (15.4) c3 (15.4) 42*cfb92d14SAndroid Build Coastguard Worker# 43*cfb92d14SAndroid Build Coastguard Worker# c3 is used for quick router promotion of r3. 44*cfb92d14SAndroid Build Coastguard Worker# 45*cfb92d14SAndroid Build Coastguard Workertest_name = __file__[:-3] if __file__.endswith('.py') else __file__ 46*cfb92d14SAndroid Build Coastguard Workerprint('-' * 120) 47*cfb92d14SAndroid Build Coastguard Workerprint('Starting \'{}\''.format(test_name)) 48*cfb92d14SAndroid Build Coastguard Worker 49*cfb92d14SAndroid Build Coastguard Worker# ----------------------------------------------------------------------------------------------------------------------- 50*cfb92d14SAndroid Build Coastguard Worker# Creating `wpan.Nodes` instances 51*cfb92d14SAndroid Build Coastguard Worker 52*cfb92d14SAndroid Build Coastguard Workerspeedup = 4 53*cfb92d14SAndroid Build Coastguard Workerwpan.Node.set_time_speedup_factor(speedup) 54*cfb92d14SAndroid Build Coastguard Worker 55*cfb92d14SAndroid Build Coastguard Workerr1 = wpan.Node(wpan.NODE_TREL) 56*cfb92d14SAndroid Build Coastguard Workerr2 = wpan.Node(wpan.NODE_15_4_TREL) 57*cfb92d14SAndroid Build Coastguard Workerr3 = wpan.Node(wpan.NODE_15_4) 58*cfb92d14SAndroid Build Coastguard Workerc2 = wpan.Node(wpan.NODE_15_4) 59*cfb92d14SAndroid Build Coastguard Workerc3 = wpan.Node(wpan.NODE_15_4) 60*cfb92d14SAndroid Build Coastguard Worker 61*cfb92d14SAndroid Build Coastguard Worker# ----------------------------------------------------------------------------------------------------------------------- 62*cfb92d14SAndroid Build Coastguard Worker# Init all nodes 63*cfb92d14SAndroid Build Coastguard Worker 64*cfb92d14SAndroid Build Coastguard Workerwpan.Node.init_all_nodes() 65*cfb92d14SAndroid Build Coastguard Worker 66*cfb92d14SAndroid Build Coastguard Worker# ----------------------------------------------------------------------------------------------------------------------- 67*cfb92d14SAndroid Build Coastguard Worker# Build network topology 68*cfb92d14SAndroid Build Coastguard Worker# 69*cfb92d14SAndroid Build Coastguard Worker 70*cfb92d14SAndroid Build Coastguard Workerr1.allowlist_node(r2) 71*cfb92d14SAndroid Build Coastguard Workerr2.allowlist_node(r1) 72*cfb92d14SAndroid Build Coastguard Worker 73*cfb92d14SAndroid Build Coastguard Workerr2.allowlist_node(r3) 74*cfb92d14SAndroid Build Coastguard Workerr3.allowlist_node(r2) 75*cfb92d14SAndroid Build Coastguard Worker 76*cfb92d14SAndroid Build Coastguard Workerr2.allowlist_node(c2) 77*cfb92d14SAndroid Build Coastguard Workerc2.allowlist_node(r2) 78*cfb92d14SAndroid Build Coastguard Worker 79*cfb92d14SAndroid Build Coastguard Workerr3.allowlist_node(c3) 80*cfb92d14SAndroid Build Coastguard Workerc3.allowlist_node(r3) 81*cfb92d14SAndroid Build Coastguard Worker 82*cfb92d14SAndroid Build Coastguard Workerr1.form("mesh-header") 83*cfb92d14SAndroid Build Coastguard Worker 84*cfb92d14SAndroid Build Coastguard Workerr2.join_node(r1, wpan.JOIN_TYPE_ROUTER) 85*cfb92d14SAndroid Build Coastguard Workerr3.join_node(r2, wpan.JOIN_TYPE_ROUTER) 86*cfb92d14SAndroid Build Coastguard Workerc2.join_node(r2, wpan.NODE_TYPE_SLEEPY_END_DEVICE) 87*cfb92d14SAndroid Build Coastguard Worker 88*cfb92d14SAndroid Build Coastguard Workerc3.join_node(r3, wpan.JOIN_TYPE_END_DEVICE) 89*cfb92d14SAndroid Build Coastguard Worker 90*cfb92d14SAndroid Build Coastguard Worker# ----------------------------------------------------------------------------------------------------------------------- 91*cfb92d14SAndroid Build Coastguard Worker# Test implementation 92*cfb92d14SAndroid Build Coastguard Worker 93*cfb92d14SAndroid Build Coastguard WorkerWAIT_TIME = 5 94*cfb92d14SAndroid Build Coastguard WorkerINVALID_ROUTER_ID = 63 95*cfb92d14SAndroid Build Coastguard WorkerMSG_LEN = 1000 96*cfb92d14SAndroid Build Coastguard WorkerMSG_COUNT = 2 97*cfb92d14SAndroid Build Coastguard WorkerPOLL_INTERVAL = 400 98*cfb92d14SAndroid Build Coastguard Worker 99*cfb92d14SAndroid Build Coastguard Workerc2.set(wpan.WPAN_POLL_INTERVAL, str(POLL_INTERVAL)) 100*cfb92d14SAndroid Build Coastguard Worker 101*cfb92d14SAndroid Build Coastguard Worker# Verify that each node supports the correct radio links. 102*cfb92d14SAndroid Build Coastguard Worker 103*cfb92d14SAndroid Build Coastguard Workerr1_radios = wpan.parse_list(r1.get(wpan.WPAN_OT_SUPPORTED_RADIO_LINKS)) 104*cfb92d14SAndroid Build Coastguard Workerverify(len(r1_radios) == 1 and (wpan.RADIO_LINK_TREL_UDP6 in r1_radios)) 105*cfb92d14SAndroid Build Coastguard Worker 106*cfb92d14SAndroid Build Coastguard Workerr2_radios = wpan.parse_list(r2.get(wpan.WPAN_OT_SUPPORTED_RADIO_LINKS)) 107*cfb92d14SAndroid Build Coastguard Workerverify( 108*cfb92d14SAndroid Build Coastguard Worker len(r2_radios) == 2 and (wpan.RADIO_LINK_IEEE_802_15_4 in r2_radios) and (wpan.RADIO_LINK_TREL_UDP6 in r2_radios)) 109*cfb92d14SAndroid Build Coastguard Worker 110*cfb92d14SAndroid Build Coastguard Workerr3_radios = wpan.parse_list(r3.get(wpan.WPAN_OT_SUPPORTED_RADIO_LINKS)) 111*cfb92d14SAndroid Build Coastguard Workerverify(len(r3_radios) == 1 and (wpan.RADIO_LINK_IEEE_802_15_4 in r3_radios)) 112*cfb92d14SAndroid Build Coastguard Worker 113*cfb92d14SAndroid Build Coastguard Worker# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 114*cfb92d14SAndroid Build Coastguard Worker# Wait for all router entries are updated 115*cfb92d14SAndroid Build Coastguard Worker 116*cfb92d14SAndroid Build Coastguard Workerr1_rloc = int(r1.get(wpan.WPAN_THREAD_RLOC16), 16) 117*cfb92d14SAndroid Build Coastguard Worker 118*cfb92d14SAndroid Build Coastguard Worker 119*cfb92d14SAndroid Build Coastguard Workerdef check_r1_router_table(): 120*cfb92d14SAndroid Build Coastguard Worker router_table = wpan.parse_router_table_result(r1.get(wpan.WPAN_THREAD_ROUTER_TABLE)) 121*cfb92d14SAndroid Build Coastguard Worker verify(len(router_table) == 3) 122*cfb92d14SAndroid Build Coastguard Worker for entry in router_table: 123*cfb92d14SAndroid Build Coastguard Worker verify(entry.rloc16 == r1_rloc or entry.is_link_established() or entry.next_hop != INVALID_ROUTER_ID) 124*cfb92d14SAndroid Build Coastguard Worker 125*cfb92d14SAndroid Build Coastguard Worker 126*cfb92d14SAndroid Build Coastguard Workerwpan.verify_within(check_r1_router_table, WAIT_TIME) 127*cfb92d14SAndroid Build Coastguard Worker 128*cfb92d14SAndroid Build Coastguard Worker# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 129*cfb92d14SAndroid Build Coastguard Worker# Send large message from r1 to r3. Such a message would be sent as a 130*cfb92d14SAndroid Build Coastguard Worker# Mesh Header message. Note that the origin r1 is a trel-only device 131*cfb92d14SAndroid Build Coastguard Worker# whereas the final destination r3 is a 15.4-only device. The originator 132*cfb92d14SAndroid Build Coastguard Worker# should use smaller MTU size (which then fragment the message into 133*cfb92d14SAndroid Build Coastguard Worker# multiple frames) otherwise the 15.4 link won't be able to handle it. 134*cfb92d14SAndroid Build Coastguard Worker 135*cfb92d14SAndroid Build Coastguard Workerr1_ml_address = r1.get(wpan.WPAN_IP6_MESH_LOCAL_ADDRESS)[1:-1] 136*cfb92d14SAndroid Build Coastguard Workerr3_ml_address = r3.get(wpan.WPAN_IP6_MESH_LOCAL_ADDRESS)[1:-1] 137*cfb92d14SAndroid Build Coastguard Worker 138*cfb92d14SAndroid Build Coastguard Workersender = r1.prepare_tx(r1_ml_address, r3_ml_address, MSG_LEN, MSG_COUNT) 139*cfb92d14SAndroid Build Coastguard Workerrecver = r3.prepare_rx(sender) 140*cfb92d14SAndroid Build Coastguard Worker 141*cfb92d14SAndroid Build Coastguard Workerwpan.Node.perform_async_tx_rx() 142*cfb92d14SAndroid Build Coastguard Worker 143*cfb92d14SAndroid Build Coastguard Workerverify(sender.was_successful) 144*cfb92d14SAndroid Build Coastguard Workerverify(recver.was_successful) 145*cfb92d14SAndroid Build Coastguard Worker 146*cfb92d14SAndroid Build Coastguard Worker# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 147*cfb92d14SAndroid Build Coastguard Worker# Send messages from c2 to r1. 148*cfb92d14SAndroid Build Coastguard Worker 149*cfb92d14SAndroid Build Coastguard Workerc2_ml_address = c2.get(wpan.WPAN_IP6_MESH_LOCAL_ADDRESS)[1:-1] 150*cfb92d14SAndroid Build Coastguard Worker 151*cfb92d14SAndroid Build Coastguard Workersender = c2.prepare_tx(c2_ml_address, r1_ml_address, MSG_LEN, MSG_COUNT) 152*cfb92d14SAndroid Build Coastguard Workerrecver = r1.prepare_rx(sender) 153*cfb92d14SAndroid Build Coastguard Worker 154*cfb92d14SAndroid Build Coastguard Workerwpan.Node.perform_async_tx_rx() 155*cfb92d14SAndroid Build Coastguard Worker 156*cfb92d14SAndroid Build Coastguard Workerverify(sender.was_successful) 157*cfb92d14SAndroid Build Coastguard Workerverify(recver.was_successful) 158*cfb92d14SAndroid Build Coastguard Worker 159*cfb92d14SAndroid Build Coastguard Worker# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 160*cfb92d14SAndroid Build Coastguard Worker# Send messages from r3 to r1. 161*cfb92d14SAndroid Build Coastguard Worker 162*cfb92d14SAndroid Build Coastguard Workersender = r3.prepare_tx(r3_ml_address, r1_ml_address, MSG_LEN, MSG_COUNT) 163*cfb92d14SAndroid Build Coastguard Workerrecver = r1.prepare_rx(sender) 164*cfb92d14SAndroid Build Coastguard Worker 165*cfb92d14SAndroid Build Coastguard Workerwpan.Node.perform_async_tx_rx() 166*cfb92d14SAndroid Build Coastguard Worker 167*cfb92d14SAndroid Build Coastguard Workerverify(sender.was_successful) 168*cfb92d14SAndroid Build Coastguard Workerverify(recver.was_successful) 169*cfb92d14SAndroid Build Coastguard Worker 170*cfb92d14SAndroid Build Coastguard Worker# ----------------------------------------------------------------------------------------------------------------------- 171*cfb92d14SAndroid Build Coastguard Worker# Test finished 172*cfb92d14SAndroid Build Coastguard Worker 173*cfb92d14SAndroid Build Coastguard Workerwpan.Node.finalize_all_nodes() 174*cfb92d14SAndroid Build Coastguard Worker 175*cfb92d14SAndroid Build Coastguard Workerprint('\'{}\' passed.'.format(test_name)) 176