diff --git a/tests/nexus/CMakeLists.txt b/tests/nexus/CMakeLists.txt index d363f895e..737a7d1ad 100644 --- a/tests/nexus/CMakeLists.txt +++ b/tests/nexus/CMakeLists.txt @@ -391,6 +391,7 @@ ot_nexus_test(log_override "core;nexus") ot_nexus_test(discover_scan "core;nexus") ot_nexus_test(dtls "core;nexus") ot_nexus_test(form_join "core;nexus") +ot_nexus_test(dataset_updater "core;nexus") ot_nexus_test(mle_blocking_downgrade "core;nexus") ot_nexus_test(nat64_translator "core;nexus") ot_nexus_test(srp_lease "core;nexus") diff --git a/tests/nexus/test_dataset_updater.cpp b/tests/nexus/test_dataset_updater.cpp new file mode 100644 index 000000000..77ce2151f --- /dev/null +++ b/tests/nexus/test_dataset_updater.cpp @@ -0,0 +1,175 @@ +/* + * Copyright (c) 2024, 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 +#include +#include + +#include "platform/nexus_core.hpp" +#include "platform/nexus_node.hpp" + +namespace ot { +namespace Nexus { + +void VerifyChannel(Core &aNexus, uint16_t aChannel) +{ + for (Node &node : aNexus.GetNodes()) + { + MeshCoP::Dataset::Info datasetInfo; + SuccessOrQuit(node.Get().Read(datasetInfo)); + + VerifyOrQuit(datasetInfo.IsPresent()); + VerifyOrQuit(datasetInfo.Get() == aChannel); + VerifyOrQuit(node.Get().GetPanChannel() == aChannel); + } +} + +void TestDatasetUpdater(void) +{ + Core nexus; + + Node &leader = nexus.CreateNode(); + Node &router = nexus.CreateNode(); + Node &med = nexus.CreateNode(); + Node &sed = nexus.CreateNode(); + + leader.SetName("leader"); + router.SetName("router"); + med.SetName("med"); + sed.SetName("sed"); + + nexus.AdvanceTime(0); + + SuccessOrQuit(Instance::SetGlobalLogLevel(kLogLevelInfo)); + + Log("---------------------------------------------------------------------------------------"); + Log("Form network on channel 11"); + + leader.Form(); + { + MeshCoP::Dataset::Info datasetInfo; + SuccessOrQuit(leader.Get().Read(datasetInfo)); + datasetInfo.Set(11); + leader.Get().SaveLocal(datasetInfo); + } + + nexus.AdvanceTime(13 * 1000); + VerifyOrQuit(leader.Get().IsLeader()); + + router.Join(leader); + med.Join(router, Node::kAsMed); + sed.Join(router, Node::kAsSed); + + // Set a faster poll period for SED to ensure it receives Dataset updates promptly + SuccessOrQuit(sed.Get().SetExternalPollPeriod(100)); + + nexus.AdvanceTime(300 * 1000); + + VerifyOrQuit(leader.Get().IsLeader()); + VerifyOrQuit(router.Get().IsRouter()); + VerifyOrQuit(med.Get().IsChild()); + VerifyOrQuit(sed.Get().IsChild()); + + VerifyChannel(nexus, 11); + + Log("---------------------------------------------------------------------------------------"); + Log("Update initiated by LEADER to channel 12"); + + { + MeshCoP::Dataset::Info datasetInfo; + datasetInfo.Clear(); + datasetInfo.Set(12); + SuccessOrQuit(leader.Get().RequestUpdate(datasetInfo, nullptr, nullptr)); + } + + nexus.AdvanceTime(200 * 1000); + VerifyChannel(nexus, 12); + + Log("---------------------------------------------------------------------------------------"); + Log("Update initiated by ROUTER to channel 13"); + + { + MeshCoP::Dataset::Info datasetInfo; + datasetInfo.Clear(); + datasetInfo.Set(13); + SuccessOrQuit(router.Get().RequestUpdate(datasetInfo, nullptr, nullptr)); + } + + nexus.AdvanceTime(200 * 1000); + VerifyChannel(nexus, 13); + + Log("---------------------------------------------------------------------------------------"); + Log("Update initiated by LEADER overridden by ROUTER (14 -> 15)"); + + { + MeshCoP::Dataset::Info datasetInfo; + datasetInfo.Clear(); + datasetInfo.Set(14); + SuccessOrQuit(leader.Get().RequestUpdate(datasetInfo, nullptr, nullptr)); + } + nexus.AdvanceTime(20 * 1000); + { + MeshCoP::Dataset::Info datasetInfo; + datasetInfo.Clear(); + datasetInfo.Set(15); + SuccessOrQuit(router.Get().RequestUpdate(datasetInfo, nullptr, nullptr)); + } + + nexus.AdvanceTime(200 * 1000); + VerifyChannel(nexus, 15); + + Log("---------------------------------------------------------------------------------------"); + Log("Update initiated by ROUTER overridden by LEADER (16 -> 17)"); + + { + MeshCoP::Dataset::Info datasetInfo; + datasetInfo.Clear(); + datasetInfo.Set(16); + SuccessOrQuit(router.Get().RequestUpdate(datasetInfo, nullptr, nullptr)); + } + nexus.AdvanceTime(10 * 1000); + { + MeshCoP::Dataset::Info datasetInfo; + datasetInfo.Clear(); + datasetInfo.Set(17); + SuccessOrQuit(leader.Get().RequestUpdate(datasetInfo, nullptr, nullptr)); + } + + nexus.AdvanceTime(200 * 1000); + VerifyChannel(nexus, 17); +} + +} // namespace Nexus +} // namespace ot + +int main(void) +{ + ot::Nexus::TestDatasetUpdater(); + printf("All tests passed\n"); + return 0; +} diff --git a/tests/scripts/thread-cert/test_dataset_updater.py b/tests/scripts/thread-cert/test_dataset_updater.py deleted file mode 100755 index ba3bc9f13..000000000 --- a/tests/scripts/thread-cert/test_dataset_updater.py +++ /dev/null @@ -1,118 +0,0 @@ -#!/usr/bin/env python3 -# -# Copyright (c) 2021, 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 unittest - -import config -import thread_cert - -LEADER = 1 -ROUTER = 2 -MED = 3 -SED = 4 - - -class TestDatasetUpdater(thread_cert.TestCase): - SUPPORT_NCP = False - USE_MESSAGE_FACTORY = False - - TOPOLOGY = { - LEADER: { - 'mode': 'rdn', - 'channel': 11, - }, - ROUTER: { - 'mode': 'rdn', - 'channel': 11, - }, - MED: { - 'mode': 'rn', - 'channel': 11, - 'allowlist': [ROUTER], - }, - SED: { - 'mode': '-', - 'channel': 11, - 'timeout': config.DEFAULT_CHILD_TIMEOUT, - 'allowlist': [ROUTER], - }, - } - - def test(self): - self.nodes[LEADER].start() - self.simulator.go(config.LEADER_STARTUP_DELAY) - self.assertEqual(self.nodes[LEADER].get_state(), 'leader') - - self.nodes[ROUTER].start() - self.simulator.go(config.ROUTER_STARTUP_DELAY) - self.assertEqual(self.nodes[ROUTER].get_state(), 'router') - - self.nodes[MED].start() - self.simulator.go(5) - self.assertEqual(self.nodes[MED].get_state(), 'child') - - self.nodes[SED].start() - self.simulator.go(5) - self.assertEqual(self.nodes[SED].get_state(), 'child') - - self.verify_state(11) - - # update initiated by LEADER - self.nodes[LEADER].start_dataset_updater(channel=12) - self.simulator.go(120) - self.verify_state(12) - - # update initiated by ROUTER - self.nodes[ROUTER].start_dataset_updater(channel=13) - self.simulator.go(120) - self.verify_state(13) - - # update initiated by LEADER overridden by ROUTER - self.nodes[LEADER].start_dataset_updater(channel=14) - self.simulator.go(20) - self.nodes[ROUTER].start_dataset_updater(channel=15) - self.simulator.go(120) - self.verify_state(15) - - # update initiated by ROUTER overridden by LEADER - self.nodes[ROUTER].start_dataset_updater(channel=16) - self.simulator.go(10) - self.nodes[LEADER].start_dataset_updater(channel=17) - self.simulator.go(120) - self.verify_state(17) - - def verify_state(self, channel): - self.assertEqual(self.nodes[LEADER].get_channel(), channel) - self.assertEqual(self.nodes[ROUTER].get_channel(), channel) - self.assertEqual(self.nodes[MED].get_channel(), channel) - self.assertEqual(self.nodes[SED].get_channel(), channel) - - -if __name__ == '__main__': - unittest.main()