bfc6e96869a20914254055737f424ab1a63833b4
[integration/csit.git] / plans / ccsdk / healthcheck / setup.sh
1 #!/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:
20 SCRIPTS="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
21 source ${WORKSPACE}/scripts/ccsdk/script1.sh
22
23 export MTU=$(/sbin/ifconfig | grep MTU | sed 's/.*MTU://' | sed 's/ .*//' | sort -n | head -1)
24 export NEXUS_DOCKER_REPO="nexus3.onap.org:10001"
25 export NEXUS_USERNAME=docker
26 export NEXUS_PASSWD=docker
27 export DMAAP_TOPIC=AUTO
28 export CCSDK_DOCKER_IMAGE_VERSION=0.6-STAGING-latest
29
30 if [ "$MTU" == "" ]; then
31           export MTU="1450"
32 fi
33
34
35 # Clone CCSDK repo to get docker-compose for CCSDK
36 mkdir -p $WORKSPACE/archives/ccsdk
37 cd $WORKSPACE/archives
38 git clone -b master --single-branch http://gerrit.onap.org/r/ccsdk/distribution.git ccsdk
39 cd $WORKSPACE/archives/ccsdk
40 git pull
41 unset http_proxy https_proxy
42 cd $WORKSPACE/archives/ccsdk/src/main/yaml
43
44 sed -i "s/DMAAP_TOPIC_ENV=.*/DMAAP_TOPIC_ENV="AUTO"/g" docker-compose.yml
45 docker login -u $NEXUS_USERNAME -p $NEXUS_PASSWD $NEXUS_DOCKER_REPO
46
47 docker pull $NEXUS_DOCKER_REPO/onap/ccsdk-odlsli-alpine-image:$CCSDK_DOCKER_IMAGE_VERSION
48 docker tag $NEXUS_DOCKER_REPO/onap/ccsdk-odlsli-alpine-image:$CCSDK_DOCKER_IMAGE_VERSION onap/ccsdk-odlsli-alpine-image:0.4-STAGING-latest
49
50 docker pull $NEXUS_DOCKER_REPO/onap/ccsdk-dgbuilder-image:$CCSDK_DOCKER_IMAGE_VERSION
51 docker tag $NEXUS_DOCKER_REPO/onap/ccsdk-dgbuilder-image:$CCSDK_DOCKER_IMAGE_VERSION onap/ccsdk-dgbuilder-image:0.4-STAGING-latest
52
53 docker pull $NEXUS_DOCKER_REPO/onap/ccsdk-odlsli-image:$CCSDK_DOCKER_IMAGE_VERSION
54 docker tag $NEXUS_DOCKER_REPO/onap/ccsdk-odlsli-image:$CCSDK_DOCKER_IMAGE_VERSION onap/ccsdk-odlsli-image:0.4-STAGING-latest
55
56 # start CCSDK containers with docker compose and configuration from docker-compose.yml
57 curl -L https://github.com/docker/compose/releases/download/1.9.0/docker-compose-`uname -s`-`uname -m` > docker-compose
58 chmod +x docker-compose
59 ./docker-compose up -d
60
61 # WAIT 5 minutes maximum and test every 5 seconds if CCSDK is up using HealthCheck API
62 TIME_OUT=500
63 INTERVAL=30
64 TIME=0
65 while [ "$TIME" -lt "$TIME_OUT" ]; do
66   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
67
68   if [ "$response" == "200" ]; then
69     echo CCSDK started in $TIME seconds
70     break;
71   fi
72
73   echo Sleep: $INTERVAL seconds before testing if CCSDK is up. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds
74   sleep $INTERVAL
75   TIME=$(($TIME+$INTERVAL))
76 done
77
78 if [ "$TIME" -ge "$TIME_OUT" ]; then
79    echo TIME OUT: Docker containers not started in $TIME_OUT seconds... Could cause problems for testing activities...
80 fi
81
82 #sleep 800
83
84 TIME_OUT=1500
85 INTERVAL=60
86 TIME=0
87 while [ "$TIME" -lt "$TIME_OUT" ]; do
88
89 response=$(docker exec ccsdk_odlsli_container /opt/opendaylight/current/bin/client system:start-level)
90
91   if [ "$response" == "Level 100" ] ; then
92     echo CCSDK karaf started in $TIME seconds
93     break;
94   fi
95
96   echo Sleep: $INTERVAL seconds before testing if CCSDK is up. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds
97   sleep $INTERVAL
98   TIME=$(($TIME+$INTERVAL))
99 done
100
101 if [ "$TIME" -ge "$TIME_OUT" ]; then
102    echo TIME OUT: karaf session not started in $TIME_OUT seconds... Could cause problems for testing activities...
103 fi
104
105 response=$(docker exec ccsdk_odlsli_container /opt/opendaylight/current/bin/client system:start-level)
106 num_bundles=$(docker exec ccsdk_odlsli_container /opt/opendaylight/current/bin/client bundle:list | tail -1 | cut -d\| -f1)
107
108   if [ "$response" == "Level 100" ] && [ "$num_bundles" -ge 333 ]; then
109     num_bundles=$(docker exec ccsdk_odlsli_container /opt/opendaylight/current/bin/client bundle:list | tail -1 | cut -d\| -f1)
110     num_failed_bundles=$(docker exec ccsdk_odlsli_container /opt/opendaylight/current/bin/client bundle:list | grep Failure | wc -l)
111     failed_bundles=$(docker exec ccsdk_odlsli_container /opt/opendaylight/current/bin/client bundle:list | grep Failure)
112     echo There is/are $num_failed_bundles failed bundles out of $num_bundles installed bundles.
113   fi
114
115 if [ "$num_failed_bundles" -ge 1 ]; then
116   echo "The following bundle(s) are in a failed state: "
117   echo "  $failed_bundles"
118 fi
119
120 # Pass any variables required by Robot test suites in ROBOT_VARIABLES
121 ROBOT_VARIABLES="-v SCRIPTS:${SCRIPTS}"
122