blob: 0ea9f925bacde43b45ce5f20a20955f51b57da0d [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# Modifications copyright (c) 2017 AT&T Intellectual Property
18#
19# Place the scripts in run order:
20SCRIPTS="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
Gary Wu13111e92018-09-27 11:31:33 -070021source ${WORKSPACE}/scripts/appc/script1.sh
Gary Wu9abb61c2018-09-27 10:38:50 -070022
23export APPC_DOCKER_IMAGE_VERSION=1.4.0-SNAPSHOT-latest
24export CCSDK_DOCKER_IMAGE_VERSION=0.2-STAGING-latest
25export BRANCH=master
26export SOLUTION_NAME=onap
27
28export NEXUS_USERNAME=docker
29export NEXUS_PASSWD=docker
30export NEXUS_DOCKER_REPO=nexus3.onap.org:10001
31export DMAAP_TOPIC=AUTO
32
33export MTU=$(/sbin/ifconfig | grep MTU | sed 's/.*MTU://' | sed 's/ .*//' | sort -n | head -1)
34
35if [ "$MTU" == "" ]; then
36 export MTU="1450"
37fi
38
39
40# Clone APPC repo to get docker-compose for APPC
41mkdir -p $WORKSPACE/archives/appc
42cd $WORKSPACE/archives
43git clone -b $BRANCH --single-branch http://gerrit.onap.org/r/appc/deployment.git appc
44cd $WORKSPACE/archives/appc
45git pull
46cd $WORKSPACE/archives/appc/docker-compose
47sed -i "s/DMAAP_TOPIC_ENV=.*/DMAAP_TOPIC_ENV="$DMAAP_TOPIC"/g" docker-compose.yml
48docker login -u $NEXUS_USERNAME -p $NEXUS_PASSWD $NEXUS_DOCKER_REPO
49docker pull $NEXUS_DOCKER_REPO/${SOLUTION_NAME}/appc-image:$APPC_DOCKER_IMAGE_VERSION
50docker tag $NEXUS_DOCKER_REPO/${SOLUTION_NAME}/appc-image:$APPC_DOCKER_IMAGE_VERSION ${SOLUTION_NAME}/appc-image:latest
51docker pull $NEXUS_DOCKER_REPO/${SOLUTION_NAME}/ccsdk-dgbuilder-image:$CCSDK_DOCKER_IMAGE_VERSION
52docker tag $NEXUS_DOCKER_REPO/${SOLUTION_NAME}/ccsdk-dgbuilder-image:$CCSDK_DOCKER_IMAGE_VERSION ${SOLUTION_NAME}/ccsdk-dgbuilder-image:latest
53docker pull $NEXUS_DOCKER_REPO/${SOLUTION_NAME}/appc-cdt-image:$APPC_DOCKER_IMAGE_VERSION
54docker tag $NEXUS_DOCKER_REPO/${SOLUTION_NAME}/appc-cdt-image:$APPC_DOCKER_IMAGE_VERSION ${SOLUTION_NAME}/appc-cdt-image:latest
55
56# start APPC containers with docker compose and configuration from docker-compose.yml
57docker-compose up -d
58# WAIT 5 minutes maximum and test every 5 seconds if APPC is up using HealthCheck API
59TIME_OUT=2000
60INTERVAL=30
61TIME=0
62while [ "$TIME" -lt "$TIME_OUT" ]; do
63
64startODL_status=$(docker exec appc_controller_container ps -e | grep startODL | wc -l)
65waiting_bundles=$(docker exec appc_controller_container /opt/opendaylight/current/bin/client bundle:list | grep Waiting | wc -l)
66run_level=$(docker exec appc_controller_container /opt/opendaylight/current/bin/client system:start-level)
67
68 if [ "$run_level" == "Level 100" ] && [ "$startODL_status" -lt "1" ] && [ "$waiting_bundles" -lt "1" ] ; then
69 echo APPC started in $TIME seconds
70 break;
71 fi
72
73 echo Sleep: $INTERVAL seconds before testing if APPC is up. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds
74 sleep $INTERVAL
75 TIME=$(($TIME+$INTERVAL))
76done
77
78if [ "$TIME" -ge "$TIME_OUT" ]; then
79 echo TIME OUT: Docker containers not started in $TIME_OUT seconds... Could cause problems for testing activities...
80fi
81
82sleep 300
83
84# Pass any variables required by Robot test suites in ROBOT_VARIABLES
85ROBOT_VARIABLES="-v SCRIPTS:${SCRIPTS}"