blob: 3cba68136842107e84062cd79223c401eb044e93 [file] [log] [blame]
Bin Yangc792afa2017-09-15 13:35:44 +08001#!/bin/bash
2#
3# Copyright (c) 2017 Wind River Systems, Inc.
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# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
Victor Morales165e6d02018-04-23 17:13:26 -070014pushd ${SCRIPTS}
Bin Yangc792afa2017-09-15 13:35:44 +080015
16# start multicloud-ocata
xinhuili2da2e842018-06-06 07:28:03 +080017./run-instance.sh nexus3.onap.org:10001/onap/multicloud/openstack/openstack-ocata:latest multicloud-ocata
Victor Morales165e6d02018-04-23 17:13:26 -070018SERVICE_IP=$(./get-instance-ip.sh multicloud-ocata)
Bin Yang20d34c62017-09-21 17:38:46 +080019SERVICE_PORT=9006
Victor Morales165e6d02018-04-23 17:13:26 -070020popd
21
22if [[ $no_proxy && $no_proxy != *$SERVICE_IP* ]]; then
23 export no_proxy+=$no_proxy,$SERVICE_IP
24fi
Bin Yangc792afa2017-09-15 13:35:44 +080025
26for i in {1..50}; do
27 curl -sS ${SERVICE_IP}:${SERVICE_PORT} && break
28 echo sleep $i
29 sleep $i
30done
31
Bin Yangc792afa2017-09-15 13:35:44 +080032# Pass any variables required by Robot test suites in ROBOT_VARIABLES
33ROBOT_VARIABLES+="-v SERVICE_IP:${SERVICE_IP} "
34ROBOT_VARIABLES+="-v SERVICE_PORT:${SERVICE_PORT} "