3 # ============LICENSE_START===============================================
4 # Copyright (C) 2020 Nordix Foundation. All rights reserved.
5 # ========================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 # http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============LICENSE_END=================================================
20 # Generic function to query the A1PMS/ICS via the REST or DMAAP interface.
21 # Used by all other A1PMS/ICS api test functions
22 # If operation suffix is '_BATCH' the the send and get response is split in two sequences,
23 # one for sending the requests and one for receiving the response
24 # but only when using the DMAAP interface
25 # REST or DMAAP is controlled of the base url of $XX_ADAPTER
26 # arg: (A1PMS|ICS|CR|RC GET|PUT|POST|DELETE|GET_BATCH|PUT_BATCH|POST_BATCH|DELETE_BATCH <url>|<correlation-id> [<file> [mime-type]]) | (A1PMS|ICS RESPONSE <correlation-id>)
27 # Default mime type for file is application/json unless specified in parameter mime-type
28 # (Not for test scripts)
30 TIMESTAMP=$(date "+%Y-%m-%d %H:%M:%S")
31 echo " (${BASH_LINENO[0]}) - ${TIMESTAMP}: ${FUNCNAME[0]}" $@ >> $HTTPLOG
33 if [ ! -z "$KUBE_PROXY_PATH" ]; then
34 if [ $KUBE_PROXY_HTTPX == "http" ]; then
35 proxyflag=" --proxy $KUBE_PROXY_PATH"
37 proxyflag=" --proxy-insecure --proxy $KUBE_PROXY_PATH"
45 if [ $1 == "A1PMS" ]; then
46 __ADAPTER=$A1PMS_ADAPTER
47 __ADAPTER_TYPE=$A1PMS_ADAPTER_TYPE
48 __RETRY_CODES=$A1PMS_RETRY_CODES
49 if [ $A1PMS_VERSION != "V1" ]; then
50 input_url=$A1PMS_API_PREFIX$3
52 elif [ $1 == "ICS" ]; then
53 __ADAPTER=$ICS_ADAPTER
54 __ADAPTER_TYPE=$ICS_ADAPTER_TYPE
55 __RETRY_CODES=$ICS_RETRY_CODES
56 elif [ $1 == "CR" ]; then
58 __ADAPTER_TYPE=$CR_ADAPTER_TYPE
60 elif [ $1 == "RC" ]; then
62 __ADAPTER_TYPE=$RC_ADAPTER_TYPE
64 elif [ $1 == "NGW" ]; then
65 __ADAPTER=$NGW_ADAPTER
66 __ADAPTER_TYPE=$NGW_ADAPTER_TYPE
68 elif [ $1 == "DMAAPADP" ]; then
69 __ADAPTER=$DMAAP_ADP_ADAPTER
70 __ADAPTER_TYPE=$DMAAP_ADP_ADAPTER_TYPE
72 elif [ $1 == "DMAAPMED" ]; then
73 __ADAPTER=$DMAAP_MED_ADAPTER
74 __ADAPTER_TYPE=$DMAAP_MED_ADAPTER_TYPE
76 elif [ $1 == "MRSTUB" ]; then
77 __ADAPTER=$MR_STUB_ADAPTER
78 __ADAPTER_TYPE=$MR_STUB_ADAPTER_TYPE
80 elif [ $1 == "DMAAPMR" ]; then
81 __ADAPTER=$MR_DMAAP_ADAPTER_HTTP
82 __ADAPTER_TYPE=$MR_DMAAP_ADAPTER_TYPE
84 elif [ $1 == "KAFKAPC" ]; then
85 __ADAPTER=$KAFKAPC_ADAPTER
86 __ADAPTER_TYPE=$KAFKAPC_ADAPTER_TYPE
91 if [ "$__ADAPTER_TYPE" == "MR-HTTP" ]; then
92 __ADAPTER=$MR_ADAPTER_HTTP
94 if [ "$__ADAPTER_TYPE" == "MR-HTTPS" ]; then
95 __ADAPTER=$MR_ADAPTER_HTTPS
98 if [ $# -lt 3 ] || [ $# -gt 5 ]; then
104 httpcode=" -sw %{http_code}"
108 if [[ $2 == *"_BATCH" ]]; then
111 if [ $# -gt 3 ]; then
112 content=" -H Content-Type:application/json"
114 if [ $# -gt 4 ]; then
115 content=" -H Content-Type:"$5
118 if [ $2 == "GET" ] || [ $2 == "GET_BATCH" ]; then
120 if [ $# -ne 3 ]; then
123 elif [ $2 == "PUT" ] || [ $2 == "PUT_BATCH" ]; then
125 if [ $# -gt 3 ]; then
126 file=" --data-binary @$fname"
128 accept=" -H accept:application/json"
129 elif [ $2 == "POST" ] || [ $2 == "POST_BATCH" ]; then
131 accept=" -H accept:*/*"
132 if [ $# -gt 3 ]; then
133 file=" --data-binary @$fname"
134 accept=" -H accept:application/json"
136 elif [ $2 == "DELETE" ] || [ $2 == "DELETE_BATCH" ]; then
138 if [ $# -ne 3 ]; then
141 elif [ $2 == "RESPONSE" ]; then
143 if [ $# -ne 3 ]; then
146 if [ $__ADAPTER_TYPE == "REST" ]; then
154 if [ $paramError -eq 1 ]; then
156 echo "-Incorrect number of parameters to __do_curl_to_api " $@ >> $HTTPLOG
157 echo "-Expected: (A1PMS|ICS GET|PUT|POST|DELETE|GET_BATCH|PUT_BATCH|POST_BATCH|DELETE_BATCH <url> [<file> [mime-type]]) | (A1PMS|ICS RESPONSE <correlation-id>)" >> $HTTPLOG
158 echo "-Returning response 000" >> $HTTPLOG
163 if [ ! -z "$KUBE_PROXY_CURL_JWT" ]; then
164 jwt=" -H "\""Authorization: Bearer $KUBE_PROXY_CURL_JWT"\"
166 if [ $__ADAPTER_TYPE == "REST" ]; then
167 url=" "${__ADAPTER}${input_url}
169 curlString="curl -k $proxyflag "${oper}${timeout}${httpcode}${accept}${content}${url}${file}
170 echo " CMD: $curlString $jwt" >> $HTTPLOG
171 if [ $# -gt 3 ]; then
172 echo " FILE: $(<$fname)" >> $HTTPLOG
175 # Do retry for configured response codes, otherwise only one attempt
177 while [ $maxretries -ge 0 ]; do
179 let maxretries=maxretries-1
180 if [ ! -z "$KUBE_PROXY_CURL_JWT" ]; then
181 res=$($curlString -H "Authorization: Bearer $KUBE_PROXY_CURL_JWT")
186 if [ $retcode -ne 0 ]; then
187 echo " RETCODE: "$retcode >> $HTTPLOG
192 echo " RESP: "$res >> $HTTPLOG
193 status=${res:${#res}-3}
194 if [ ! -z "${__RETRY_CODES}" ]; then
195 for retrycode in $__RETRY_CODES; do
196 if [ $retrycode -eq $status ]; then
197 echo -e $RED" Retrying (according to set codes for retry), got status $status....."$ERED >> $HTTPLOG
203 if [ $retry -eq 0 ]; then
210 if [ $oper != "RESPONSE" ]; then
211 requestUrl=$input_url
212 if [ $2 == "PUT" ] && [ $# -gt 3 ]; then
213 payload="$(cat $fname | tr -d '\n' | tr -d ' ' )"
214 echo "payload: "$payload >> $HTTPLOG
215 file=" --data-binary "$payload
216 elif [ $# -gt 3 ]; then
217 echo " FILE: $(cat $fname)" >> $HTTPLOG
219 #urlencode the request url since it will be carried by send-request url
220 requestUrl=$(python3 -c "from __future__ import print_function; import urllib.parse, sys; print(urllib.parse.quote(sys.argv[1]))" "$input_url")
221 url=" "${__ADAPTER}"/send-request?url="${requestUrl}"&operation="${oper}
222 curlString="curl -k $proxyflag -X POST${timeout}${httpcode}${content}${url}${file}"
223 echo " CMD: "$curlString >> $HTTPLOG
226 if [ $retcode -ne 0 ]; then
227 echo " RETCODE: "$retcode >> $HTTPLOG
231 echo " RESP: "$res >> $HTTPLOG
232 status=${res:${#res}-3}
233 if [ $status -ne 200 ]; then
237 cid=${res:0:${#res}-3}
238 if [[ $batch -eq 1 ]]; then
243 if [ $oper == "RESPONSE" ] || [ $batch -eq 0 ]; then
244 if [ $oper == "RESPONSE" ]; then
247 url=" "${__ADAPTER}"/receive-response?correlationid="${cid}
248 curlString="curl -k $proxyflag -X GET"${timeout}${httpcode}${url}
249 echo " CMD: "$curlString >> $HTTPLOG
252 if [ $retcode -ne 0 ]; then
253 echo " RETCODE: "$retcode >> $HTTPLOG
257 echo " RESP: "$res >> $HTTPLOG
258 status=${res:${#res}-3}
260 # wait of the reply from the A1PMS/ICS...
261 while [ $status -eq 204 ]; do
262 if [ $(($SECONDS - $TS)) -gt 90 ]; then
263 echo " RETCODE: (timeout after 90s)" >> $HTTPLOG
268 echo " CMD: "$curlString >> $HTTPLOG
270 if [ $retcode -ne 0 ]; then
271 echo " RETCODE: "$retcode >> $HTTPLOG
275 echo " RESP: "$res >> $HTTPLOG
276 status=${res:${#res}-3}
278 if [ $status -eq 200 ]; then
279 body=${res:0:${#res}-3}
283 echo "Status not 200, returning response 000" >> $HTTPLOG