Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / third_party / ot-br-posix / repo / tests / scripts / check-scripts
1 #!/bin/bash
2 #
3 #  Copyright (c) 2018, The OpenThread Authors.
4 #  All rights reserved.
5 #
6 #  Redistribution and use in source and binary forms, with or without
7 #  modification, are permitted provided that the following conditions are met:
8 #  1. Redistributions of source code must retain the above copyright
9 #     notice, this list of conditions and the following disclaimer.
10 #  2. Redistributions in binary form must reproduce the above copyright
11 #     notice, this list of conditions and the following disclaimer in the
12 #     documentation and/or other materials provided with the distribution.
13 #  3. Neither the name of the copyright holder nor the
14 #     names of its contributors may be used to endorse or promote products
15 #     derived from this software without specific prior written permission.
16 #
17 #  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 #  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 #  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 #  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
21 #  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 #  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 #  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 #  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 #  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 #  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 #  POSSIBILITY OF SUCH DAMAGE.
28 #
29
30 set -eux
31
32 check_otbr_agent()
33 {
34     sudo dbus-send --system \
35         --dest=org.freedesktop.DBus \
36         --type=method_call \
37         --print-reply \
38         /org/freedesktop/DBus \
39         org.freedesktop.DBus.ListNames | grep -q '"io.openthread.BorderRouter.wpan0"'
40 }
41
42 main()
43 {
44     RELEASE=1 ./script/bootstrap
45     ./script/bootstrap
46     NAT64=1 ./script/setup
47     # re-run to ensure the script can run successfully multiple times
48     NAT64=1 ./script/setup
49     SOCAT_OUTPUT=/tmp/ot-socat
50
51     socat -d -d pty,raw,echo=0 pty,raw,echo=0 >/dev/null 2>$SOCAT_OUTPUT &
52     while true; do
53         if [[ "$(head -n2 $SOCAT_OUTPUT | wc -l)" == 2 ]]; then
54             RCP_PTY=$(head -n1 $SOCAT_OUTPUT | grep -o '/dev/.\+')
55             HOST_PTY=$(head -n2 $SOCAT_OUTPUT | tail -n1 | grep -o '/dev/.\+')
56             break
57         fi
58         echo 'Waiting for socat ready...'
59         sleep 1
60     done
61     echo "RCP_PTY: ${RCP_PTY}"
62     echo "HOST_PTY: ${HOST_PTY}"
63
64     if ! command -v ot-rcp; then
65         make -f third_party/openthread/repo/examples/Makefile-simulation DISABLE_DOC=1 TargetTuple=otbr
66         PATH=$PATH:output/otbr/bin
67     fi
68
69     # shellcheck disable=SC2094
70     ot-rcp 1 >"${RCP_PTY}" <"${RCP_PTY}" &
71     RADIO_URL="spinel+hdlc+uart://${HOST_PTY}" ./script/console &
72     SERVICES_PID=$!
73     sudo service tayga start
74     echo 'Waiting for services to be ready...'
75     sleep 10
76     check_otbr_agent
77     netstat -an | grep 80
78     pidof tayga
79     kill "${SERVICES_PID}"
80     sudo killall otbr-web || true
81     sudo killall otbr-agent || true
82     sudo service tayga stop || true
83     killall ot-rcp
84     killall socat
85     jobs
86     echo 'Waiting for services to end...'
87     wait
88 }
89
90 main "$@"