e8074ddc0f299a3d83038ae785965f5c18466474
[cps.git] / csit / plans / default / 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 # Modifications copyright (c) 2020-2021 Samsung Electronics Co., Ltd.
19 # Modifications Copyright (C) 2021 Pantheon.tech
20 # Modifications Copyright (C) 2021 Bell Canada.
21 #
22 # Branched from ccsdk/distribution to this repository Feb 23, 2021
23 #
24
25 # Copy docker-compose.yml and application.yml to archives
26 mkdir -p $WORKSPACE/archives/docker-compose
27 cp $WORKSPACE/../docker-compose/*.yml $WORKSPACE/archives/docker-compose
28 cd $WORKSPACE/archives/docker-compose
29
30 # Set env variables for docker compose
31 export DB_HOST=dbpostgresql
32 export DB_USERNAME=cps
33 export DB_PASSWORD=cps
34 # Use latest image version
35 export VERSION=latest
36
37 # download docker-compose of a required version (1.25.0 supports configuration of version 3.7)
38 curl -L https://github.com/docker/compose/releases/download/1.25.0/docker-compose-`uname -s`-`uname -m` > docker-compose
39 chmod +x docker-compose
40
41 # start CPS and PostgreSQL containers with docker compose
42 ./docker-compose up -d
43 # Validate CPS service initialization completed via periodic log checking for line like below:
44 # org.onap.cps.Application ... Started Application in X.XXX seconds
45
46 TIME_OUT=300
47 INTERVAL=5
48 TIME=0
49
50 while [ "$TIME" -le "$TIME_OUT" ]; do
51   LOG_FOUND=$( ./docker-compose logs --tail="all" | grep "org.onap.cps.Application" | egrep -c "Started Application in" )
52
53   if [ "$LOG_FOUND" -gt 0 ]; then
54     echo "CPS Service started"
55     break;
56   fi
57
58   echo "Sleep $INTERVAL seconds before next check for CPS initialization (waiting $TIME seconds; timeout is $TIME_OUT seconds)"
59   sleep $INTERVAL
60   TIME=$((TIME + INTERVAL))
61 done
62
63 if [ "$TIME" -gt "$TIME_OUT" ]; then
64    echo "TIME OUT: CPS Service wasn't able to start in $TIME_OUT seconds, setup failed."
65    exit 1;
66 fi
67
68 # The CPS host according to docker-compose.yml
69 CPS_HOST="localhost"
70 CPS_PORT="8883"
71
72 MANAGEMENT_PORT="8887"
73
74 # Pass variables required for Robot test suites in ROBOT_VARIABLES
75 ROBOT_VARIABLES="-v CPS_HOST:$CPS_HOST -v CPS_PORT:$CPS_PORT -v MANAGEMENT_PORT:$MANAGEMENT_PORT -v DATADIR:$WORKSPACE/data"
76