Remove ccsdk-odlsli-image download
[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 # start CCSDK containers with docker compose and configuration from docker-compose.yml
54 curl -L https://github.com/docker/compose/releases/download/1.9.0/docker-compose-`uname -s`-`uname -m` > docker-compose
55 chmod +x docker-compose
56 ./docker-compose up -d
57
58 # WAIT 5 minutes maximum and test every 5 seconds if CCSDK is up using HealthCheck API
59 TIME_OUT=500
60 INTERVAL=30
61 TIME=0
62 while [ "$TIME" -lt "$TIME_OUT" ]; do
63   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
64
65   if [ "$response" == "200" ]; then
66     echo CCSDK started in $TIME seconds
67     break;
68   fi
69
70   echo Sleep: $INTERVAL seconds before testing if CCSDK is up. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds
71   sleep $INTERVAL
72   TIME=$(($TIME+$INTERVAL))
73 done
74
75 if [ "$TIME" -ge "$TIME_OUT" ]; then
76    echo TIME OUT: Docker containers not started in $TIME_OUT seconds... Could cause problems for testing activities...
77 fi
78
79 #sleep 800
80
81 TIME_OUT=1500
82 INTERVAL=60
83 TIME=0
84 while [ "$TIME" -lt "$TIME_OUT" ]; do
85
86 response=$(docker exec ccsdk_odlsli_container /opt/opendaylight/current/bin/client system:start-level)
87
88   if [ "$response" == "Level 100" ] ; then
89     echo CCSDK karaf started in $TIME seconds
90     break;
91   fi
92
93   echo Sleep: $INTERVAL seconds before testing if CCSDK is up. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds
94   sleep $INTERVAL
95   TIME=$(($TIME+$INTERVAL))
96 done
97
98 if [ "$TIME" -ge "$TIME_OUT" ]; then
99    echo TIME OUT: karaf session not started in $TIME_OUT seconds... Could cause problems for testing activities...
100 fi
101
102 response=$(docker exec ccsdk_odlsli_container /opt/opendaylight/current/bin/client system:start-level)
103 num_bundles=$(docker exec ccsdk_odlsli_container /opt/opendaylight/current/bin/client bundle:list | tail -1 | cut -d\| -f1)
104
105   if [ "$response" == "Level 100" ] && [ "$num_bundles" -ge 333 ]; then
106     num_bundles=$(docker exec ccsdk_odlsli_container /opt/opendaylight/current/bin/client bundle:list | tail -1 | cut -d\| -f1)
107     num_failed_bundles=$(docker exec ccsdk_odlsli_container /opt/opendaylight/current/bin/client bundle:list | grep Failure | wc -l)
108     failed_bundles=$(docker exec ccsdk_odlsli_container /opt/opendaylight/current/bin/client bundle:list | grep Failure)
109     echo There is/are $num_failed_bundles failed bundles out of $num_bundles installed bundles.
110   fi
111
112 if [ "$num_failed_bundles" -ge 1 ]; then
113   echo "The following bundle(s) are in a failed state: "
114   echo "  $failed_bundles"
115 fi
116
117 # Pass any variables required by Robot test suites in ROBOT_VARIABLES
118 ROBOT_VARIABLES="-v SCRIPTS:${SCRIPTS}"
119