blob: e7e8f4bfc9a64a5d9fe75be59618f66050b43fc6 [file] [log] [blame]
Ruslan Kashapovaad22402021-02-23 10:08:00 +02001#!/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
22# Copy docker-compose.yml and application.yml to archives
23mkdir -p $WORKSPACE/archives/docker-compose
24cp $WORKSPACE/../docker-compose/*.yml $WORKSPACE/archives/docker-compose
25cd $WORKSPACE/archives/docker-compose
26
27# Set env variables for docker compose
28export DB_HOST=dbpostgresql
29export DB_USERNAME=cps
30export DB_PASSWORD=cps
31# Use latest image version
32export VERSION=latest
33
34# start CPS and PostgreSQL containers with docker compose
35docker-compose up -d
36
37# Validate CPS service initialization completed via periodic log checking for line like below:
38# org.onap.cps.Application ... Started Application in X.XXX seconds
39
40TIME_OUT=300
41INTERVAL=10
42TIME=0
43
44while [ "$TIME" -le "$TIME_OUT" ]; do
45 LOG_FOUND=$( docker-compose logs --tail="all" | grep "org.onap.cps.Application" | egrep -c "Started Application in" )
46
47 if [ "$LOG_FOUND" -gt 0 ]; then
48 echo "CPS Service started"
49 break;
50 fi
51
52 echo "Sleep $INTERVAL seconds before next check for CPS initialization (waiting $TIME seconds; timeout is $TIME_OUT seconds)"
53 sleep $INTERVAL
54 TIME=$((TIME + INTERVAL))
55done
56
57if [ "$TIME" -gt "$TIME_OUT" ]; then
58 echo "TIME OUT: CPS Service wasn't able to start in $TIME_OUT seconds, setup failed."
59 exit 1;
60fi
61
62# TODO localhost works on a local environment, check if it's ok on jenkins
63CPS_HOST="http://localhost:8883"
64
65# Pass variables required for Robot test suites in ROBOT_VARIABLES
66ROBOT_VARIABLES="-v SCRIPTS:$SCRIPTS -v CPS_HOST:$CPS_HOST"
67