6d38913dded7d8137bd68974c0ed2ca2357672b4
[integration/csit.git] / 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
24     subscribers_required=$1
25     mkdir -p ${WORKSPACE}/archives/dmaap/dr/last_run_logs
26
27     # start DMaaP DR containers with docker compose and configuration from docker-compose.yml
28     docker login -u docker -p docker nexus3.onap.org:10001
29     if [[ ${subscribers_required} == true ]]; then
30         docker-compose -f ${WORKSPACE}/scripts/dmaap-datarouter/docker-compose/docker-compose.yml up -d
31     else
32         docker-compose -f ${WORKSPACE}/scripts/dmaap-datarouter/docker-compose/docker-compose.yml up -d datarouter-prov datarouter-node mariadb
33     fi
34
35     # Wait for initialization of Docker container for datarouter-node, datarouter-prov and mariadb
36     for i in 1 2 3 4 5 6 7 8 9 10; do
37         if [[ $(docker inspect --format '{{ .State.Running }}' datarouter-node) ]] && \
38             [[ $(docker inspect --format '{{ .State.Running }}' datarouter-prov) ]] && \
39             [[ $(docker inspect --format '{{ .State.Running }}' mariadb) ]]
40         then
41             echo "DR Service Running"
42             break
43         else
44             echo sleep ${i}
45             sleep ${i}
46         fi
47     done
48
49     # Wait for healthy container datarouter-prov
50     for i in 1 2 3 4 5 6 7 8 9 10; do
51         if [[ "$(docker inspect --format '{{ .State.Health.Status }}' datarouter-prov)" = 'healthy' ]]
52         then
53             echo datarouter-prov.State.Health.Status is $(docker inspect --format '{{ .State.Health.Status }}' datarouter-prov)
54             echo "DR Service Running, datarouter-prov container is healthy"
55             break
56         else
57             echo datarouter-prov.State.Health.Status is $(docker inspect --format '{{ .State.Health.Status }}' datarouter-prov)
58             echo sleep ${i}
59             sleep ${i}
60             if [[ ${i} = 10 ]]
61             then
62                 echo datarouter-prov container is not in healthy state - the test is not made, teardown...
63                 docker-compose rm -sf
64                 exit 1
65             fi
66         fi
67     done
68
69     DR_PROV_IP=`get-instance-ip.sh datarouter-prov`
70     DR_NODE_IP=`get-instance-ip.sh datarouter-node`
71     DR_GATEWAY_IP=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.Gateway}}{{end}}' datarouter-prov)
72     echo DR_PROV_IP=${DR_PROV_IP}
73     echo DR_NODE_IP=${DR_NODE_IP}
74     echo DR_GATEWAY_IP=${DR_GATEWAY_IP}
75     if [[ ${subscribers_required} == true ]]
76     then
77         DR_SUB_IP=`get-instance-ip.sh subscriber-node`
78         DR_SUB2_IP=`get-instance-ip.sh subscriber-node2`
79         echo DR_SUB_IP=${DR_SUB_IP}
80         echo DR_SUB2_IP=${DR_SUB2_IP}
81     fi
82
83
84     sudo sed -i "$ a $DR_PROV_IP dmaap-dr-prov" /etc/hosts
85     sudo sed -i "$ a $DR_NODE_IP dmaap-dr-node" /etc/hosts
86
87     docker exec -i datarouter-prov sh -c "curl -k -X PUT https://$DR_PROV_IP:8443/internal/api/NODES?val=dmaap-dr-node\|$DR_GATEWAY_IP"
88     docker exec -i datarouter-prov sh -c "curl -k -X PUT https://$DR_PROV_IP:8443/internal/api/PROV_AUTH_ADDRESSES?val=dmaap-dr-prov\|$DR_GATEWAY_IP"
89
90     #Pass any variables required by Robot test suites in ROBOT_VARIABLES
91     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}"
92 }