Add ACM regression test suite
[policy/docker.git] / compose / get-versions.sh
1 #! /bin/bash
2
3 # ============LICENSE_START====================================================
4 #  Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved.
5 #  Modification Copyright 2021-2024 Nordix Foundation.
6 #  Modifications Copyright (C) 2021 Bell Canada. All rights reserved.
7 # =============================================================================
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
11 #
12 #      http://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 # See the License for the specific language governing permissions and
18 # limitations under the License.
19 #
20 # SPDX-License-Identifier: Apache-2.0
21 # ============LICENSE_END======================================================
22
23 if [ -z "${WORKSPACE}" ]; then
24     WORKSPACE=$(git rev-parse --show-toplevel)
25     export WORKSPACE
26 fi
27
28 GERRIT_BRANCH=$(awk -F= '$1 == "defaultbranch" { print $2 }' \
29                     "${WORKSPACE}"/.gitreview)
30
31 echo GERRIT_BRANCH="${GERRIT_BRANCH}"
32
33 export POLICY_MARIADB_VER=10.10.2
34 echo POLICY_MARIADB_VER=${POLICY_MARIADB_VER}
35
36 export POLICY_POSTGRES_VER=11.1
37 echo POLICY_POSTGRES_VER=${POLICY_POSTGRES_VER}
38
39 function getDockerVersion
40 {
41     REPO=${1}
42     DEFAULT_DOCKER_IMAGE_NAME=${2:-}
43     DEFAULT_DOCKER_IMAGE_VERSION=${3:-}
44
45     REPO_RELEASE_DATA=$(
46         curl -qL --silent \
47             "https://github.com/onap/policy-parent/raw/$GERRIT_BRANCH/integration/src/main/resources/release/pf_release_data.csv" |
48         grep "^policy/$REPO"
49     )
50
51     # shellcheck disable=SC2034
52     read -r repo \
53         latest_released_tag \
54         latest_snapshot_tag \
55         changed_files \
56         docker_images \
57         <<< "$(echo "$REPO_RELEASE_DATA" | tr ',' ' ' )"
58
59     if [[ -z "$docker_images" ]]
60     then
61         if [[ -z "$DEFAULT_DOCKER_IMAGE_NAME" ]]
62         then
63             echo "repo $REPO does not produce a docker image, execution terminated"
64             exit 1
65         else
66             docker_images="$DEFAULT_DOCKER_IMAGE_NAME"
67         fi
68     fi
69
70     # docker_image_version=$(echo "$latest_snapshot_tag" | awk -F \. '{print $1"."$2"-SNAPSHOT-latest"}')
71     docker_image_version=$latest_snapshot_tag
72     docker_image_name=$(echo "$docker_images" | sed -e "s/^.*://" -e "s/^.//" -e "s/.$//")
73
74     if \
75         curl -qL --silent \
76             "https://nexus3.onap.org/service/rest/repository/browse/docker.snapshot/v2/onap/$docker_image_name/tags/" |
77             grep -q "$docker_image_version"
78     then
79         echo "using \"$docker_image_name:$docker_image_version\" docker image for repo \"$repo\""
80         return
81     fi
82
83     docker_image_version="$latest_released_tag"
84     if \
85         curl -qL --silent \
86             "https://nexus3.onap.org/service/rest/repository/browse/docker.release/v2/onap/$docker_image_name/tags/" |
87             grep -q "$docker_image_version"
88     then
89         echo "using \"$docker_image_name:$docker_image_version\" docker image for repo \"$repo\""
90         return
91     fi
92
93     docker_image_version="$DEFAULT_DOCKER_IMAGE_VERSION"
94     if \
95         curl -qL --silent \
96             "https://nexus3.onap.org/service/rest/repository/browse/docker.release/v2/onap/$docker_image_name/tags/" |
97             grep -q "$docker_image_version"
98     then
99         echo "using \"$docker_image_name:$docker_image_version\" docker image for repo \"$repo\""
100         return
101     else
102         echo "docker image \"$docker_image_name:$docker_image_version\" not found for repo \"$repo\""
103         exit 1
104     fi
105 }
106
107 getDockerVersion docker
108 export POLICY_DOCKER_VERSION="$docker_image_version"
109
110 getDockerVersion models "'policy-models-simulator'" 3.0.1
111 export POLICY_MODELS_VERSION="$docker_image_version"
112
113 getDockerVersion api
114 export POLICY_API_VERSION="$docker_image_version"
115
116 getDockerVersion pap
117 export POLICY_PAP_VERSION="$docker_image_version"
118
119 getDockerVersion apex-pdp
120 export POLICY_APEX_PDP_VERSION="$docker_image_version"
121
122 getDockerVersion drools-pdp
123 export POLICY_DROOLS_PDP_VERSION="$docker_image_version"
124
125 getDockerVersion xacml-pdp
126 export POLICY_XACML_PDP_VERSION="$docker_image_version"
127
128 getDockerVersion distribution
129 export POLICY_DISTRIBUTION_VERSION="$docker_image_version"
130
131 getDockerVersion clamp
132 export POLICY_CLAMP_VERSION="$docker_image_version"
133 export POLICY_CLAMP_PPNT_VERSION=$POLICY_CLAMP_VERSION
134
135 getDockerVersion gui
136 export POLICY_GUI_VERSION="$docker_image_version"
137
138 getDockerVersion drools-applications
139 export POLICY_DROOLS_APPS_VERSION="$docker_image_version"