-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-em-all.bash
More file actions
executable file
·341 lines (276 loc) · 13.7 KB
/
Copy pathtest-em-all.bash
File metadata and controls
executable file
·341 lines (276 loc) · 13.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
#!/bin/bash
#
# Sample usage:
#
# ./test-em-all.bash start
# ./test-em-all.bash start stop
: ${HOST=localhost}
: ${PORT=8443}
: ${PROD_ID_REVS_RECS=1} # product with recommendations and reviews
: ${PROD_ID_NOT_FOUND=13} # missing product
: ${PROD_ID_NO_RECS=113} # product with no recommendations
: ${PROD_ID_NO_REVS=213} # product with no reviews
: ${SKIP_CB_TESTS=false}
function testUrl() {
url="$@"
if curl "$url" -k -s -f -o /dev/null
then
return 0
else
return 1
fi
}
function waitForService() {
local retryLimit=${2:-50}
local url="$1"
echo -n "Wait for: $url..."
n=0
until testUrl "$url"; do
n=$(( n + 1 ))
if (( n == retryLimit )); then
echo "Give up after $retryLimit retries."
exit 1
else
sleep 3
echo -n ", retry #$n "
fi
done
echo "DONE, continues..."
}
function assertCurl() {
local expectedHttpCode=$1
local curlCmd="$2 -w \"%{http_code}\""
local result=$(eval "$curlCmd")
local httpCode="${result:(-3)}"
if (( ${#result} > 3 )); then
RESPONSE="${result%???}"
else
RESPONSE=''
fi
if [ "$httpCode" = "$expectedHttpCode" ]
then
if [ "$httpCode" = "200" ]
then
echo "Test OK (HTTP code: $httpCode)"
else
echo "Test OK (HTTP code: $httpCode, $RESPONSE)"
fi
else
echo "Test FAILED, EXPECTED HTTP code: $expectedHttpCode, GOT: $httpCode, WILL ABORT"
echo "- Failing command: $curlCmd"
echo "- Response body: $RESPONSE"
exit 1
fi
}
function assertEqual() {
local expected=$1
local actual=$2
if [ "$actual" = "$expected" ]
then
echo "Test OK (actual value: $actual)"
#return 0
else
echo "Test FAILED, EXPECTED VALUE: $expected, ACTUAL VALUE: $actual, WILL ABORT"
exit 1
fi
}
function setupTestData() {
body="{\"productId\":$PROD_ID_NO_RECS}"
body+=',"name":"product name A", "weight":100, "reviews":[
{"reviewId":1,"author":"author 1","subject":"subject 1", "content":"content 1"},
{"reviewId":2,"author":"author 2","subject":"subject 2", "content":"content 2"},
{"reviewId":3,"author":"author 3","subject":"subject 3", "content":"content 3"}
]}'
recreateComposite "$PROD_ID_NO_RECS" "$body"
body="{\"productId\":$PROD_ID_NO_REVS"
body+=',"name":"product name B","weight":200, "recommendations":[
{"recommendationId":1,"author":"author 1","rate":1,"content":"content 1"},
{"recommendationId":2,"author":"author 2","rate":2,"content":"content 2"},
{"recommendationId":3,"author":"author 3","rate":3,"content":"content 3"}
]}'
recreateComposite "$PROD_ID_NO_REVS" "$body"
body="{\"productId\":$PROD_ID_REVS_RECS"
body+=',"name":"product name C","weight":300,
"recommendations":[
{"recommendationId":1,"author":"author 1","rate":1,"content":"content 1"},
{"recommendationId":2,"author":"author 2","rate":2,"content":"content 2"},
{"recommendationId":3,"author":"author 3","rate":3,"content":"content 3"}
],
"reviews":[
{"reviewId":1,"author":"author 1","subject":"subject 1","content":"content 1"},
{"reviewId":2,"author":"author 2","subject":"subject 2","content":"content 2"},
{"reviewId":3,"author":"author 3","subject":"subject 3","content":"content 3"}
]
}'
recreateComposite "$PROD_ID_REVS_RECS" "$body"
}
function recreateComposite() {
local productId="$1"
local composite="$2"
assertCurl 202 "curl -X DELETE -H \"$AUTH_HEADER\" -k -s https://\"$HOST\":\"$PORT\"/product-composite/$productId"
local response
response=$(curl -X POST -k -s https://"$HOST":"$PORT"/product-composite \
-H "Content-Type: application/json" -H "$AUTH_HEADER" \
-d "$composite" -w "%{http_code}")
assertEqual 202 "$response"
}
function testCompositeCreated() {
# Expect that the Product Composite for productId PROD_ID_REVS_RECS has been created with three recommendations and three reviews
if ! assertCurl 200 "curl -H \"$AUTH_HEADER\" -k -s https://$HOST:$PORT/product-composite/$PROD_ID_REVS_RECS"; then
echo -n " FAIL"
return 1
fi
set +e
assertEqual "$PROD_ID_REVS_RECS" "$(echo $RESPONSE | jq .productId)"
if [ $? -eq 1 ]; then return 1; fi
assertEqual 3 "$(echo $RESPONSE | jq '.recommendations | length')"
if [ $? -eq 1 ]; then return 1; fi
assertEqual 3 "$(echo $RESPONSE | jq '.reviews | length')"
if [ $? -eq 1 ]; then return 1; fi
set -e
}
function waitForMessageProcessing() {
local retryLimit=${1:-50}
local sleepDuration=5
echo "Waiting for messages to be processed. Will check every $sleepDuration seconds, up to $retryLimit times."
echo "Sleeping for 10 seconds before starting retries..."
sleep 10
n=0
until testCompositeCreated
do
n=$(( n + 1 ))
if (( n == retryLimit )); then
echo "Giving up after $retryLimit retries. Items were not created in the database."
exit 1
else
echo "Retry #$n: Still waiting for items to be created in the database. Sleeping for $sleepDuration seconds..."
sleep $sleepDuration
fi
done
echo "Success: All messages are processed and items have been created after $n retries."
}
function testCircuitBreaker() {
echo "Start Circuit Breaker tests!"
# First, use the health - endpoint to verify that the circuit breaker is closed
assertEqual "CLOSED" "$(docker compose exec -T product-composite curl -s http://product-composite:8080/actuator/health | jq -r .components.circuitBreakers.details.product.details.state)"
# Open the circuit breaker by running three slow calls in a row, i.e. that cause a timeout exception
# Also, verify that we get 500 back and a timeout related error message
for ((n=0; n<3; n++))
do
assertCurl 500 "curl -k https://$HOST:$PORT/product-composite/$PROD_ID_REVS_RECS?delay=3 $AUTH -s"
message=$(echo $RESPONSE | jq -r .message)
assertEqual "Did not observe any item or terminal signal within 2000ms" "${message:0:57}"
done
# Verify that the circuit breaker is open
assertEqual "OPEN" "$(docker compose exec -T product-composite curl -s http://product-composite:8080/actuator/health | jq -r .components.circuitBreakers.details.product.details.state)"
# Verify that the circuit breaker now is open by running the slow call again, verify it gets 200 back, i.e. fail fast works, and a response from the fallback method.
assertCurl 200 "curl -k https://$HOST:$PORT/product-composite/$PROD_ID_REVS_RECS?delay=3 $AUTH -s"
assertEqual "Fallback product$PROD_ID_REVS_RECS" "$(echo "$RESPONSE" | jq -r .name)"
# Also, verify that the circuit breaker is open by running a normal call, verify it also gets 200 back and a response from the fallback method.
assertCurl 200 "curl -k https://$HOST:$PORT/product-composite/$PROD_ID_REVS_RECS $AUTH -s"
assertEqual "Fallback product$PROD_ID_REVS_RECS" "$(echo "$RESPONSE" | jq -r .name)"
# Verify that a 404 (Not Found) error is returned for a non existing productId ($PROD_ID_NOT_FOUND) from the fallback method.
assertCurl 404 "curl -k https://$HOST:$PORT/product-composite/$PROD_ID_NOT_FOUND $AUTH -s"
assertEqual "Product Id: $PROD_ID_NOT_FOUND not found in fallback cache!" "$(echo $RESPONSE | jq -r .message)"
# Wait for the circuit breaker to transition to the half open state (i.e. max 10 sec)
echo "Will sleep for 10 sec waiting for the CB to go Half Open..."
sleep 10
# Verify that the circuit breaker is in half open state
assertEqual "HALF_OPEN" "$(docker compose exec -T product-composite curl -s http://product-composite:8080/actuator/health | jq -r .components.circuitBreakers.details.product.details.state)"
# Close the circuit breaker by running three normal calls in a row
# Also, verify that we get 200 back and a response based on information in the product database
for ((n=0; n<3; n++))
do
assertCurl 200 "curl -k https://$HOST:$PORT/product-composite/$PROD_ID_REVS_RECS $AUTH -s"
assertEqual "product name C" "$(echo "$RESPONSE" | jq -r .name)"
done
# Verify that the circuit breaker is in closed state again
assertEqual "CLOSED" "$(docker compose exec -T product-composite curl -s http://product-composite:8080/actuator/health | jq -r .components.circuitBreakers.details.product.details.state)"
# Verify that the expected state transitions happened in the circuit breaker
assertEqual "CLOSED_TO_OPEN" "$(docker compose exec -T product-composite curl -s http://product-composite:8080/actuator/circuitbreakerevents/product/STATE_TRANSITION | jq -r .circuitBreakerEvents[-3].stateTransition)"
assertEqual "OPEN_TO_HALF_OPEN" "$(docker compose exec -T product-composite curl -s http://product-composite:8080/actuator/circuitbreakerevents/product/STATE_TRANSITION | jq -r .circuitBreakerEvents[-2].stateTransition)"
assertEqual "HALF_OPEN_TO_CLOSED" "$(docker compose exec -T product-composite curl -s http://product-composite:8080/actuator/circuitbreakerevents/product/STATE_TRANSITION | jq -r .circuitBreakerEvents[-1].stateTransition)"
}
set -e
echo "Start Tests: $(date)"
echo "HOST={$HOST}"
echo "PORT={$PORT}"
echo "SKIP_CB_TESTS=${SKIP_CB_TESTS}"
if [[ $@ = *"start"* ]]
then
echo "Restarting the test environment..."
echo "$ docker compose down --remove-orphans"
docker compose down --remove-orphans
echo "$ docker compose up -d"
docker compose up -d
fi
# Check services health
echo "Check service health at: https://$HOST:$PORT/actuator/health..."
waitForService "https://$HOST:$PORT/actuator/health" 60
echo "Waiting for service info to propagate to the Eureka server. Sleeping for 10 seconds..."
sleep 10
# Verify access to the Eureka and that all 6 microservices are registered; gateway, auth server, review, product, recommendation, product composite
echo "Verify Eureka access and registration of all 6 services..."
assertCurl 200 "curl -H \"accept:application/json\" -k https://user:pwd@$HOST:$PORT/eureka/api/apps -s"
serviceCount=$(echo "$RESPONSE" | jq ".applications.application | length")
assertEqual 6 "$serviceCount"
echo "Fetch access token..."
ACCESS_TOKEN=$(curl -k -s "https://writer:secret-writer@$HOST:$PORT/oauth2/token" \
-d "grant_type=client_credentials" -d "scope=product:read product:write" | jq .access_token -r)
echo "Access token: $ACCESS_TOKEN"
AUTH_HEADER="Authorization: Bearer $ACCESS_TOKEN"
AUTH="-H \"Authorization: Bearer $ACCESS_TOKEN\""
echo "Set up test data..."
setupTestData
echo "Wait for messages to be processed..."
waitForMessageProcessing 60
# Verify that a normal request works, expect three recommendations and three reviews
assertCurl 200 "curl $AUTH -k https://$HOST:$PORT/product-composite/$PROD_ID_REVS_RECS -s"
assertEqual $PROD_ID_REVS_RECS $(echo $RESPONSE | jq .productId)
assertEqual 3 $(echo $RESPONSE | jq ".recommendations | length")
assertEqual 3 $(echo $RESPONSE | jq ".reviews | length")
# Verify that a 404 (Not Found) error is returned for a non-existing productId ($PROD_ID_NOT_FOUND)
assertCurl 404 "curl $AUTH -k https://$HOST:$PORT/product-composite/$PROD_ID_NOT_FOUND -s"
assertEqual "No product found for productId: $PROD_ID_NOT_FOUND" "$(echo $RESPONSE | jq -r .message)"
# Verify that no recommendations are returned for productId $PROD_ID_NO_RECS
assertCurl 200 "curl $AUTH -k https://$HOST:$PORT/product-composite/$PROD_ID_NO_RECS -s"
assertEqual $PROD_ID_NO_RECS $(echo $RESPONSE | jq .productId)
assertEqual 0 $(echo $RESPONSE | jq ".recommendations | length")
# Verify that no reviews are returned for productId $PROD_ID_NO_REVS
assertCurl 200 "curl $AUTH -k https://$HOST:$PORT/product-composite/$PROD_ID_NO_REVS -s"
assertEqual $PROD_ID_NO_REVS $(echo $RESPONSE | jq .productId)
assertEqual 0 $(echo $RESPONSE | jq ".reviews | length")
# Verify that a 422 (Unprocessable Entity) error is returned for a productId that is out of range (-1)
assertCurl 422 "curl $AUTH -k https://$HOST:$PORT/product-composite/-1 -s"
assertEqual "\"Invalid productId: -1\"" "$(echo $RESPONSE | jq .message)"
# Verify that a 400 (Bad Request) error error is returned for a productId that is not a number, i.e. invalid format
assertCurl 400 "curl $AUTH -k https://$HOST:$PORT/product-composite/invalidProductId -s"
assertEqual "\"Type mismatch.\"" "$(echo $RESPONSE | jq .message)"
# Verify that a request without access token fails on 401, Unauthorized
assertCurl 401 "curl -k https://$HOST:$PORT/product-composite/$PROD_ID_REVS_RECS -s"
# Verify that the reader - client with only read scope can call the read API but not delete API.
READER_ACCESS_TOKEN=$(curl -k https://reader:secret-reader@$HOST:$PORT/oauth2/token -d grant_type=client_credentials -d scope="product:read" -s | jq .access_token -r)
echo READER_ACCESS_TOKEN=$READER_ACCESS_TOKEN
READER_AUTH="-H \"Authorization: Bearer $READER_ACCESS_TOKEN\""
assertCurl 200 "curl $READER_AUTH -k https://$HOST:$PORT/product-composite/$PROD_ID_REVS_RECS -s"
assertCurl 403 "curl -X DELETE $READER_AUTH -k https://$HOST:$PORT/product-composite/$PROD_ID_REVS_RECS -s"
# Verify access to Swagger and OpenAPI URLs
echo "Swagger/OpenAPI tests"
assertCurl 302 "curl -ks https://$HOST:$PORT/openapi/swagger-ui.html"
assertCurl 200 "curl -ksL https://$HOST:$PORT/openapi/swagger-ui.html"
assertCurl 200 "curl -ks https://$HOST:$PORT/openapi/webjars/swagger-ui/index.html?configUrl=/v3/api-docs/swagger-config"
assertCurl 200 "curl -ks https://$HOST:$PORT/openapi/v3/api-docs"
assertEqual "3.0.1" "$(echo $RESPONSE | jq -r .openapi)"
assertEqual "https://$HOST:$PORT" "$(echo $RESPONSE | jq -r '.servers[0].url')"
assertCurl 200 "curl -ks https://$HOST:$PORT/openapi/v3/api-docs.yaml"
if [[ $SKIP_CB_TESTS == "false" ]]
then
testCircuitBreaker
fi
if [[ $@ == *"stop"* ]]
then
echo "We are done, stopping the test environment..."
echo "$ docker compose down"
docker compose down
fi
echo "End, all tests OK: $(date)"