blob: ce5d1085afde649a6d747042abc659df82c516db [file] [log] [blame]
Leonardo Bellini4dfc5ca2018-03-01 10:56:57 -06001#!/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#
Leonardo Bellini4dfc5ca2018-03-01 10:56:57 -060021echo "# music scripts calling";
Leonardo Bellini4dfc5ca2018-03-01 10:56:57 -060022source ${WORKSPACE}/test/csit/scripts/music/music-scripts/music_script.sh
23
24#
Leonardo Bellini4dfc5ca2018-03-01 10:56:57 -060025# add here all the configuration steps eventually needed to be carried out for music CSIT testing
26#
Leonardo Bellini4dfc5ca2018-03-01 10:56:57 -060027echo "# music configuration step";
Leonardo Bellinid5739462018-03-14 03:59:33 -050028
29CASS_IMG=nexus3.onap.org:10001/onap/music/cassandra_music:latest
Nelson,Thomas(tn1381)(arthurdent3)9f3cab82018-09-05 14:06:45 -040030TOMCAT_IMG=nexus3.onap.org:10001/library/tomcat:8.5
Leonardo Bellinid5739462018-03-14 03:59:33 -050031ZK_IMG=nexus3.onap.org:10001/library/zookeeper:3.4
32MUSIC_IMG=nexus3.onap.org:10001/onap/music/music:latest
33WORK_DIR=/tmp/music
34CASS_USERNAME=nelson24
35CASS_PASSWORD=winman123
Leonardo Bellinide47fd42018-03-07 12:07:30 -060036MUSIC_SOURCE_PROPERTIES=${WORKSPACE}/test/csit/scripts/music/music-properties
37MUSIC_PROPERTIES=/tmp/music/properties
38MUSIC_LOGS=/tmp/music/logs
Leonardo Bellinide47fd42018-03-07 12:07:30 -060039mkdir -p ${MUSIC_PROPERTIES}
40mkdir -p ${MUSIC_LOGS}
Nelson,Thomas(tn1381)(arthurdent3)9f3cab82018-09-05 14:06:45 -040041mkdir -p ${MUSIC_LOGS}/MUSIC
42
Leonardo Bellinide47fd42018-03-07 12:07:30 -060043
Leonardo Bellinid5739462018-03-14 03:59:33 -050044cp ${MUSIC_SOURCE_PROPERTIES}/* ${WORK_DIR}/properties
Leonardo Bellinide47fd42018-03-07 12:07:30 -060045
Leonardo Bellinid5739462018-03-14 03:59:33 -050046# Create Volume for mapping war file and tomcat
47docker volume create --name music-vol;
Leonardo Bellinide47fd42018-03-07 12:07:30 -060048
Leonardo Bellinid5739462018-03-14 03:59:33 -050049# Create a network for all the containers to run in.
50docker network create music-net;
Leonardo Bellinide47fd42018-03-07 12:07:30 -060051
Leonardo Bellinid5739462018-03-14 03:59:33 -050052# Start Cassandra
53docker run -d --name music-db --network music-net -p "7000:7000" -p "7001:7001" -p "7199:7199" -p "9042:9042" -p "9160:9160" -e CASSUSER=${CASS_USERNAME} -e CASSPASS=${CASS_PASSWORD} ${CASS_IMG};
54
Leonardo Bellini6515d692018-04-03 09:48:43 -050055CASSA_IP=`docker inspect -f '{{ $network := index .NetworkSettings.Networks "music-net" }}{{ $network.IPAddress}}' music-db`
56echo "CASSANDRA_IP=${CASSA_IP}"
57${WORKSPACE}/test/csit/scripts/optf-has/has/wait_for_port.sh ${CASSA_IP} 9042
58
Leonardo Bellinid5739462018-03-14 03:59:33 -050059# Start Music war
60docker run -d --name music-war -v music-vol:/app ${MUSIC_IMG};
61
62# Start Zookeeper
63docker run -d --name music-zk --network music-net -p "2181:2181" -p "2888:2888" -p "3888:3888" ${ZK_IMG};
64
Leonardo Bellini6515d692018-04-03 09:48:43 -050065ZOO_IP=`docker inspect -f '{{ $network := index .NetworkSettings.Networks "music-net" }}{{ $network.IPAddress}}' music-zk`
66echo "ZOOKEEPER_IP=${ZOO_IP}"
67
68# Delay between Cassandra/Zookeeper and Tomcat
69sleep 60;
Leonardo Bellinid5739462018-03-14 03:59:33 -050070
71# Start Up tomcat - Needs to have properties,logs dir and war file volume mapped.
72docker 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};
73
74# Connect tomcat to host bridge network so that its port can be seen.
75docker network connect bridge music-tomcat;
76
Leonardo Bellinide47fd42018-03-07 12:07:30 -060077TOMCAT_IP=`docker inspect --format '{{ .NetworkSettings.Networks.bridge.IPAddress}}' music-tomcat`
78echo "TOMCAT_IP=${TOMCAT_IP}"
79
Leonardo Bellini293263e2018-03-09 07:34:07 -060080${WORKSPACE}/test/csit/scripts/music/music-scripts/wait_for_port.sh ${TOMCAT_IP} 8080
Leonardo Bellinide47fd42018-03-07 12:07:30 -060081
Nelson,Thomas(tn1381)(arthurdent3)9f3cab82018-09-05 14:06:45 -040082sleep 20;
83echo "get the tomcat logs to make sure its running music properly"
84echo "======== TOMCAT Logs =============="
85docker logs music-tomcat
86# Needed only if we need to look at localhost logs.
87#echo "===== MUSIC localhost Log ===================="
88#docker exec music-tomcat /bin/bash -c "cat /usr/local/tomcat/logs/localhost*"
89
90echo "===== MUSIC Log ===================="
91ls -al $MUSIC_LOGS/MUSIC
92docker exec music-tomcat /bin/bash -c "cat /opt/app/music/logs/MUSIC/music.log"
93echo "===== MUSIC error log =================="
94docker exec music-tomcat /bin/bash -c "cat /opt/app/music/logs/MUSIC/error.log"
Leonardo Bellinide47fd42018-03-07 12:07:30 -060095
Leonardo Bellinid5739462018-03-14 03:59:33 -050096echo "inspect docker things for tracing purpose"
97docker inspect music-db
98docker inspect music-zk
99docker inspect music-tomcat
100docker inspect music-war
101docker volume inspect music-vol
102docker network inspect music-net
Leonardo Bellinide47fd42018-03-07 12:07:30 -0600103
Leonardo Bellini6515d692018-04-03 09:48:43 -0500104echo "dump music content just after music is started"
105docker exec music-db /usr/bin/nodetool status
106docker exec music-db /usr/bin/cqlsh -unelson24 -pwinman123 -e 'SELECT * FROM system_schema.keyspaces'
Nelson,Thomas(tn1381)(arthurdent3)9f3cab82018-09-05 14:06:45 -0400107docker exec music-db /usr/bin/cqlsh -unelson24 -pwinman123 -e 'DESCRIBE keyspace admin'
Leonardo Bellini6515d692018-04-03 09:48:43 -0500108docker exec music-db /usr/bin/cqlsh -unelson24 -pwinman123 -e 'SELECT * FROM admin.keyspace_master'
Leonardo Bellini4dfc5ca2018-03-01 10:56:57 -0600109
110
111#
112# add here all ROBOT_VARIABLES settings
113#
Leonardo Bellini4dfc5ca2018-03-01 10:56:57 -0600114echo "# music robot variables settings";
Leonardo Bellini293263e2018-03-09 07:34:07 -0600115ROBOT_VARIABLES="-v MUSIC_HOSTNAME:http://${TOMCAT_IP} -v MUSIC_PORT:8080 -v COND_HOSTNAME:http://localhost -v COND_PORT:8091"
Leonardo Bellini4dfc5ca2018-03-01 10:56:57 -0600116
117echo ${ROBOT_VARIABLES}
118
119
120