DMAAP-1544 - Amend versions of buscontroller merge
[dmaap/buscontroller.git] / csit / scripts / dmaap-datarouter / datarouter-launch.sh
1 #!/bin/bash
2 #
3 # ============LICENSE_START=======================================================
4 #  Copyright (C) 2021 Nordix Foundation.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #      http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18 # SPDX-License-Identifier: Apache-2.0
19 # ============LICENSE_END=========================================================
20 #
21
22 function dmaap_dr_launch() {
23   COMPOSE_PREFIX=${COMPOSE_PROJECT_NAME:-dockercompose}
24   export COMPOSE_PROJECT_NAME=$COMPOSE_PREFIX
25
26   mkdir -p ${WORKSPACE}/archives/dmaap/last_run_logs
27
28   # start DMaaP DR containers with docker compose and configuration from docker-compose.yml
29   docker login -u docker -p docker nexus3.onap.org:10001
30   docker-compose -f ${WORKSPACE}/scripts/dmaap-datarouter/docker-compose/docker-compose.yml up -d
31
32   # Wait for initialization of Docker container for datarouter-node, datarouter-prov and mariadb
33   for i in 1 2 3 4 5 6 7 8 9 10; do
34       if [[ $(docker inspect --format '{{ .State.Running }}' datarouter-node) ]] && \
35           [[ $(docker inspect --format '{{ .State.Running }}' datarouter-prov) ]] && \
36           [[ $(docker inspect --format '{{ .State.Running }}' mariadb) ]]
37       then
38           echo "DR Service Running"
39           break
40       else
41           echo sleep ${i}
42           sleep ${i}
43       fi
44   done
45
46   # Wait for healthy container datarouter-prov
47   for i in 1 2 3 4 5 6 7 8 9 10; do
48       if [[ "$(docker inspect --format '{{ .State.Health.Status }}' datarouter-prov)" = 'healthy' ]]
49       then
50           echo datarouter-prov.State.Health.Status is $(docker inspect --format '{{ .State.Health.Status }}' datarouter-prov)
51           echo "DR Service Running, datarouter-prov container is healthy"
52           break
53       else
54           echo datarouter-prov.State.Health.Status is $(docker inspect --format '{{ .State.Health.Status }}' datarouter-prov)
55           echo sleep ${i}
56           sleep ${i}
57           if [[ ${i} = 10 ]]
58           then
59               echo datarouter-prov container is not in healthy state - the test is not made, teardown...
60               docker-compose rm -sf
61               exit 1
62           fi
63       fi
64   done
65
66   DR_PROV_IP=`get-instance-ip.sh datarouter-prov`
67   DR_NODE_IP=`get-instance-ip.sh datarouter-node`
68   echo DR_PROV_IP=${DR_PROV_IP}
69   echo DR_NODE_IP=${DR_NODE_IP}
70   #Pass any variables required by Robot test suites in ROBOT_VARIABLES
71   ROBOT_VARIABLES="-v DR_PROV_IP:${DR_PROV_IP} -v DR_NODE_IP:${DR_NODE_IP} -v DR_SUB_IP:${DR_SUB_IP} -v DR_SUB2_IP:${DR_SUB2_IP}"
72 }