4d5d1c85c42bf2238c9c22933a2902eca64fb8ac
[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 #
21 # Branched from ccsdk/distribution to this repository Feb 23, 2021
22 #
23
24 # Copy docker-compose.yml and application.yml to archives
25 mkdir -p $WORKSPACE/archives/docker-compose
26 cp $WORKSPACE/../docker-compose/*.yml $WORKSPACE/archives/docker-compose
27 cd $WORKSPACE/archives/docker-compose
28
29 # Set env variables for docker compose
30 export DB_HOST=dbpostgresql
31 export DB_USERNAME=cps
32 export DB_PASSWORD=cps
33 # Use latest image version
34 export VERSION=latest
35
36 # download docker-compose of a required version (1.25.0 supports configuration of version 3.7)
37 curl -L https://github.com/docker/compose/releases/download/1.25.0/docker-compose-`uname -s`-`uname -m` > docker-compose
38 chmod +x docker-compose
39
40 # start CPS and PostgreSQL containers with docker compose
41 ./docker-compose up -d
42
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="http://localhost:8883"
70
71 # Pass variables required for Robot test suites in ROBOT_VARIABLES
72 ROBOT_VARIABLES="-v CPS_HOST:$CPS_HOST -v DATADIR:$WORKSPACE/data"
73