blob: e1f2cb46ec2ff70dec6f12b8d9156a61081688db [file] [log] [blame]
econwar3acb57a2019-01-25 12:05:45 +00001#!/bin/bash
2#
3# ============LICENSE_START=======================================================
4# Copyright (C) 2019 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#
efiacor3d4b2a42019-10-11 17:03:25 +010021
22
econwar3acb57a2019-01-25 12:05:45 +000023source ${SCRIPTS}/common_functions.sh
24
25# Clone DMaaP Data Router repo
26mkdir -p $WORKSPACE/archives/dmaapdr
27cd $WORKSPACE/archives/dmaapdr
28
29git clone --depth 1 https://gerrit.onap.org/r/dmaap/datarouter -b master
30cd datarouter
31git pull
32cd $WORKSPACE/archives/dmaapdr/datarouter/datarouter-docker-compose/src/main/resources
efiacor3d4b2a42019-10-11 17:03:25 +010033cp $WORKSPACE/plans/dmaap-datarouter/ssl-dr-suite/docker-compose/docker-compose.yml .
34cp $WORKSPACE/plans/dmaap-datarouter/ssl-dr-suite/docker-compose/provserver.properties ./prov_data/provserver.properties
35cp $WORKSPACE/plans/dmaap-datarouter/ssl-dr-suite/docker-compose/node.properties ./node_data/node.properties
econwar3acb57a2019-01-25 12:05:45 +000036
37# start DMaaP DR containers with docker compose and configuration from docker-compose.yml
38docker login -u docker -p docker nexus3.onap.org:10001
39docker-compose up -d
40
41# Wait for initialization of Docker container for datarouter-node, datarouter-prov and mariadb
42for i in {1..10}; do
efiacor3d4b2a42019-10-11 17:03:25 +010043 if [ $(docker inspect --format '{{ .State.Running }}' subscriber-node2) ] && \
econwar3acb57a2019-01-25 12:05:45 +000044 [ $(docker inspect --format '{{ .State.Running }}' subscriber-node) ] && \
efiacor3d4b2a42019-10-11 17:03:25 +010045 [ $(docker inspect --format '{{ .State.Running }}' datarouter-node) ] && \
46 [ $(docker inspect --format '{{ .State.Running }}' datarouter-prov) ] && \
econwar3acb57a2019-01-25 12:05:45 +000047 [ $(docker inspect --format '{{ .State.Running }}' mariadb) ]
48 then
49 echo "DR Service Running"
50 break
51 else
52 echo sleep $i
53 sleep $i
54 fi
55done
56
efiacor3d4b2a42019-10-11 17:03:25 +010057# Wait for healthy container datarouter-prov
58for i in {1..10}; do
59 if [ "$(docker inspect --format '{{ .State.Health.Status }}' datarouter-prov)" = 'healthy' ]
60 then
61 echo datarouter-prov.State.Health.Status is $(docker inspect --format '{{ .State.Health.Status }}' datarouter-prov)
62 echo "DR Service Running, datarouter-prov container is healthy"
63 break
64 else
65 echo datarouter-prov.State.Health.Status is $(docker inspect --format '{{ .State.Health.Status }}' datarouter-prov)
66 echo sleep $i
67 sleep $i
68 if [ $i = 10 ]
69 then
70 echo datarouter-prov container is not in healthy state - the test is not made, teardown...
71 cd $WORKSPACE/archives/dmaapdr/datarouter/datarouter-docker-compose/src/main/resources
72 docker-compose rm -sf
73 exit 1
74 fi
75 fi
76done
77
econwar3acb57a2019-01-25 12:05:45 +000078DR_PROV_IP=`get-instance-ip.sh datarouter-prov`
79DR_NODE_IP=`get-instance-ip.sh datarouter-node`
80DR_SUB_IP=`get-instance-ip.sh subscriber-node`
efiacor3d4b2a42019-10-11 17:03:25 +010081DR_SUB2_IP=`get-instance-ip.sh subscriber-node2`
econwar3acb57a2019-01-25 12:05:45 +000082DR_GATEWAY_IP=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.Gateway}}{{end}}' datarouter-prov)
83
84echo DR_PROV_IP=${DR_PROV_IP}
85echo DR_NODE_IP=${DR_NODE_IP}
86echo DR_SUB_IP=${DR_SUB_IP}
efiacor3d4b2a42019-10-11 17:03:25 +010087echo DR_SUB2_IP=${DR_SUB2_IP}
econwar3acb57a2019-01-25 12:05:45 +000088echo DR_GATEWAY_IP=${DR_GATEWAY_IP}
89
90sudo sed -i "$ a $DR_PROV_IP dmaap-dr-prov" /etc/hosts
91sudo sed -i "$ a $DR_NODE_IP dmaap-dr-node" /etc/hosts
92
93python $WORKSPACE/scripts/dmaap-datarouter/update_ca.py
94
efiacor3d4b2a42019-10-11 17:03:25 +010095docker 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"
econwar3acb57a2019-01-25 12:05:45 +000096
efiacor3d4b2a42019-10-11 17:03:25 +010097#Pass any variables required by Robot test suites in ROBOT_VARIABLES
98ROBOT_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}"