DMaaP MR CSIT cleanup
[integration/csit.git] / plans / dmaap / mrpubsub / setup.sh
1 #!/bin/bash
2 #
3 # ============LICENSE_START=======================================================
4 # ONAP DMAAP MR 
5 # ================================================================================
6 # Copyright (C) 2017 AT&T Intellectual Property. All rights
7 #                             reserved.
8 # ================================================================================
9 # Licensed under the Apache License, Version 2.0 (the "License");
10 # you may not use this file except in compliance with the License.
11 # You may obtain a copy of the License at
12 #
13 # http://www.apache.org/licenses/LICENSE-2.0
14 #
15 # Unless required by applicable law or agreed to in writing, software
16 # distributed under the License is distributed on an "AS IS" BASIS,
17 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 # See the License for the specific language governing permissions and
19 # limitations under the License.
20 # ============LICENSE_END============================================
21 # ===================================================================
22 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
23 #
24 # Place the scripts in run order:
25 source ${SCRIPTS}/common_functions.sh
26
27 # Clone DMaaP Message Router repo
28 mkdir -p $WORKSPACE/archives/dmaapmr
29 cd $WORKSPACE/archives/dmaapmr
30 #unset http_proxy https_proxy
31 git clone --depth 1 http://gerrit.onap.org/r/dmaap/messagerouter/messageservice -b master
32 git pull
33 cd $WORKSPACE/archives/dmaapmr/messageservice/src/main/resources/docker-compose
34 cp $WORKSPACE/archives/dmaapmr/messageservice/bundleconfig-local/etc/appprops/MsgRtrApi.properties /var/tmp/
35
36
37
38 # Update kafkfa and zookeeper properties in MsgRtrApi.propeties which will be copied to DMaaP Container
39 sed -i -e 's/<zookeeper_host>/zookeeper/' /var/tmp/MsgRtrApi.properties
40 sed -i -e 's/<kafka_host>:<kafka_port>/kafka:9092/' /var/tmp/MsgRtrApi.properties
41
42 # start DMaaP MR containers with docker compose and configuration from docker-compose.yml
43 docker-compose build
44 docker login -u docker -p docker nexus3.onap.org:10001
45 docker-compose up -d  
46
47 # Wait for initialization of Docker containers
48 for i in {1..50}; do
49         if [ $(docker inspect --format '{{ .State.Running }}' dockercompose_dmaap_1) ] && \
50                 [ $(docker inspect --format '{{ .State.Running }}' dockercompose_zookeeper_1) ] && \
51                 [ $(docker inspect --format '{{ .State.Running }}' dockercompose_dmaap_1) ]
52         then
53                 echo "DMaaP Service Running"
54                 break
55         else
56                 echo sleep $i
57                 sleep $i
58         fi
59 done
60
61 DMAAP_MR_IP=$(docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' dockercompose_dmaap_1)
62 KAFKA_IP=$(docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' dockercompose_kafka_1)
63 ZOOKEEPER_IP=$(docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' dockercompose_zookeeper_1)
64
65 echo DMAAP_MR_IP=${DMAAP_MR_IP}
66 echo KAFKA_IP=${KAFKA_IP}
67 echo ZOOKEEPER_IP=${ZOOKEEPER_IP}
68
69 # Wait for initialization of docker services
70 for i in {1..50}; do
71     curl -sS -m 1 ${DMAAP_MR_IP}:3904/events/TestTopic && break 
72     echo sleep $i
73     sleep $i
74 done
75
76 #Pass any variables required by Robot test suites in ROBOT_VARIABLES
77 ROBOT_VARIABLES="-v DMAAP_MR_IP:${DMAAP_MR_IP}"