blob: 3a865647a6b908ba6c0307a4d58660919b3258ea [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/ccsdk/script1.sh
Gary Wu9abb61c2018-09-27 10:38:50 -070022
23export MTU=$(/sbin/ifconfig | grep MTU | sed 's/.*MTU://' | sed 's/ .*//' | sort -n | head -1)
24export NEXUS_DOCKER_REPO="nexus3.onap.org:10001"
25export NEXUS_USERNAME=docker
26export NEXUS_PASSWD=docker
27export DMAAP_TOPIC=AUTO
umry8364d403ad22019-10-01 11:12:15 +020028export CCSDK_DOCKER_IMAGE_VERSION=0.6-STAGING-latest
Gary Wu9abb61c2018-09-27 10:38:50 -070029
30if [ "$MTU" == "" ]; then
31 export MTU="1450"
32fi
33
34
35# Clone CCSDK repo to get docker-compose for CCSDK
36mkdir -p $WORKSPACE/archives/ccsdk
37cd $WORKSPACE/archives
38git clone -b master --single-branch http://gerrit.onap.org/r/ccsdk/distribution.git ccsdk
39cd $WORKSPACE/archives/ccsdk
40git pull
41unset http_proxy https_proxy
42cd $WORKSPACE/archives/ccsdk/src/main/yaml
43
44sed -i "s/DMAAP_TOPIC_ENV=.*/DMAAP_TOPIC_ENV="AUTO"/g" docker-compose.yml
45docker login -u $NEXUS_USERNAME -p $NEXUS_PASSWD $NEXUS_DOCKER_REPO
46
Timoney, Dan (dt5972)adab1672019-02-06 12:23:14 -050047docker pull $NEXUS_DOCKER_REPO/onap/ccsdk-odlsli-alpine-image:$CCSDK_DOCKER_IMAGE_VERSION
Gary Wu9abb61c2018-09-27 10:38:50 -070048
49docker pull $NEXUS_DOCKER_REPO/onap/ccsdk-dgbuilder-image:$CCSDK_DOCKER_IMAGE_VERSION
Gary Wu9abb61c2018-09-27 10:38:50 -070050
Gary Wu9abb61c2018-09-27 10:38:50 -070051# start CCSDK containers with docker compose and configuration from docker-compose.yml
52curl -L https://github.com/docker/compose/releases/download/1.9.0/docker-compose-`uname -s`-`uname -m` > docker-compose
53chmod +x docker-compose
54./docker-compose up -d
55
56# WAIT 5 minutes maximum and test every 5 seconds if CCSDK is up using HealthCheck API
57TIME_OUT=500
58INTERVAL=30
59TIME=0
60while [ "$TIME" -lt "$TIME_OUT" ]; do
Timoney, Dan (dt5972)adab1672019-02-06 12:23:14 -050061 response=$(curl --write-out '%{http_code}' --silent --output /dev/null -H "Authorization: Basic YWRtaW46S3A4Yko0U1hzek0wV1hsaGFrM2VIbGNzZTJnQXc4NHZhb0dHbUp2VXkyVQ==" -X POST -H "X-FromAppId: csit-ccsdk" -H "X-TransactionId: csit-ccsdk" -H "Accept: application/json" -H "Content-Type: application/json" -d '{"input":{"dummy":"dummy"}}' http://localhost:8383/restconf/operations/SLI-API:healthcheck ); echo $response
Gary Wu9abb61c2018-09-27 10:38:50 -070062
63 if [ "$response" == "200" ]; then
64 echo CCSDK started in $TIME seconds
65 break;
66 fi
67
68 echo Sleep: $INTERVAL seconds before testing if CCSDK is up. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds
69 sleep $INTERVAL
70 TIME=$(($TIME+$INTERVAL))
71done
72
73if [ "$TIME" -ge "$TIME_OUT" ]; then
74 echo TIME OUT: Docker containers not started in $TIME_OUT seconds... Could cause problems for testing activities...
75fi
76
77#sleep 800
78
79TIME_OUT=1500
80INTERVAL=60
81TIME=0
82while [ "$TIME" -lt "$TIME_OUT" ]; do
83
Gary Wu9abb61c2018-09-27 10:38:50 -070084response=$(docker exec ccsdk_odlsli_container /opt/opendaylight/current/bin/client system:start-level)
Gary Wu9abb61c2018-09-27 10:38:50 -070085
Timoney, Dan (dt5972)adab1672019-02-06 12:23:14 -050086 if [ "$response" == "Level 100" ] ; then
Gary Wu9abb61c2018-09-27 10:38:50 -070087 echo CCSDK karaf started in $TIME seconds
88 break;
89 fi
90
91 echo Sleep: $INTERVAL seconds before testing if CCSDK is up. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds
92 sleep $INTERVAL
93 TIME=$(($TIME+$INTERVAL))
94done
95
96if [ "$TIME" -ge "$TIME_OUT" ]; then
97 echo TIME OUT: karaf session not started in $TIME_OUT seconds... Could cause problems for testing activities...
98fi
99
100response=$(docker exec ccsdk_odlsli_container /opt/opendaylight/current/bin/client system:start-level)
101num_bundles=$(docker exec ccsdk_odlsli_container /opt/opendaylight/current/bin/client bundle:list | tail -1 | cut -d\| -f1)
102
103 if [ "$response" == "Level 100" ] && [ "$num_bundles" -ge 333 ]; then
104 num_bundles=$(docker exec ccsdk_odlsli_container /opt/opendaylight/current/bin/client bundle:list | tail -1 | cut -d\| -f1)
105 num_failed_bundles=$(docker exec ccsdk_odlsli_container /opt/opendaylight/current/bin/client bundle:list | grep Failure | wc -l)
106 failed_bundles=$(docker exec ccsdk_odlsli_container /opt/opendaylight/current/bin/client bundle:list | grep Failure)
107 echo There is/are $num_failed_bundles failed bundles out of $num_bundles installed bundles.
108 fi
109
110if [ "$num_failed_bundles" -ge 1 ]; then
111 echo "The following bundle(s) are in a failed state: "
112 echo " $failed_bundles"
113fi
114
115# Pass any variables required by Robot test suites in ROBOT_VARIABLES
116ROBOT_VARIABLES="-v SCRIPTS:${SCRIPTS}"
117