blob: 8798e561ae1b1dcea7bc7c7b9bc953753c5095ff [file] [log] [blame]
Aaron Hay5a7cb082017-08-21 19:09:35 +00001#!/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# Modifications copyright (c) 2017 AT&T Intellectual Property
18#
19# Place the scripts in run order:
Aaron Haydb1e9c52017-08-24 15:06:59 +000020SCRIPTS="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
Aaron Hay5a7cb082017-08-21 19:09:35 +000021source ${WORKSPACE}/test/csit/scripts/appc/script1.sh
Aaron Haydb1e9c52017-08-24 15:06:59 +000022
Aaron Hay0e795a72017-09-20 03:14:04 +000023export NEXUS_USERNAME=docker
24export NEXUS_PASSWD=docker
25export NEXUS_DOCKER_REPO=nexus3.onap.org:10001
26export DMAAP_TOPIC=AUTO
Aaron Hay30a68eb2017-09-25 20:28:30 +000027export APPC_DOCKER_IMAGE_VERSION=1.1-STAGING-latest
28export CCSDK_DOCKER_IMAGE_VERSION=0.1-STAGING-latest
Aaron Hay0e795a72017-09-20 03:14:04 +000029
Aaron Hay5a7cb082017-08-21 19:09:35 +000030export MTU=$(/sbin/ifconfig | grep MTU | sed 's/.*MTU://' | sed 's/ .*//' | sort -n | head -1)
31
Aaron Hay0f33e962017-09-12 14:03:37 -040032if [ "$MTU" == "" ]; then
33 export MTU="1450"
34fi
35
Aaron Hay5a7cb082017-08-21 19:09:35 +000036
37# Clone APPC repo to get docker-compose for APPC
38mkdir -p $WORKSPACE/archives/appc
39cd $WORKSPACE/archives
40git clone -b master --single-branch http://gerrit.onap.org/r/appc/deployment.git appc
41cd $WORKSPACE/archives/appc
42git pull
43cd $WORKSPACE/archives/appc/docker-compose
Aaron Hay0e795a72017-09-20 03:14:04 +000044sed -i "s/DMAAP_TOPIC_ENV=.*/DMAAP_TOPIC_ENV="$DMAAP_TOPIC"/g" docker-compose.yml
45docker login -u $NEXUS_USERNAME -p $NEXUS_PASSWD $NEXUS_DOCKER_REPO
Aaron Hay30a68eb2017-09-25 20:28:30 +000046docker pull $NEXUS_DOCKER_REPO/openecomp/appc-image:$APPC_DOCKER_IMAGE_VERSION
47docker tag $NEXUS_DOCKER_REPO/openecomp/appc-image:$APPC_DOCKER_IMAGE_VERSION openecomp/appc-image:latest
48docker pull $NEXUS_DOCKER_REPO/onap/ccsdk-dgbuilder-image:$CCSDK_DOCKER_IMAGE_VERSION
49docker tag $NEXUS_DOCKER_REPO/onap/ccsdk-dgbuilder-image:$CCSDK_DOCKER_IMAGE_VERSION onap/ccsdk-dgbuilder-image:latest
Aaron Hay5a7cb082017-08-21 19:09:35 +000050# start APPC containers with docker compose and configuration from docker-compose.yml
Aaron Hay0f33e962017-09-12 14:03:37 -040051docker-compose up -d
Aaron Hay5a7cb082017-08-21 19:09:35 +000052# WAIT 5 minutes maximum and test every 5 seconds if APPC is up using HealthCheck API
Aaron Hay30a68eb2017-09-25 20:28:30 +000053TIME_OUT=2000
Aaron Haydb1e9c52017-08-24 15:06:59 +000054INTERVAL=30
Aaron Hay5a7cb082017-08-21 19:09:35 +000055TIME=0
56while [ "$TIME" -lt "$TIME_OUT" ]; do
Aaron Hay5a7cb082017-08-21 19:09:35 +000057
Aaron Hay30a68eb2017-09-25 20:28:30 +000058startODL_status=$(docker exec appc_controller_container ps -e | grep startODL | wc -l)
59waiting_bundles=$(docker exec appc_controller_container /opt/opendaylight/current/bin/client -u karaf bundle:list | grep Waiting | wc -l)
60run_level=$(docker exec appc_controller_container /opt/opendaylight/current/bin/client -u karaf system:start-level)
61
62 if [ "$run_level" == "Level 100" ] && [ "$startODL_status" -lt "1" ] && [ "$waiting_bundles" -lt "1" ] ; then
Aaron Hay5a7cb082017-08-21 19:09:35 +000063 echo APPC started in $TIME seconds
64 break;
65 fi
66
67 echo Sleep: $INTERVAL seconds before testing if APPC is up. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds
68 sleep $INTERVAL
69 TIME=$(($TIME+$INTERVAL))
70done
71
72if [ "$TIME" -ge "$TIME_OUT" ]; then
Aaron Hay30a68eb2017-09-25 20:28:30 +000073 echo TIME OUT: Docker containers not started in $TIME_OUT seconds... Could cause problems for testing activities...
Aaron Hay5a7cb082017-08-21 19:09:35 +000074fi
75
Aaron Hay30a68eb2017-09-25 20:28:30 +000076sleep 300
Aaron Haydb1e9c52017-08-24 15:06:59 +000077
Aaron Hay5a7cb082017-08-21 19:09:35 +000078# Pass any variables required by Robot test suites in ROBOT_VARIABLES
Aaron Haydb1e9c52017-08-24 15:06:59 +000079ROBOT_VARIABLES="-v SCRIPTS:${SCRIPTS}"