-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathload-test.bash
executable file
·72 lines (56 loc) · 1.82 KB
/
load-test.bash
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
set -x
stacks=(
go-serverless-demo
java-graalvm-serverless-demo
rust-serverless-demo
)
for stack in "${stacks[@]}"
do
:
echo "stack name:" $stack
# aws cloudformation describe-stacks --stack-name "$stack"
API_URL=$(
aws cloudformation describe-stacks --stack-name $stack \
--query 'Stacks[0].Outputs[?OutputKey==`ApiUrl`].OutputValue' \
--output text)
echo $API_URL
artillery run \
--quiet \
--output "$stack".json \
--target "$API_URL" \
load-test.yml
done
# $ TODO: fix typescript
API_URL=$(aws cloudformation describe-stacks --stack-name typescript-serverless-demo \
--query 'Stacks[0].Outputs[?OutputKey==`ApiURL`].OutputValue' \
--output text)
echo $API_URL
artillery run \
--quiet \
--output typescript-serverless-demo.json \
--target "$API_URL" \
load-test.yml
# TODO: fix kotlin
API_URL=$(aws cloudformation describe-stacks --stack-name kotlin-serverless-demo \
--query 'Stacks[0].Outputs[?OutputKey==`KotlinApiUrl`].OutputValue' \
--output text)
echo $API_URL
artillery run \
--quiet \
--output kotlin-serverless-demo.json \
--target "$API_URL" \
load-test.yml
# aws cloudformation describe-stacks --stack-name $STACK_NAME \
# --query 'Stacks[0].Outputs[?OutputKey==`ApiURL`].OutputValue' \
# --output text
# echo typescript
# STACK_NAME=typescript-serverless-demo
# API_URL=$(aws cloudformation describe-stacks --stack-name $STACK_NAME \
# --query 'Stacks[0].Outputs[?OutputKey==`ApiURL`].OutputValue' \
# --output text)
# artillery run --quiet load-test.yml --target "$API_URL"
# STACK_NAME=rust-serverless-demo
# API_URL=$(aws cloudformation describe-stacks --stack-name $STACK_NAME \
# --query 'Stacks[0].Outputs[?OutputKey==`ApiURL`].OutputValue' \
# --output text)
# artillery run --quiet load-test.yml --target "$API_URL"