Restructure of csit files to be used both by docker and k8s config
[policy/docker.git] / csit / resources / scripts / wait_for_rest.sh
1 #!/bin/sh
2 # ============LICENSE_START====================================================
3 # Copyright (C) 2023 Nordix Foundation.
4 # =============================================================================
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #      http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17 # SPDX-License-Identifier: Apache-2.0
18 # ============LICENSE_END======================================================
19 usage() {
20     echo args: [-t timeout] [-c command] hostname1 port1 hostname2 port2 ... >&2
21     exit 1
22 }
23 tmout=300
24 cmd=
25 while getopts c:t: opt
26 do
27     case "$opt" in
28         c)
29             cmd="$OPTARG"
30             ;;
31         t)
32             tmout="$OPTARG"
33             ;;
34         *)
35             usage
36             ;;
37     esac
38 done
39 nargs=$((OPTIND-1))
40 shift "$nargs"
41 even_args=$(($#%2))
42 if [ $# -lt 2 ] || [ "$even_args" -ne 0 ]
43 then
44     usage
45 fi
46 while [ $# -ge 2 ]
47 do
48     export host="$1"
49     export port="$2"
50     shift
51     shift
52     echo "Waiting for REST to come up on $host port $port..."
53     while [ "$tmout" -gt 0 ]
54     do
55         if command -v docker > /dev/null 2>&1
56         then
57             docker ps --format "table {{ .Names }}\t{{ .Status }}"
58         fi
59         curl "http://$host:$port" > /dev/null 2>&1
60         rc=$?
61         if [ $rc -eq 0 ]
62         then
63             break
64         else
65             tmout=$((tmout-5))
66             sleep 5
67         fi
68     done
69     if [ $rc -ne 0 ]
70     then
71         echo "$host port $port REST cannot be detected"
72         exit $rc
73     fi
74 done
75 $cmd
76 exit 0
77