blob: 475f930154475e7143c7c1a5456b1df28a12fe84 [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
Ruoyu27400842018-11-28 05:30:34 +000034IMAGE_VER=1.2.5-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
Dileep Ranganathan425ba922018-10-04 15:34:34 -070038mkdir -p /tmp/sms/properties
Gary Wu9abb61c2018-09-27 10:38:50 -070039mkdir -p /tmp/conductor/logs
Gary Wu13111e92018-09-27 11:31:33 -070040cp ${WORKSPACE}/scripts/optf-has/has/has-properties/conductor.conf.onap /tmp/conductor/properties/conductor.conf
41cp ${WORKSPACE}/scripts/optf-has/has/has-properties/log.conf.onap /tmp/conductor/properties/log.conf
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070042cp ${WORKSPACE}/scripts/optf-has/has/has-properties/AAF_RootCA.cer /tmp/conductor/properties/AAF_RootCA.cer
Dileep Ranganathan425ba922018-10-04 15:34:34 -070043cp ${WORKSPACE}/scripts/optf-has/has/has-properties/has.json /tmp/sms/properties/has.json
Gary Wu9abb61c2018-09-27 10:38:50 -070044#chmod -R 777 /tmp/conductor/properties
45
46MUSIC_IP=`docker inspect --format '{{ .NetworkSettings.Networks.bridge.IPAddress}}' music-tomcat`
47echo "MUSIC_IP=${MUSIC_IP}"
Dileep Ranganathan425ba922018-10-04 15:34:34 -070048SMS_IP=`get-instance-ip.sh sms`
49echo "SMS_IP=${SMS_IP}"
Gary Wu9abb61c2018-09-27 10:38:50 -070050
51# change MUSIC reference to the local instance
52sed -i -e "s%localhost:8080/MUSIC%${MUSIC_IP}:8080/MUSIC%g" /tmp/conductor/properties/conductor.conf
53
54AAISIM_IP=`docker inspect --format '{{ .NetworkSettings.Networks.bridge.IPAddress}}' aaisim`
55echo "AAISIM_IP=${AAISIM_IP}"
56
57# change AAI reference to the local instance
58sed -i -e "s%localhost:8081/%${AAISIM_IP}:8081/%g" /tmp/conductor/properties/conductor.conf
59
60MULTICLOUDSIM_IP=`docker inspect --format '{{ .NetworkSettings.Networks.bridge.IPAddress}}' multicloudsim`
61echo "MULTICLOUDSIM_IP=${MULTICLOUDSIM_IP}"
62
63# change MULTICLOUD reference to the local instance
64sed -i -e "s%msb.onap.org:8082/%${MULTICLOUDSIM_IP}:8082/%g" /tmp/conductor/properties/conductor.conf
65
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070066AAFSIM_IP=`docker inspect --format '{{ .NetworkSettings.Networks.bridge.IPAddress}}' aafsim`
67echo "AAFSIM_IP=${AAFSIM_IP}"
68
69# change AAF reference to the local instance
70sed -i -e "s%localhost:8100/%${AAFSIM_IP}:8100/%g" /tmp/conductor/properties/conductor.conf
71
Dileep Ranganathan425ba922018-10-04 15:34:34 -070072#SMS
73sed -i -e "s%aaf-sms.onap:10443%${SMS_IP}:10443%g" /tmp/conductor/properties/conductor.conf
74#Preload secrets
75docker exec -i sms /bin/sh -c "mkdir -p /preload/config"
76docker cp /tmp/sms/properties/has.json sms:/preload/config/has.json
77docker exec -i sms /bin/sh -c "/sms/bin/preload -cacert /sms/certs/aaf_root_ca.cer -jsondir /preload/config -serviceport 10443 -serviceurl http://localhost"
78docker logs vault
79
Gary Wu9abb61c2018-09-27 10:38:50 -070080#onboard conductor into music
81echo "Query MUSIC to check for reachability. Query Version"
82curl -vvvvv --noproxy "*" --request GET http://${MUSIC_IP}:8080/MUSIC/rest/v2/version -H "Content-Type: application/json"
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070083
Gary Wu9abb61c2018-09-27 10:38:50 -070084echo "Onboard conductor into music"
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070085curl -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 -070086
Dileep Ranganathan425ba922018-10-04 15:34:34 -070087docker run -d --name cond-cont -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-controller --config-file=/usr/local/bin/conductor.conf
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070088sleep 15
Dileep Ranganathan425ba922018-10-04 15:34:34 -070089docker run -d --name cond-api -p "8091:8091" -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-api --port=8091 -- --config-file=/usr/local/bin/conductor.conf
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070090sleep 15
Dileep Ranganathan425ba922018-10-04 15:34:34 -070091docker run -d --name cond-solv -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-solver --config-file=/usr/local/bin/conductor.conf
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070092sleep 15
Dileep Ranganathan425ba922018-10-04 15:34:34 -070093docker run -d --name cond-resv -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-reservation --config-file=/usr/local/bin/conductor.conf
Dileep Ranganathan5dc29ae2018-10-06 16:35:11 -070094sleep 5
95docker 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
96sleep 15
Gary Wu9abb61c2018-09-27 10:38:50 -070097
98COND_IP=`docker inspect --format '{{ .NetworkSettings.Networks.bridge.IPAddress}}' cond-api`
Gary Wu13111e92018-09-27 11:31:33 -070099${WORKSPACE}/scripts/optf-has/has/wait_for_port.sh ${COND_IP} 8091
Gary Wu9abb61c2018-09-27 10:38:50 -0700100
101echo "inspect docker things for tracing purpose"
102docker inspect cond-data
103docker inspect cond-cont
104docker inspect cond-api
105docker inspect cond-solv
106docker inspect cond-resv
107
108echo "dump music content just after conductor is started"
109docker exec music-db /usr/bin/nodetool status
110docker exec music-db /usr/bin/cqlsh -unelson24 -pwinman123 -e 'SELECT * FROM system_schema.keyspaces'
111docker exec music-db /usr/bin/cqlsh -unelson24 -pwinman123 -e 'SELECT * FROM admin.keyspace_master'