blob: f8d950e4a37be9d31216b24c84d2015003052552 [file] [log] [blame]
Gary Wu9abb61c2018-09-27 10:38:50 -07001#!/bin/bash
2#
3# Copyright 2016-2017 Huawei Technologies Co., Ltd.
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
18#
19# add here eventual scripts needed for music
20#
21echo "########## music scripts calling ##########";
Gary Wu13111e92018-09-27 11:31:33 -070022source ${WORKSPACE}/scripts/music/music-scripts/music_script.sh
Gary Wu9abb61c2018-09-27 10:38:50 -070023
24#
25# add here all the configuration steps eventually needed to be carried out for music CSIT testing
26#
27echo "########## music configuration step ##########";
28CASS_IMG=nexus3.onap.org:10001/onap/music/cassandra_3_11:latest
29CASS_IMG_JOB=nexus3.onap.org:10001/onap/music/cassandra_job:latest
30TOMCAT_IMG=nexus3.onap.org:10001/library/tomcat:8.5
31ZK_IMG=nexus3.onap.org:10001/library/zookeeper:3.4
32BUSYBOX_IMG=nexus3.onap.org:10001/library/busybox:latest
33MUSIC_IMG=nexus3.onap.org:10001/onap/music/music:latest
34TT=10
35WORK_DIR=/tmp/music
36CASS_USERNAME=nelson24
37CASS_PASSWORD=winman123
Gary Wu13111e92018-09-27 11:31:33 -070038MUSIC_SOURCE_PROPERTIES=${WORKSPACE}/scripts/music/music-properties
Gary Wu9abb61c2018-09-27 10:38:50 -070039MUSIC_PROPERTIES=/tmp/music/properties
40MUSIC_LOGS=/tmp/music/logs
Gary Wu13111e92018-09-27 11:31:33 -070041CQL_FILES=${WORKSPACE}/scripts/music/cql
Gary Wu9abb61c2018-09-27 10:38:50 -070042MUSIC_TRIGGER_DIR=/tmp/triggers
43TRIGGER_JAR=musictrigger-0.1.0.jar
44TRIGGER_JAR_URL=https://nexus.onap.org/service/local/repositories/autorelease-72298/content/org/onap/music/musictrigger/0.1.0/musictrigger-0.1.0.jar
45
46mkdir -p ${MUSIC_PROPERTIES}
47mkdir -p ${MUSIC_LOGS}
48mkdir -p ${MUSIC_LOGS}/MUSIC
49mkdir -p /tmp/triggers
50
51# Get Trigger
52echo "########## Get Trigger Jar ##########"
53curl -o $MUSIC_TRIGGER_DIR/$TRIGGER_JAR $TRIGGER_JAR_URL
54
55cp ${MUSIC_SOURCE_PROPERTIES}/* ${WORK_DIR}/properties
56
57# Create Volume for mapping war file and tomcat
58echo "########## create music-vol ##########"
59docker volume create --name music-vol;
60
61# Create a network for all the containers to run in.
62echo "########## create music-net ##########"
63docker network create music-net;
64
65# Start Cassandra
66echo "########## Start Cassandra (music-db) ##########"
67docker run -d --name music-db --network music-net -p "7000:7000" -p "7001:7001" -p "7199:7199" -p "9042:9042" -p "9160:9160" \
68-v $MUSIC_TRIGGER_DIR/$TRIGGER_JAR:/etc/cassandra/triggers/$TRIGGER_JAR \
69${CASS_IMG};
70
71CASSA_IP=`docker inspect -f '{{ $network := index .NetworkSettings.Networks "music-net" }}{{ $network.IPAddress}}' music-db`
72echo "CASSANDRA_IP=${CASSA_IP}"
Gary Wu13111e92018-09-27 11:31:33 -070073${WORKSPACE}/scripts/optf-has/has/wait_for_port.sh ${CASSA_IP} 9042
Gary Wu9abb61c2018-09-27 10:38:50 -070074
75# See if cassandra is up.
76echo "########## Running Test to see if Cassandra is up ##########"
77docker run --name music-casstest --network music-net \
78$BUSYBOX_IMG sh -c "until nc -z music-db 9042 && echo "success"; do echo 'No connection .. Sleeping for $TT seconds';sleep $TT; done;"
79
80# Check to see if Keyspaces are there.
81docker exec music-db cqlsh -u cassandra -p cassandra -e "DESCRIBE keyspaces;"
82
83sleep 10;
84
85# Load data into Cassandra via Cassandra Job
86echo "########## Running Cassandra Job (music-job) to load cql files ##########"
87docker run -d --name music-job --network music-net \
88-v $CQL_FILES/admin.cql:/cql/admin.cql \
89-v $CQL_FILES/admin_pw.cql:/cql/admin_pw.cql \
90-v $CQL_FILES/extra:/cql/extra \
91-e PORT=9042 \
92-e CASS_HOSTNAME=music-db \
93-e USERNAME=$CASS_USERNAME \
94-e PASSWORD=$CASS_PASSWORD \
95$CASS_IMG_JOB
96# Logs
97echo "########## Cassandra Job logs ##########"
98docker logs music-job
99
100# Start Music war
101echo "########## Start music-war ##########"
102docker run -d --name music-war -v music-vol:/app ${MUSIC_IMG};
103
104# Start Zookeeper
105echo "########## Start zookeeper (music-zk) ##########"
106docker run -d --name music-zk --network music-net -p "2181:2181" -p "2888:2888" -p "3888:3888" ${ZK_IMG};
107
108ZOO_IP=`docker inspect -f '{{ $network := index .NetworkSettings.Networks "music-net" }}{{ $network.IPAddress}}' music-zk`
109echo "ZOOKEEPER_IP=${ZOO_IP}"
110
111# Delay between Cassandra/Zookeeper and Tomcat
112sleep 10;
113
114# Start Up tomcat - Needs to have properties,logs dir and war file volume mapped.
115echo "########## Start Tomcat (music-tomcat) ##########"
116docker run -d --name music-tomcat --network music-net -p "8080:8080" -v music-vol:/usr/local/tomcat/webapps -v ${WORK_DIR}/properties:/opt/app/music/etc:ro -v ${WORK_DIR}/logs:/opt/app/music/logs ${TOMCAT_IMG};
117
118# Connect tomcat to host bridge network so that its port can be seen.
119echo "########## Create Bridge for Tomcat ##########"
120docker network connect bridge music-tomcat;
121
122TOMCAT_IP=`docker inspect --format '{{ .NetworkSettings.Networks.bridge.IPAddress}}' music-tomcat`
123echo "TOMCAT_IP=${TOMCAT_IP}"
124
Gary Wu13111e92018-09-27 11:31:33 -0700125${WORKSPACE}/scripts/music/music-scripts/wait_for_port.sh ${TOMCAT_IP} 8080
Gary Wu9abb61c2018-09-27 10:38:50 -0700126
127sleep 20;
128echo "########## TOMCAT Logs ##########"
129docker logs music-tomcat
130# Needed only if we need to look at localhost logs.
131echo "########## MUSIC localhost Log ##########"
132docker exec music-tomcat /bin/bash -c "cat /usr/local/tomcat/logs/localhost*"
133
134echo "########## MUSIC Log ##########"
135ls -al $MUSIC_LOGS/MUSIC
136docker exec music-tomcat /bin/bash -c "cat /opt/app/music/logs/MUSIC/music.log"
137#echo "########## MUSIC error log ##########"
138#docker exec music-tomcat /bin/bash -c "cat /opt/app/music/logs/MUSIC/error.log"
139
140echo "########## inspect docker things for tracing purpose ##########"
141docker inspect music-db
142docker inspect music-zk
143docker inspect music-tomcat
144docker inspect music-war
145docker volume inspect music-vol
146docker network inspect music-net
147
148echo "########## dump music content just after music is started ##########"
149docker exec music-db /usr/bin/nodetool status
150docker exec music-db /usr/bin/cqlsh -unelson24 -pwinman123 -e 'SELECT * FROM system_schema.keyspaces'
151docker exec music-db /usr/bin/cqlsh -unelson24 -pwinman123 -e 'DESCRIBE keyspace admin'
152docker exec music-db /usr/bin/cqlsh -unelson24 -pwinman123 -e 'SELECT * FROM admin.keyspace_master'
153
154
155#
156# add here all ROBOT_VARIABLES settings
157#
158echo "########## music robot variables settings ##########";
159ROBOT_VARIABLES="-v MUSIC_HOSTNAME:http://${TOMCAT_IP} -v MUSIC_PORT:8080 -v COND_HOSTNAME:http://localhost -v COND_PORT:8091"
160
161echo ${ROBOT_VARIABLES}
162
163
164