Michael Mokry | 88f4d47 | 2019-03-04 12:00:05 -0600 | [diff] [blame] | 1 | #!/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 A | d46ab2e | 2019-06-07 21:25:59 +0000 | [diff] [blame] | 20 | source ${SCRIPTS}/policy/config/policy-csit.conf |
| 21 | export POLICY_MARIADB_VER |
| 22 | echo ${GERRIT_BRANCH} |
| 23 | echo ${POLICY_MARIADB_VER} |
| 24 | |
Michael Mokry | b4f6962 | 2019-05-13 13:09:17 -0500 | [diff] [blame] | 25 | echo "Uninstall docker-py and reinstall docker." |
| 26 | pip uninstall -y docker-py |
| 27 | pip uninstall -y docker |
| 28 | pip install -U docker==2.7.0 |
| 29 | |
| 30 | # the directory of the script |
| 31 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
| 32 | echo ${DIR} |
| 33 | |
| 34 | # the temp directory used, within $DIR |
| 35 | # omit the -p parameter to create a temporal directory in the default location |
| 36 | WORK_DIR=`mktemp -d -p "$DIR"` |
| 37 | echo ${WORK_DIR} |
| 38 | |
| 39 | cd ${WORK_DIR} |
| 40 | |
| 41 | # check if tmp dir was created |
| 42 | if [[ ! "$WORK_DIR" || ! -d "$WORK_DIR" ]]; then |
| 43 | echo "Could not create temp dir" |
| 44 | exit 1 |
| 45 | fi |
| 46 | |
| 47 | # bring down maven |
| 48 | mkdir maven |
| 49 | cd maven |
| 50 | curl -O http://apache.claz.org/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz |
| 51 | tar -xzvf apache-maven-3.3.9-bin.tar.gz |
| 52 | ls -l |
| 53 | export PATH=${PATH}:${WORK_DIR}/maven/apache-maven-3.3.9/bin |
| 54 | ${WORK_DIR}/maven/apache-maven-3.3.9/bin/mvn -v |
| 55 | cd .. |
| 56 | |
| 57 | git clone http://gerrit.onap.org/r/oparent |
Bilal A | d46ab2e | 2019-06-07 21:25:59 +0000 | [diff] [blame] | 58 | git clone --depth 1 https://gerrit.onap.org/r/policy/models -b ${GERRIT_BRANCH} |
Michael Mokry | b4f6962 | 2019-05-13 13:09:17 -0500 | [diff] [blame] | 59 | cd models/models-sim/models-sim-dmaap |
| 60 | ${WORK_DIR}/maven/apache-maven-3.3.9/bin/mvn clean install -DskipTests --settings ${WORK_DIR}/oparent/settings.xml |
| 61 | bash ./src/main/package/docker/docker_build.sh |
| 62 | cd ${WORKSPACE} |
| 63 | rm -rf ${WORK_DIR} |
| 64 | sleep 3 |
| 65 | |
Bilal A | d46ab2e | 2019-06-07 21:25:59 +0000 | [diff] [blame] | 66 | |
| 67 | |
| 68 | sudo apt-get -y install libxml2-utils |
| 69 | export 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()' -)" |
| 70 | export 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()' -)" |
| 71 | export 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()' -)" |
| 72 | |
| 73 | echo ${POLICY_API_VERSION} |
| 74 | echo ${POLICY_PAP_VERSION} |
| 75 | echo ${POLICY_XACML_PDP_VERSION} |
Michael Mokry | b4f6962 | 2019-05-13 13:09:17 -0500 | [diff] [blame] | 76 | # Adding this waiting container due to race condition between pap and mariadb |
| 77 | docker-compose -f ${WORKSPACE}/scripts/policy/policy-xacml-pdp/docker-compose-pdpx.yml run --rm start_dependencies |
Jim Hahn | 954af93 | 2019-06-03 15:00:08 -0400 | [diff] [blame] | 78 | |
| 79 | #Configure the database |
| 80 | docker exec -it mariadb chmod +x /docker-entrypoint-initdb.d/db.sh |
| 81 | docker exec -it mariadb /docker-entrypoint-initdb.d/db.sh |
| 82 | |
| 83 | # now bring everything else up |
| 84 | docker-compose -f ${WORKSPACE}/scripts/policy/policy-xacml-pdp/docker-compose-pdpx.yml run --rm start_all |
Michael Mokry | b4f6962 | 2019-05-13 13:09:17 -0500 | [diff] [blame] | 85 | |
| 86 | unset http_proxy https_proxy |
| 87 | |
| 88 | POLICY_API_IP=`get-instance-ip.sh policy-api` |
| 89 | MARIADB_IP=`get-instance-ip.sh mariadb` |
Michael Mokry | 88f4d47 | 2019-03-04 12:00:05 -0600 | [diff] [blame] | 90 | POLICY_PDPX_IP=`get-instance-ip.sh policy-xacml-pdp` |
Michael Mokry | b4f6962 | 2019-05-13 13:09:17 -0500 | [diff] [blame] | 91 | DMAAP_IP=`get-instance-ip.sh dmaap-simulator` |
| 92 | POLICY_PAP_IP=`get-instance-ip.sh policy-pap` |
| 93 | |
| 94 | |
| 95 | echo PDP IP IS ${POLICY_PDPX_IP} |
| 96 | echo API IP IS ${POLICY_API_IP} |
| 97 | echo PAP IP IS ${POLICY_PAP_IP} |
| 98 | echo MARIADB IP IS ${MARIADB_IP} |
| 99 | echo DMAAP_IP IS ${DMAAP_IP} |
| 100 | |
Michael Mokry | b4f6962 | 2019-05-13 13:09:17 -0500 | [diff] [blame] | 101 | ROBOT_VARIABLES="-v POLICY_PDPX_IP:${POLICY_PDPX_IP} -v POLICY_API_IP:${POLICY_API_IP} -v POLICY_PAP_IP:${POLICY_PAP_IP}" |