blob: 9a2e92fe56cee4ec6cc00b888aaed0ddd94a0b2b [file] [log] [blame]
Michael Mokry88f4d472019-03-04 12:00:05 -06001#!/bin/bash
2# ============LICENSE_START=======================================================
3# Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
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# SPDX-License-Identifier: Apache-2.0
18# ============LICENSE_END=========================================================
19
Bilal Ad46ab2e2019-06-07 21:25:59 +000020source ${SCRIPTS}/policy/config/policy-csit.conf
21export POLICY_MARIADB_VER
22echo ${GERRIT_BRANCH}
23echo ${POLICY_MARIADB_VER}
24
Michael Mokryb4f69622019-05-13 13:09:17 -050025echo "Uninstall docker-py and reinstall docker."
26pip uninstall -y docker-py
27pip uninstall -y docker
28pip install -U docker==2.7.0
29
30# the directory of the script
31DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
32echo ${DIR}
33
34# the temp directory used, within $DIR
35# omit the -p parameter to create a temporal directory in the default location
36WORK_DIR=`mktemp -d -p "$DIR"`
37echo ${WORK_DIR}
38
39cd ${WORK_DIR}
40
41# check if tmp dir was created
42if [[ ! "$WORK_DIR" || ! -d "$WORK_DIR" ]]; then
43 echo "Could not create temp dir"
44 exit 1
45fi
46
47# bring down maven
48mkdir maven
49cd maven
Martin Klozikf5ae3482019-09-04 10:24:25 +020050# download maven from automatically selected mirror server
51curl -vLO "https://www.apache.org/dyn/mirrors/mirrors.cgi?cca2=us&preferred=http://apache.claz.org/&action=download&filename=maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz"
52if ! tar -xzvf apache-maven-3.3.9-bin.tar.gz ; then
53 echo "Installation of maven has failed!"
54 exit 1
55fi
Michael Mokryb4f69622019-05-13 13:09:17 -050056ls -l
57export PATH=${PATH}:${WORK_DIR}/maven/apache-maven-3.3.9/bin
58${WORK_DIR}/maven/apache-maven-3.3.9/bin/mvn -v
59cd ..
60
61git clone http://gerrit.onap.org/r/oparent
Bilal Ad46ab2e2019-06-07 21:25:59 +000062git clone --depth 1 https://gerrit.onap.org/r/policy/models -b ${GERRIT_BRANCH}
Michael Mokryb4f69622019-05-13 13:09:17 -050063cd models/models-sim/models-sim-dmaap
64${WORK_DIR}/maven/apache-maven-3.3.9/bin/mvn clean install -DskipTests --settings ${WORK_DIR}/oparent/settings.xml
65bash ./src/main/package/docker/docker_build.sh
66cd ${WORKSPACE}
67rm -rf ${WORK_DIR}
68sleep 3
69
Bilal Ad46ab2e2019-06-07 21:25:59 +000070
71
72sudo apt-get -y install libxml2-utils
73export POLICY_API_VERSION="$(curl -q --silent https://git.onap.org/policy/api/plain/pom.xml?h=${GERRIT_BRANCH} | xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' -)"
74export POLICY_PAP_VERSION="$(curl -q --silent https://git.onap.org/policy/pap/plain/pom.xml?h=${GERRIT_BRANCH} | xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' -)"
75export POLICY_XACML_PDP_VERSION="$(curl -q --silent https://git.onap.org/policy/xacml-pdp/plain/pom.xml?h=${GERRIT_BRANCH} | xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' -)"
76
77echo ${POLICY_API_VERSION}
78echo ${POLICY_PAP_VERSION}
79echo ${POLICY_XACML_PDP_VERSION}
Michael Mokryb4f69622019-05-13 13:09:17 -050080# Adding this waiting container due to race condition between pap and mariadb
81docker-compose -f ${WORKSPACE}/scripts/policy/policy-xacml-pdp/docker-compose-pdpx.yml run --rm start_dependencies
Jim Hahn954af932019-06-03 15:00:08 -040082
83#Configure the database
84docker exec -it mariadb chmod +x /docker-entrypoint-initdb.d/db.sh
85docker exec -it mariadb /docker-entrypoint-initdb.d/db.sh
86
87# now bring everything else up
88docker-compose -f ${WORKSPACE}/scripts/policy/policy-xacml-pdp/docker-compose-pdpx.yml run --rm start_all
Michael Mokryb4f69622019-05-13 13:09:17 -050089
90unset http_proxy https_proxy
91
92POLICY_API_IP=`get-instance-ip.sh policy-api`
93MARIADB_IP=`get-instance-ip.sh mariadb`
Michael Mokry88f4d472019-03-04 12:00:05 -060094POLICY_PDPX_IP=`get-instance-ip.sh policy-xacml-pdp`
Michael Mokryb4f69622019-05-13 13:09:17 -050095DMAAP_IP=`get-instance-ip.sh dmaap-simulator`
96POLICY_PAP_IP=`get-instance-ip.sh policy-pap`
97
98
99echo PDP IP IS ${POLICY_PDPX_IP}
100echo API IP IS ${POLICY_API_IP}
101echo PAP IP IS ${POLICY_PAP_IP}
102echo MARIADB IP IS ${MARIADB_IP}
103echo DMAAP_IP IS ${DMAAP_IP}
104
Michael Mokryb4f69622019-05-13 13:09:17 -0500105ROBOT_VARIABLES="-v POLICY_PDPX_IP:${POLICY_PDPX_IP} -v POLICY_API_IP:${POLICY_API_IP} -v POLICY_PAP_IP:${POLICY_PAP_IP}"