mirror of
https://github.com/espressif/openthread.git
synced 2026-08-21 18:09:52 +00:00
Add Thread Certification 9.2.17 to automated test. (#786)
This commit is contained in:
@@ -114,6 +114,7 @@ EXTRA_DIST = \
|
||||
thread-cert/Cert_9_2_14_PanIdQuery.py \
|
||||
thread-cert/Cert_9_2_15_PendingPartition.py \
|
||||
thread-cert/Cert_9_2_16_ActivePendingPartition.py \
|
||||
thread-cert/Cert_9_2_17_Orphan.py \
|
||||
thread-cert/Cert_9_2_18_RollBackActiveTimestamp.py \
|
||||
thread-cert/node.py \
|
||||
$(NULL)
|
||||
@@ -241,6 +242,7 @@ check_SCRIPTS += \
|
||||
thread-cert/Cert_9_2_14_PanIdQuery.py \
|
||||
thread-cert/Cert_9_2_15_PendingPartition.py \
|
||||
thread-cert/Cert_9_2_16_ActivePendingPartition.py \
|
||||
thread-cert/Cert_9_2_17_Orphan.py \
|
||||
thread-cert/Cert_9_2_18_RollBackActiveTimestamp.py \
|
||||
$(NULL)
|
||||
|
||||
@@ -269,6 +271,7 @@ XFAIL_NCP_TESTS = \
|
||||
thread-cert/Cert_9_2_14_PanIdQuery.py \
|
||||
thread-cert/Cert_9_2_15_PendingPartition.py \
|
||||
thread-cert/Cert_9_2_16_ActivePendingPartition.py \
|
||||
thread-cert/Cert_9_2_17_Orphan.py \
|
||||
thread-cert/Cert_9_2_18_RollBackActiveTimestamp.py \
|
||||
$(NULL)
|
||||
|
||||
|
||||
+94
@@ -0,0 +1,94 @@
|
||||
#!/usr/bin/python
|
||||
#
|
||||
# Copyright (c) 2016, 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 time
|
||||
import unittest
|
||||
|
||||
import node
|
||||
|
||||
CHANNEL1 = 11
|
||||
CHANNEL2 = 18
|
||||
CHANNEL_MASK = 1 << 18
|
||||
PANID_INIT = 0xface
|
||||
|
||||
LEADER1 = 1
|
||||
LEADER2 = 2
|
||||
ED1 = 3
|
||||
|
||||
class Cert_9_2_17_Orphan(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.nodes = {}
|
||||
for i in range(1,4):
|
||||
self.nodes[i] = node.Node(i)
|
||||
|
||||
self.nodes[LEADER1].set_active_dataset(10, channel=CHANNEL1, panid=PANID_INIT, channel_mask=CHANNEL_MASK)
|
||||
self.nodes[LEADER1].set_mode('rsdn')
|
||||
self.nodes[LEADER1].add_whitelist(self.nodes[ED1].get_addr64())
|
||||
self.nodes[LEADER1].enable_whitelist()
|
||||
self.nodes[LEADER1].set_router_selection_jitter(1)
|
||||
|
||||
self.nodes[LEADER2].set_active_dataset(20, channel=CHANNEL2, panid=PANID_INIT, channel_mask=CHANNEL_MASK)
|
||||
self.nodes[LEADER2].set_mode('rsdn')
|
||||
self.nodes[LEADER2].enable_whitelist()
|
||||
self.nodes[LEADER2].set_router_selection_jitter(1)
|
||||
|
||||
self.nodes[ED1].set_active_dataset(10, channel=CHANNEL1, panid=PANID_INIT, channel_mask=CHANNEL_MASK)
|
||||
self.nodes[ED1].set_mode('rsn')
|
||||
self.nodes[ED1].add_whitelist(self.nodes[LEADER1].get_addr64())
|
||||
self.nodes[ED1].enable_whitelist()
|
||||
self.nodes[ED1].set_timeout(3)
|
||||
|
||||
def tearDown(self):
|
||||
for node in list(self.nodes.values()):
|
||||
node.stop()
|
||||
del self.nodes
|
||||
|
||||
def test(self):
|
||||
self.nodes[LEADER1].start()
|
||||
self.nodes[LEADER1].set_state('leader')
|
||||
self.assertEqual(self.nodes[LEADER1].get_state(), 'leader')
|
||||
|
||||
self.nodes[LEADER2].start()
|
||||
self.nodes[LEADER2].set_state('leader')
|
||||
self.assertEqual(self.nodes[LEADER2].get_state(), 'leader')
|
||||
|
||||
self.nodes[ED1].start()
|
||||
time.sleep(5)
|
||||
self.assertEqual(self.nodes[ED1].get_state(), 'child')
|
||||
|
||||
self.nodes[LEADER1].stop()
|
||||
self.nodes[LEADER2].add_whitelist(self.nodes[ED1].get_addr64())
|
||||
self.nodes[ED1].add_whitelist(self.nodes[LEADER2].get_addr64())
|
||||
time.sleep(20)
|
||||
|
||||
self.assertEqual(self.nodes[ED1].get_state(), 'child')
|
||||
self.assertEqual(self.nodes[ED1].get_channel(), CHANNEL2)
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
@@ -457,7 +457,7 @@ class Node:
|
||||
self.send_command(cmd)
|
||||
self.pexpect.expect('Done')
|
||||
|
||||
def set_active_dataset(self, timestamp, panid=None, channel=None, master_key=None):
|
||||
def set_active_dataset(self, timestamp, panid=None, channel=None, channel_mask=None, master_key=None):
|
||||
self.send_command('dataset clear')
|
||||
self.pexpect.expect('Done')
|
||||
|
||||
@@ -475,6 +475,11 @@ class Node:
|
||||
self.send_command(cmd)
|
||||
self.pexpect.expect('Done')
|
||||
|
||||
if channel_mask != None:
|
||||
cmd = 'dataset channelmask %d' % channel_mask
|
||||
self.send_command(cmd)
|
||||
self.pexpect.expect('Done')
|
||||
|
||||
if master_key != None:
|
||||
cmd = 'dataset masterkey ' + master_key
|
||||
self.send_command(cmd)
|
||||
@@ -514,7 +519,7 @@ class Node:
|
||||
self.pexpect.expect('Done')
|
||||
|
||||
def send_mgmt_active_set(self, active_timestamp=None, channel=None, panid=None, mesh_local=None,
|
||||
network_name=None):
|
||||
network_name=None):
|
||||
cmd = 'dataset mgmtsetcommand active '
|
||||
|
||||
if active_timestamp != None:
|
||||
|
||||
Reference in New Issue
Block a user