Add healthcheck test for Netconf Server
[integration/csit.git] / plans / integration / nfsimulator / netconf-server / setup.sh
1 #!/bin/bash
2 #
3 # Copyright (C) 2021 Nokia. All rights reserved.
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 # Start netconf-server image with dependencies
18 ${WORKSPACE}/scripts/integration/nfsimulator/netconf-server/start-netconf-server.sh
19
20 # Setup IP for netconf-server
21 NETCONF_SERVER_NAME=netconf-server
22 NETCONF_SERVER_REST_PORT=6555
23 NETCONF_SERVER_IP=`get-instance-ip.sh $NETCONF_SERVER_NAME`
24
25 # Wait until container ready
26 for i in {1..9}
27 do
28    RESP_CODE=$(curl -I -s -o /dev/null -w "%{http_code}"  http://${NETCONF_SERVER_IP}:${NETCONF_SERVER_REST_PORT}/healthcheck)
29    if [[ "$RESP_CODE" == '200' ]]; then
30        echo 'Netconf Server is ready'
31        export NETCONF_SERVER_IP=${NETCONF_SERVER_IP}
32        export NETCONF_SERVER_REST_PORT=${NETCONF_SERVER_REST_PORT}
33        break
34    fi
35    echo 'Waiting for Netconf Server to start up...'
36    sleep 5s
37 done