blob: 23b1705e5181a9b17931e75a482967fd9013dbe4 [file] [log] [blame]
eh552tb21b56a2017-08-23 13:44:54 +02001#!/bin/bash
2#
3# ============LICENSE_START=======================================================
4# ONAP CLAMP
5# ================================================================================
6# Copyright (C) 2017 AT&T Intellectual Property. All rights
7# reserved.
8# ================================================================================
9# Licensed under the Apache License, Version 2.0 (the "License");
10# you may not use this file except in compliance with the License.
11# You may obtain a copy of the License at
12#
13# http://www.apache.org/licenses/LICENSE-2.0
14#
15# Unless required by applicable law or agreed to in writing, software
16# distributed under the License is distributed on an "AS IS" BASIS,
17# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18# See the License for the specific language governing permissions and
19# limitations under the License.
20# ============LICENSE_END============================================
21# ===================================================================
22# ECOMP is a trademark and service mark of AT&T Intellectual Property.
23#
24
25echo "This is ${WORKSPACE}/test/csit/scripts/clamp/start_clamp_containers.sh"
26
27# start Clamp and MariaDB containers with docker compose and configuration from clamp/extra/docker/clamp/docker-compose.yml
28docker-compose up -d
29
30# WAIT 5 minutes maximum and test every 5 seconds if Clamp up using HealthCheck API
eh552tbc1d8002018-07-04 14:43:49 +020031TIME_OUT=600
eh552tb21b56a2017-08-23 13:44:54 +020032INTERVAL=5
33TIME=0
34while [ "$TIME" -lt "$TIME_OUT" ]; do
eh552t7edf0802018-07-30 12:48:48 +020035 response=$(curl --write-out '%{http_code}' --silent --output /dev/null -vk --key config/org.onap.clamp.keyfile https://localhost:8443/restservices/clds/v1/healthcheck); echo $response
eh552tb21b56a2017-08-23 13:44:54 +020036
37 if [ "$response" == "200" ]; then
38 echo Clamp and its database well started in $TIME seconds
39 break;
40 fi
41
42 echo Sleep: $INTERVAL seconds before testing if Clamp is up. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds
43 sleep $INTERVAL
44 TIME=$(($TIME+$INTERVAL))
45done
46
47if [ "$TIME" -ge "$TIME_OUT" ]; then
48 echo TIME OUT: Docker containers not started in $TIME_OUT seconds... Could cause problems for tests...
eh552tbc1d8002018-07-04 14:43:49 +020049 exit 1;
eh552tb21b56a2017-08-23 13:44:54 +020050fi
51
ehautotaf8aad22018-02-23 12:36:37 +010052# To avoid some problem because templates not yet read
53TIME=0
54while [ "$TIME" -lt "$TIME_OUT" ]; do
eh552tbc1d8002018-07-04 14:43:49 +020055 response=$(curl --write-out '%{http_code}' --silent --output /dev/null -u admin:password -vk --key config/org.onap.clamp.keyfile https://localhost:8443/restservices/clds/v1/cldsTempate/template-names); echo $response
ehautotaf8aad22018-02-23 12:36:37 +010056
57 if [ "$response" == "200" ]; then
58 echo Templates well available
59 break;
60 fi
61
62 echo Sleep: $INTERVAL seconds before testing if templates available. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds
63 sleep $INTERVAL
64 TIME=$(($TIME+$INTERVAL))
65done
66
67if [ "$TIME" -ge "$TIME_OUT" ]; then
68 echo TIME OUT: Templates not available in $TIME_OUT seconds... Could cause problems for tests...
eh552tbc1d8002018-07-04 14:43:49 +020069 exit 1;
ehautotaf8aad22018-02-23 12:36:37 +010070fi