#!/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 ocata/target/multicloud-openstack-ocata*.zip ocata/vagrant/test/multicloud-openstack-ocata.zip cd ocata/vagrant/test sudo docker build -t multicloud-ocata-test:latest . sudo docker network create --subnet=172.16.77.0/24 onap sudo docker run -d -t --name ocata-test --network onap --ip 172.16.77.40 -e MSB_ADDR=172.16.77.40 -e MSB_PORT=9006 multicloud-ocata-test while true; do sleep 10 curl http://172.16.77.40:9006/api/multicloud-ocata/v0/swagger.json && break done for i in `cat tests` do bash ./$i done