-
Notifications
You must be signed in to change notification settings - Fork 9
/
test.bats
119 lines (96 loc) · 4.26 KB
/
test.bats
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
#!/usr/bin/env bats
# vi: ft=bash
# shellcheck disable=SC2086,SC2030,SC2031,SC2164
run_cmd(){
echo "$@"
set +e
${@}
EXIT_CODE=$?
set -e
if [ $EXIT_CODE -eq 2 ]; then
echo "Exit code 2 encountered, regression detected, treating as success"
return 0
elif [ $EXIT_CODE -eq 3 ]; then
echo "Exit code 3 encountered, not enough data"
return 0
else
return $EXIT_CODE
fi
}
setup() {
# Make a note of daemon PID
export ES_SERVER="$QE_ES_SERVER"
export es_metadata_index="perf_scale_ci*"
export es_benchmark_index="ripsaw-kube-burner*"
export version='4.17'
}
@test "orion cmd label small scale cluster density with hunter-analyze " {
run_cmd orion cmd --config "examples/label-small-scale-cluster-density.yaml" --lookback 5d --hunter-analyze
}
@test "orion cmd payload scale 4.15 " {
run_cmd orion cmd --config "examples/payload-scale-415.yaml" --lookback 5d --hunter-analyze
}
@test "orion cmd payload scale 4.16 without lookback period " {
run_cmd orion cmd --config "examples/payload-scale-416.yaml" --hunter-analyze
}
@test "orion cmd readout control plane cdv2 with text output " {
run_cmd orion cmd --config "examples/readout-control-plane-cdv2.yaml" --hunter-analyze --output-format text --save-output-path=output.txt
}
@test "orion cmd readout control plane node-density with json output " {
run_cmd orion cmd --config "examples/readout-control-plane-node-density.yaml" --hunter-analyze --output-format json --save-output-path=output.json
}
@test "orion cmd readout control plane node-density with json output and match all iterations " {
run_cmd orion cmd --config "examples/readout-control-plane-node-density.yaml" --hunter-analyze --output-format json --save-output-path=output.json --node-count True
}
@test "orion cmd readout netperf tcp with junit output " {
export es_benchmark_index="k8s-netperf"
run_cmd orion cmd --config "examples/readout-netperf-tcp.yaml" --output-format junit --hunter-analyze --save-output-path=output.xml
}
@test "orion cmd small scale cluster density with anomaly detection " {
run_cmd orion cmd --config "examples/small-scale-cluster-density.yaml" --lookback 5d --anomaly-detection
}
@test "orion cmd small scale node density cni anomaly detection with a window " {
run_cmd orion cmd --config "examples/small-scale-node-density-cni.yaml" --anomaly-detection --anomaly-window 3
}
@test "orion cmd trt external payload cluster density anomaly detection with a minimum percentage " {
run_cmd orion cmd --config "examples/trt-external-payload-cluster-density.yaml" --anomaly-detection --anomaly-window 3 --min-anomaly-percent 5
}
@test "orion cmd trt external payload crd scale with default anomaly detection " {
run_cmd orion cmd --config "examples/trt-external-payload-crd-scale.yaml" --anomaly-detection
}
@test "orion cmd trt external payload node density " {
run_cmd orion cmd --config "examples/trt-external-payload-node-density.yaml" --hunter-analyze
}
@test "orion cmd trt external payload cluster density " {
run_cmd orion cmd --config "examples/trt-payload-cluster-density.yaml" --hunter-analyze
}
@test "orion daemon small scale cluster density with anomaly detection " {
orion daemon --port 8080 &
DAEMON_PID=$!
echo "Orion daemon started with PID $DAEMON_PID"
run_cmd curl http://127.0.0.1:8080/daemon/anomaly?convert_tinyurl=True&test_name=small-scale-cluster-density
if [ ! -z "$DAEMON_PID" ]; then
kill $DAEMON_PID
echo "Orion daemon with PID $DAEMON_PID killed"
fi
}
@test "orion daemon small scale node density cni with changepoint detection " {
orion daemon --port 8080 &
DAEMON_PID=$!
echo "Orion daemon started with PID $DAEMON_PID"
run_cmd curl http://127.0.0.1:8080/daemon/changepoint?filter_changepoints=true&test_name=small-scale-node-density-cni
if [ ! -z "$DAEMON_PID" ]; then
kill $DAEMON_PID
echo "Orion daemon with PID $DAEMON_PID killed"
fi
}
@test "orion daemon trt payload cluster density with version parameter " {
orion daemon --port 8080 &
DAEMON_PID=$!
echo "Orion daemon started with PID $DAEMON_PID"
run_cmd curl http://127.0.0.1:8080/daemon/changepoint?version=4.17&filter_changepoints=false&test_name=trt-payload-cluster-density
if [ ! -z "$DAEMON_PID" ]; then
kill $DAEMON_PID
echo "Orion daemon with PID $DAEMON_PID killed"
fi
}