summaryrefslogtreecommitdiffstats
path: root/pike/vagrant/test/test_multicloud.sh
blob: b496b1adef6794014cb828ebd760d5a2e3310bb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/bash
# Copyright (c) 2018 Intel Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

set -ex

sudo apt-get update -y
sudo apt-get install -y docker.io maven npm virtualenv python-dev

git clone http://gerrit.onap.org/r/oparent
mkdir $HOME/.m2
cp oparent/settings.xml $HOME/.m2

git clone /openstack
cd openstack
mvn clean install
cp pike/target/multicloud-openstack-pike*.zip pike/vagrant/test/

cd pike/vagrant/test
sudo docker build -t multicloud-pike-test:latest .
sudo docker network create --subnet=172.16.77.0/24 onap
sudo docker run -d -t  --name pike-test --network onap --ip 172.16.77.40 -e MSB_ADDR=172.16.77.40 -e MSB_PORT=9007 multicloud-pike-test

while true; do
    sleep 10
    curl http://172.16.77.40:9007/api/multicloud-pike/v0/swagger.json && break
done

for i in `cat tests`
do
    bash ./$i
done