blob: d31ce46ba42a6902e10fe00006e2c5e880d06e4c [file] [log] [blame]
#!/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/_common.exp"
source "tests/scripts/expect/_multinode.exp"
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