From 203774c1811c2b0589ffa67b9664060c5b8dd1b1 Mon Sep 17 00:00:00 2001 From: Moandor Date: Mon, 6 Jul 2020 23:39:53 +0800 Subject: [PATCH] [test] add expect tests for commissioner and udp (#5196) --- tests/scripts/expect/cli-commissioner.exp | 69 ++++++++++++++++++++ tests/scripts/expect/cli-udp.exp | 79 +++++++++++++++++++++++ 2 files changed, 148 insertions(+) create mode 100755 tests/scripts/expect/cli-commissioner.exp create mode 100755 tests/scripts/expect/cli-udp.exp diff --git a/tests/scripts/expect/cli-commissioner.exp b/tests/scripts/expect/cli-commissioner.exp new file mode 100755 index 000000000..82db2bba0 --- /dev/null +++ b/tests/scripts/expect/cli-commissioner.exp @@ -0,0 +1,69 @@ +#!/usr/bin/expect -f +# +# Copyright (c) 2020, 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. +# + +source "tests/scripts/expect/_multinode.exp" + +set timeout 3 +setup_nodes + +set spawn_id $spawn_2 +send "commissioner start\n" +expect "Done" +expect "Commissioner: active" +send "commissioner provisioningurl openthread.io\n" +expect "Done" +send "commissioner joiner add * J01NME 1\n" +expect "Done" +send "commissioner joiner remove *\n" +expect "Done" +send "commissioner sessionid\n" +expect "commissioner sessionid" +expect -re {(\d+)} +set sessionid $expect_out(1,string) +send "commissioner mgmtset sessionid $sessionid steeringdata ffffffff joinerudpport 10001\n" +expect "Done" +send "commissioner mgmtset sessionid $sessionid locator 0x0100\n" +expect "Done" +send "commissioner mgmtget sessionid steeringdata joinerudpport locator binary 0b081209\n" +expect "Done" +send "commissioner stop\n" +expect "Commissioner: disabled" +expect "Done" +send "commissioner help\n" +expect "Done" +send "commissioner joiner something_invalid\n" +expect "Error 7: InvalidArgs" +send "commissioner mgmtget something_invalid\n" +expect "Error 7: InvalidArgs" +send "commissioner mgmtset something_invalid\n" +expect "Error 7: InvalidArgs" +send "commissioner\n" +expect "Error 35: InvalidCommand" + +dispose_nodes diff --git a/tests/scripts/expect/cli-udp.exp b/tests/scripts/expect/cli-udp.exp new file mode 100755 index 000000000..dda6809a1 --- /dev/null +++ b/tests/scripts/expect/cli-udp.exp @@ -0,0 +1,79 @@ +#!/usr/bin/expect -f +# +# Copyright (c) 2020, 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. +# + +source "tests/scripts/expect/_multinode.exp" + +set timeout 3 +setup_nodes + +set spawn_id $spawn_2 +send "udp open\n" +expect "Done" +send "udp bind :: 11001\n" +expect "Done" +send "ipaddr mleid\n" +expect "ipaddr mleid" +expect -re {(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4})} +set addr_2 $expect_out(1,string) + +set spawn_id $spawn_1 +send "ipaddr mleid\n" +expect "ipaddr mleid" +expect -re {(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4})} +set addr_1 $expect_out(1,string) +send "udp open\n" +expect "Done" +send "udp bind :: 11002\n" +expect "Done" +send "udp connect $addr_2 11001\n" +expect "Done" +send "udp send -s 10\n" +expect "Done" +send "udp send -x a68656c6c6f\n" +expect "Done" +send "udp send -t there\n" +expect "Done" + +set spawn_id $spawn_2 +expect "10 bytes from $addr_1 11002 0123456789" +expect "6 bytes from $addr_1 11002" +expect "hello" +expect "5 bytes from $addr_1 11002 there" + +set spawn_id $spawn_1 +send "udp help\n" +expect "Done" +send "udp connect something_invalid\n" +expect "Error 7: InvalidArgs" +send "udp send -x something_invalid\n" +expect "Error 7: InvalidArgs" +send "udp\n" +expect "Error 7: InvalidArgs" + +dispose_nodes