[nexus] add test 6.4.2 Realm-Local Addressing (#12487)

This commit adds a new Nexus test case for 'Realm-Local Addressing'
(6.4.2) as specified in the test specification.

Summary of changes:
- Implemented Nexus test 6.4.2:
    - Added tests/nexus/test_6_4_2.cpp: Implements the test execution
      for both Topology A (End Device 'ED_1') and Topology B (Sleepy End
      Device 'SED_1'). The test verifies ICMPv6 Echo Request/Reply
      using Realm-Local addresses (ML-EID, All-Nodes, and All Thread
      Nodes). Fragmented (1200 bytes) and non-fragmented packets are
      tested. The test uses direct method calls, sets log level to
      note, and uses AllowList for connectivity (Leader <-> Router 1
      <-> DUT).
    - Added tests/nexus/verify_6_4_2.py: PCAP verification script.
      Validates the exchange of ICMPv6 Echo packets for ML-EID,
      Realm-Local All-Nodes (FF03::1), and Realm-Local All Thread
      Nodes addresses. Correctly derives the Realm-Local All Thread
      Nodes address from the mesh-local prefix.
- Updated build and execution scripts:
    - Modified tests/nexus/CMakeLists.txt to build the new test.
    - Updated tests/nexus/run_nexus_tests.sh to include 6_4_2 in the
      default test list and added expansion logic for A/B topologies.
This commit is contained in:
Jonathan Hui
2026-02-19 13:36:37 -06:00
committed by GitHub
parent 0c003f1043
commit de4b7f20de
4 changed files with 450 additions and 1 deletions
+1
View File
@@ -172,6 +172,7 @@ ot_nexus_test(6_2_2 "cert;nexus")
ot_nexus_test(6_3_1 "cert;nexus")
ot_nexus_test(6_3_2 "cert;nexus")
ot_nexus_test(6_4_1 "cert;nexus")
ot_nexus_test(6_4_2 "cert;nexus")
ot_nexus_test(6_5_1 "cert;nexus")
ot_nexus_test(7_1_1 "cert;nexus")
+2 -1
View File
@@ -108,6 +108,7 @@ DEFAULT_TESTS=(
"6_3_2"
"6_4_1_A"
"6_4_1_B"
"6_4_2"
"6_5_1"
"7_1_1"
)
@@ -201,7 +202,7 @@ run_test()
expanded_tests=()
for t in "${TESTS_TO_RUN[@]}"; do
case "$t" in
6_1_1 | 6_1_2 | 6_1_3 | 6_2_1 | 6_2_2 | 6_3_1 | 6_3_2 | 6_4_1 | 6_5_1)
6_1_1 | 6_1_2 | 6_1_3 | 6_2_1 | 6_2_2 | 6_3_1 | 6_3_2 | 6_4_1 | 6_4_2 | 6_5_1)
expanded_tests+=("${t}_A" "${t}_B")
;;
*)
+264
View File
@@ -0,0 +1,264 @@
/*
* Copyright (c) 2026, The OpenThread Authors.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the copyright holder nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdio.h>
#include <string.h>
#include "mac/data_poll_sender.hpp"
#include "platform/nexus_core.hpp"
#include "platform/nexus_node.hpp"
namespace ot {
namespace Nexus {
/**
* Time to advance for a node to form a network and become leader, in milliseconds.
*/
static constexpr uint32_t kFormNetworkTime = 13 * 1000;
/**
* Time to advance for a node to join as a child and upgrade to a router, in milliseconds.
*/
static constexpr uint32_t kAttachToRouterTime = 200 * 1000;
/**
* Time to advance for the DUT to attach to the leader, in milliseconds.
*/
static constexpr uint32_t kAttachTime = 10 * 1000;
/**
* Time to advance for the network to stabilize after routers have attached.
*/
static constexpr uint32_t kStabilizationTime = 10 * 1000;
/**
* Time to wait for ICMPv6 Echo response, in milliseconds.
*/
static constexpr uint32_t kEchoTimeout = 5000;
/**
* Data poll period for SED, in milliseconds.
*/
static constexpr uint32_t kPollPeriod = 500;
/**
* Payload size for fragmented ICMPv6 Echo Request, in bytes.
* A size of 1200 bytes plus headers will exceed the 802.15.4 frame size and trigger fragmentation.
*/
static constexpr uint16_t kFragmentedPayloadSize = 1200;
enum Topology
{
kTopologyA,
kTopologyB,
};
void RunTest6_4_2(Topology aTopology, const char *aJsonFile)
{
/**
* 6.4.2 Realm-Local Addressing
*
* 6.4.2.1 Topology
* - Topology A: DUT as End Device (ED_1)
* - Topology B: DUT as Sleepy End Device (SED_1)
*
* 6.4.2.2 Purpose & Description
* The purpose of this test case is to validate the Realm-Local addresses that the DUT configures.
*
* Spec Reference | V1.1 Section | V1.3.0 Section
* ------------------|--------------|---------------
* Realm-Local Scope | 5.2.3.2 | 5.2.1.2
*/
Core nexus;
Node &leader = nexus.CreateNode();
Node &router1 = nexus.CreateNode();
Node &dut = nexus.CreateNode();
leader.SetName("LEADER");
router1.SetName("ROUTER_1");
if (aTopology == kTopologyA)
{
dut.SetName("ED_1");
}
else
{
dut.SetName("SED_1");
}
nexus.AdvanceTime(0);
Instance::SetLogLevel(kLogLevelNote);
Log("---------------------------------------------------------------------------------------");
Log("Step 1: All");
/**
* Step 1: All
* - Description: Ensure topology is formed correctly.
* - Pass Criteria: N/A
*/
/** Use AllowList feature to restrict the topology. */
leader.AllowList(router1);
router1.AllowList(leader);
router1.AllowList(dut);
dut.AllowList(router1);
leader.Form();
nexus.AdvanceTime(kFormNetworkTime);
VerifyOrQuit(leader.Get<Mle::Mle>().IsLeader());
router1.Join(leader);
nexus.AdvanceTime(kAttachToRouterTime);
VerifyOrQuit(router1.Get<Mle::Mle>().IsRouter());
if (aTopology == kTopologyA)
{
dut.Join(leader, Node::kAsMed);
}
else
{
dut.Join(leader, Node::kAsSed);
SuccessOrQuit(dut.Get<DataPollSender>().SetExternalPollPeriod(kPollPeriod));
}
nexus.AdvanceTime(kAttachTime);
VerifyOrQuit(dut.Get<Mle::Mle>().IsChild());
nexus.AdvanceTime(kStabilizationTime);
Log("---------------------------------------------------------------------------------------");
Log("Step 2: Leader");
/**
* Step 2: Leader
* - Description: Harness instructs the device to send an ICMPv6 Echo Request to the DUT ML-EID.
* - Pass Criteria:
* - The DUT MUST respond with an ICMPv6 Echo Reply.
*/
nexus.SendAndVerifyEchoRequest(leader, dut.Get<Mle::Mle>().GetMeshLocalEid(), 0, 64, kEchoTimeout);
Log("---------------------------------------------------------------------------------------");
Log("Step 3: Leader");
/**
* Step 3: Leader
* - Description: Harness instructs the device to send a fragmented ICMPv6 Echo Request to the DUT ML-EID.
* - Pass Criteria:
* - The DUT MUST respond with an ICMPv6 Echo Reply.
*/
nexus.SendAndVerifyEchoRequest(leader, dut.Get<Mle::Mle>().GetMeshLocalEid(), kFragmentedPayloadSize, 64,
kEchoTimeout);
if (aTopology == kTopologyA)
{
Log("---------------------------------------------------------------------------------------");
Log("Step 4: Leader [Topology A only]");
/**
* Step 4: Leader [Topology A only]
* - Description: Harness instructs the device to send a ICMPv6 Echo Request to the Realm-Local All-Nodes
* multicast address (FF03::1).
* - Pass Criteria:
* - The DUT (ED_1) MUST respond with an ICMPv6 Echo Reply.
*/
nexus.SendAndVerifyEchoRequest(leader, Ip6::Address::GetRealmLocalAllNodesMulticast(), 0, 64, kEchoTimeout);
Log("---------------------------------------------------------------------------------------");
Log("Step 5: Leader [Topology A only]");
/**
* Step 5: Leader [Topology A only]
* - Description: Harness instructs the device to send a fragmented ICMPv6 Echo Request to the Realm-Local
* All-Nodes multicast address (FF03::1).
* - Pass Criteria:
* - The DUT (ED_1) MUST respond with an ICMPv6 Echo Reply.
*/
nexus.SendAndVerifyEchoRequest(leader, Ip6::Address::GetRealmLocalAllNodesMulticast(), kFragmentedPayloadSize,
64, kEchoTimeout);
}
Log("---------------------------------------------------------------------------------------");
Log("Step 6: Leader");
/**
* Step 6: Leader
* - Description: Harness instructs the device to send an ICMPv6 Echo Request to the Realm-Local All Thread Nodes
* multicast address.
* - Pass Criteria:
* - The DUT MUST respond with an ICMPv6 Echo Reply.
*/
nexus.SendAndVerifyEchoRequest(leader, leader.Get<Mle::Mle>().GetRealmLocalAllThreadNodesAddress(), 0, 64,
kEchoTimeout);
Log("---------------------------------------------------------------------------------------");
Log("Step 7: Leader");
/**
* Step 7: Leader
* - Description: Harness instructs the device to send a fragmented ICMPv6 Echo Request to the Realm-Local All
* Thread Nodes multicast address.
* - Pass Criteria:
* - The DUT MUST respond with an ICMPv6 Echo Reply.
*/
nexus.SendAndVerifyEchoRequest(leader, leader.Get<Mle::Mle>().GetRealmLocalAllThreadNodesAddress(),
kFragmentedPayloadSize, 64, kEchoTimeout);
nexus.SaveTestInfo(aJsonFile);
}
} // namespace Nexus
} // namespace ot
int main(int argc, char *argv[])
{
if (argc < 2)
{
// If no argument, run both topologies.
ot::Nexus::RunTest6_4_2(ot::Nexus::kTopologyA, "test_6_4_2_A.json");
ot::Nexus::RunTest6_4_2(ot::Nexus::kTopologyB, "test_6_4_2_B.json");
}
else if (strcmp(argv[1], "A") == 0)
{
ot::Nexus::RunTest6_4_2(ot::Nexus::kTopologyA, (argc > 2) ? argv[2] : "test_6_4_2_A.json");
}
else if (strcmp(argv[1], "B") == 0)
{
ot::Nexus::RunTest6_4_2(ot::Nexus::kTopologyB, (argc > 2) ? argv[2] : "test_6_4_2_B.json");
}
else
{
fprintf(stderr, "Error: Invalid topology '%s'. Must be 'A' or 'B'.\n", argv[1]);
return 1;
}
printf("All tests passed\n");
return 0;
}
+183
View File
@@ -0,0 +1,183 @@
#!/usr/bin/env python3
#
# Copyright (c) 2026, The OpenThread Authors.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. Neither the name of the copyright holder nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
import sys
import os
# Add the current directory to sys.path to find verify_utils
CUR_DIR = os.path.dirname(os.path.abspath(__file__))
sys.path.append(CUR_DIR)
import verify_utils
from pktverify import consts
from pktverify.addrs import Ipv6Addr
def verify(pv):
# 6.4.2 Realm-Local Addressing
#
# 6.4.2.1 Topology
# - Topology A: DUT as End Device (ED_1)
# - Topology B: DUT as Sleepy End Device (SED_1)
#
# 6.4.2.2 Purpose & Description
# The purpose of this test case is to validate the Realm-Local addresses that the DUT configures.
#
# Spec Reference | V1.1 Section | V1.3.0 Section
# ------------------|--------------|---------------
# Realm-Local Scope | 5.2.3.2 | 5.2.1.2
pkts = pv.pkts
pv.summary.show()
LEADER = pv.vars['LEADER']
DUT = pv.vars.get('ED_1') or\
pv.vars.get('SED_1') or\
pv.vars.get('DUT')
DUT_MLEID = pv.vars.get('ED_1_MLEID') or\
pv.vars.get('SED_1_MLEID') or\
pv.vars.get('DUT_MLEID')
assert DUT is not None, "DUT not found"
assert DUT_MLEID is not None, "DUT_MLEID not found"
topology = 'A' if 'ED_1' in pv.vars else 'B'
# The Realm-Local All Thread Nodes multicast address (FF33:40:<MeshLocalPrefix>::1)
# Derived from Link-Local All Thread Nodes (FF32:40:<MeshLocalPrefix>::1)
ll_all_thread = consts.LINK_LOCAL_All_THREAD_NODES_MULTICAST_ADDRESS
rl_all_thread = bytearray(ll_all_thread)
rl_all_thread[1] = 0x33
REALM_LOCAL_ALL_THREAD_NODES = Ipv6Addr(rl_all_thread)
# Step 1: All
# - Description: Ensure topology is formed correctly.
# - Pass Criteria: N/A
print("Step 1: All - Ensure topology is formed correctly.")
# Step 2: Leader
# - Description: Harness instructs the device to send an ICMPv6 Echo Request to the DUT ML-EID.
# - Pass Criteria:
# - The DUT MUST respond with an ICMPv6 Echo Reply.
print(f"Step 2: Leader sends an ICMPv6 Echo Request to the DUT ML-EID.")
_pkt = pkts.filter_ping_request().\
filter_wpan_src64(LEADER).\
filter_ipv6_dst(DUT_MLEID).\
filter(lambda p: p.ipv6.plen < 100).\
must_next()
pkts.filter_ping_reply(identifier=_pkt.icmpv6.echo.identifier).\
filter_wpan_src64(DUT).\
filter_ipv6_dst(_pkt.ipv6.src).\
must_next()
# Step 3: Leader
# - Description: Harness instructs the device to send a fragmented ICMPv6 Echo Request to the DUT ML-EID.
# - Pass Criteria:
# - The DUT MUST respond with an ICMPv6 Echo Reply.
print(f"Step 3: Leader sends a fragmented ICMPv6 Echo Request to the DUT ML-EID.")
_pkt = pkts.filter_ping_request().\
filter_wpan_src64(LEADER).\
filter_ipv6_dst(DUT_MLEID).\
filter(lambda p: p.ipv6.plen > 1000).\
must_next()
pkts.filter_ping_reply(identifier=_pkt.icmpv6.echo.identifier).\
filter_wpan_src64(DUT).\
filter_ipv6_dst(_pkt.ipv6.src).\
must_next()
if topology == 'A':
# Step 4: Leader [Topology A only]
# - Description: Harness instructs the device to send a ICMPv6 Echo Request to the Realm-Local All-Nodes
# multicast address (FF03::1).
# - Pass Criteria:
# - The DUT (ED_1) MUST respond with an ICMPv6 Echo Reply.
print("Step 4: Leader sends a ICMPv6 Echo Request to the Realm-Local All-Nodes multicast address (FF03::1).")
_pkt = pkts.filter_ping_request().\
filter_wpan_src64(LEADER).\
filter_ipv6_dst("FF03::1").\
filter(lambda p: p.ipv6.plen < 100).\
must_next()
pkts.filter_ping_reply(identifier=_pkt.icmpv6.echo.identifier).\
filter_wpan_src64(DUT).\
filter_ipv6_dst(_pkt.ipv6.src).\
must_next()
# Step 5: Leader [Topology A only]
# - Description: Harness instructs the device to send a fragmented ICMPv6 Echo Request to the Realm-Local
# All-Nodes multicast address (FF03::1).
# - Pass Criteria:
# - The DUT (ED_1) MUST respond with an ICMPv6 Echo Reply.
print("Step 5: Leader sends a fragmented ICMPv6 Echo Request to the Realm-Local All-Nodes multicast "
"address (FF03::1).")
_pkt = pkts.filter_ping_request().\
filter_wpan_src64(LEADER).\
filter_ipv6_dst("FF03::1").\
filter(lambda p: p.ipv6.plen > 1000).\
must_next()
pkts.filter_ping_reply(identifier=_pkt.icmpv6.echo.identifier).\
filter_wpan_src64(DUT).\
filter_ipv6_dst(_pkt.ipv6.src).\
must_next()
# Step 6: Leader
# - Description: Harness instructs the device to send an ICMPv6 Echo Request to the Realm-Local All Thread Nodes
# multicast address.
# - Pass Criteria:
# - The DUT MUST respond with an ICMPv6 Echo Reply.
print(f"Step 6: Leader sends an ICMPv6 Echo Request to the Realm-Local All Thread Nodes multicast address.")
_pkt = pkts.filter_ping_request().\
filter_wpan_src64(LEADER).\
filter_ipv6_dst(REALM_LOCAL_ALL_THREAD_NODES).\
filter(lambda p: p.ipv6.plen < 100).\
must_next()
pkts.filter_ping_reply(identifier=_pkt.icmpv6.echo.identifier).\
filter_wpan_src64(DUT).\
filter_ipv6_dst(_pkt.ipv6.src).\
must_next()
# Step 7: Leader
# - Description: Harness instructs the device to send a fragmented ICMPv6 Echo Request to the Realm-Local All
# Thread Nodes multicast address.
# - Pass Criteria:
# - The DUT MUST respond with an ICMPv6 Echo Reply.
print(f"Step 7: Leader sends a fragmented ICMPv6 Echo Request to the Realm-Local All Thread Nodes multicast "
"address.")
_pkt = pkts.filter_ping_request().\
filter_wpan_src64(LEADER).\
filter_ipv6_dst(REALM_LOCAL_ALL_THREAD_NODES).\
filter(lambda p: p.ipv6.plen > 1000).\
must_next()
pkts.filter_ping_reply(identifier=_pkt.icmpv6.echo.identifier).\
filter_wpan_src64(DUT).\
filter_ipv6_dst(_pkt.ipv6.src).\
must_next()
if __name__ == '__main__':
verify_utils.run_main(verify)