blob: 1364c87b65bb456331836dd91d97cb4bd9c71cb4 [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#
Gary Wu13111e92018-09-27 11:31:33 -070017echo "### This is ${WORKSPACE}/scripts/optf-has/has/has_script.sh"
Gary Wu9abb61c2018-09-27 10:38:50 -070018#
19# add here whatever commands is needed to prepare the optf/has CSIT testing
20#
21
22# assume the base is /tmp dir
23DIR=/tmp
24
25# the directory of the script
26echo ${DIR}
27cd ${DIR}
28
29# create directory for volume and copy configuration file
30# run docker containers
31COND_CONF=/tmp/conductor/properties/conductor.conf
32LOG_CONF=/tmp/conductor/properties/log.conf
33IMAGE_NAME=nexus3.onap.org:10001/onap/optf-has
Dileep Ranganathan04892812018-10-10 07:52:21 -070034IMAGE_VER=1.2.2-SNAPSHOT-latest
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070035BUNDLE=/tmp/conductor/properties/AAF_RootCA.cer
Gary Wu9abb61c2018-09-27 10:38:50 -070036
37mkdir -p /tmp/conductor/properties
38mkdir -p /tmp/conductor/logs
Gary Wu13111e92018-09-27 11:31:33 -070039cp ${WORKSPACE}/scripts/optf-has/has/has-properties/conductor.conf.onap /tmp/conductor/properties/conductor.conf
40cp ${WORKSPACE}/scripts/optf-has/has/has-properties/log.conf.onap /tmp/conductor/properties/log.conf
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070041cp ${WORKSPACE}/scripts/optf-has/has/has-properties/AAF_RootCA.cer /tmp/conductor/properties/AAF_RootCA.cer
Gary Wu9abb61c2018-09-27 10:38:50 -070042#chmod -R 777 /tmp/conductor/properties
43
44MUSIC_IP=`docker inspect --format '{{ .NetworkSettings.Networks.bridge.IPAddress}}' music-tomcat`
45echo "MUSIC_IP=${MUSIC_IP}"
46
47# change MUSIC reference to the local instance
48sed -i -e "s%localhost:8080/MUSIC%${MUSIC_IP}:8080/MUSIC%g" /tmp/conductor/properties/conductor.conf
49
50AAISIM_IP=`docker inspect --format '{{ .NetworkSettings.Networks.bridge.IPAddress}}' aaisim`
51echo "AAISIM_IP=${AAISIM_IP}"
52
53# change AAI reference to the local instance
54sed -i -e "s%localhost:8081/%${AAISIM_IP}:8081/%g" /tmp/conductor/properties/conductor.conf
55
56MULTICLOUDSIM_IP=`docker inspect --format '{{ .NetworkSettings.Networks.bridge.IPAddress}}' multicloudsim`
57echo "MULTICLOUDSIM_IP=${MULTICLOUDSIM_IP}"
58
59# change MULTICLOUD reference to the local instance
60sed -i -e "s%msb.onap.org:8082/%${MULTICLOUDSIM_IP}:8082/%g" /tmp/conductor/properties/conductor.conf
61
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070062AAFSIM_IP=`docker inspect --format '{{ .NetworkSettings.Networks.bridge.IPAddress}}' aafsim`
63echo "AAFSIM_IP=${AAFSIM_IP}"
64
65# change AAF reference to the local instance
66sed -i -e "s%localhost:8100/%${AAFSIM_IP}:8100/%g" /tmp/conductor/properties/conductor.conf
67
Gary Wu9abb61c2018-09-27 10:38:50 -070068#onboard conductor into music
69echo "Query MUSIC to check for reachability. Query Version"
70curl -vvvvv --noproxy "*" --request GET http://${MUSIC_IP}:8080/MUSIC/rest/v2/version -H "Content-Type: application/json"
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070071
Gary Wu9abb61c2018-09-27 10:38:50 -070072echo "Onboard conductor into music"
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070073curl -vvvvv --noproxy "*" --request POST http://${MUSIC_IP}:8080/MUSIC/rest/v2/admin/onboardAppWithMusic -H "Content-Type: application/json" -H "Authorization: Basic Y29uZHVjdG9yOmMwbmR1Y3Qwcg==" --data @${WORKSPACE}/tests/optf-has/has/data/onboard.json
Gary Wu9abb61c2018-09-27 10:38:50 -070074
75docker run -d --name cond-cont -v ${COND_CONF}:/usr/local/bin/conductor.conf -v ${LOG_CONF}:/usr/local/bin/log.conf ${IMAGE_NAME}:${IMAGE_VER} python /usr/local/bin/conductor-controller --config-file=/usr/local/bin/conductor.conf
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070076sleep 15
Gary Wu9abb61c2018-09-27 10:38:50 -070077docker run -d --name cond-api -p "8091:8091" -v ${COND_CONF}:/usr/local/bin/conductor.conf -v ${LOG_CONF}:/usr/local/bin/log.conf ${IMAGE_NAME}:${IMAGE_VER} python /usr/local/bin/conductor-api --port=8091 -- --config-file=/usr/local/bin/conductor.conf
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070078sleep 15
Gary Wu9abb61c2018-09-27 10:38:50 -070079docker run -d --name cond-solv -v ${COND_CONF}:/usr/local/bin/conductor.conf -v ${LOG_CONF}:/usr/local/bin/log.conf ${IMAGE_NAME}:${IMAGE_VER} python /usr/local/bin/conductor-solver --config-file=/usr/local/bin/conductor.conf
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070080sleep 15
Gary Wu9abb61c2018-09-27 10:38:50 -070081docker run -d --name cond-resv -v ${COND_CONF}:/usr/local/bin/conductor.conf -v ${LOG_CONF}:/usr/local/bin/log.conf ${IMAGE_NAME}:${IMAGE_VER} python /usr/local/bin/conductor-reservation --config-file=/usr/local/bin/conductor.conf
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070082sleep 5
83docker run -d --name cond-data -v ${COND_CONF}:/usr/local/bin/conductor.conf -v ${LOG_CONF}:/usr/local/bin/log.conf -v ${BUNDLE}:/usr/local/bin/AAF_RootCA.cer ${IMAGE_NAME}:${IMAGE_VER} python /usr/local/bin/conductor-data --config-file=/usr/local/bin/conductor.conf
84sleep 15
Gary Wu9abb61c2018-09-27 10:38:50 -070085
86COND_IP=`docker inspect --format '{{ .NetworkSettings.Networks.bridge.IPAddress}}' cond-api`
Gary Wu13111e92018-09-27 11:31:33 -070087${WORKSPACE}/scripts/optf-has/has/wait_for_port.sh ${COND_IP} 8091
Gary Wu9abb61c2018-09-27 10:38:50 -070088
89echo "inspect docker things for tracing purpose"
90docker inspect cond-data
91docker inspect cond-cont
92docker inspect cond-api
93docker inspect cond-solv
94docker inspect cond-resv
95
96echo "dump music content just after conductor is started"
97docker exec music-db /usr/bin/nodetool status
98docker exec music-db /usr/bin/cqlsh -unelson24 -pwinman123 -e 'SELECT * FROM system_schema.keyspaces'
99docker exec music-db /usr/bin/cqlsh -unelson24 -pwinman123 -e 'SELECT * FROM admin.keyspace_master'