forked from kubernetes-sigs/kwok
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathe2e-test.sh
executable file
·180 lines (162 loc) · 4.37 KB
/
e2e-test.sh
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
#!/usr/bin/env bash
# Copyright 2022 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
DIR="$(dirname "${BASH_SOURCE[0]}")"
DIR="$(realpath "${DIR}")"
test_dir=$(realpath "${DIR}"/../test)
TARGETS=()
SKIPS=()
function filter_skip() {
cat | while read -r line; do
skip=false
for s in "${SKIPS[@]}"; do
if [[ "${line}" =~ ${s} ]]; then
skip=true
break
fi
done
if [[ "${skip}" == false ]]; then
echo "${line}"
fi
done
}
function shell_cases() {
find "${test_dir}" -name '*.test.sh' |
sed "s#^${test_dir}/##g" |
sed "s#.test.sh\$##g"
}
function e2e_cases() {
find test/e2e -type f -name 'main_test.go' |
sed 's|/main_test.go$||g' |
sed 's|^test/||g'
}
function e2e_option_cases() {
local files
local cases
files=$(find test/e2e -type f -name '*_test.go' -not -name 'main_test.go')
for f in ${files}; do
cases=$(grep "^func Test" <"${f}" | sed 's|(.*||g' | sed 's|^func Test||g')
f="${f%\/*}"
f="${f#*\/}"
for c in ${cases}; do
echo "${f}@${c}"
done
done
}
function all_cases() {
shell_cases | filter_skip
e2e_cases | filter_skip
}
function usage() {
echo "Usage: ${0} [cases...] [--help]"
echo " Empty argument will run all cases."
echo " CASES:"
for c in $(shell_cases | filter_skip); do
echo " ${c}"
done
for c in $(e2e_cases | filter_skip); do
echo " ${c}"
done
for c in $(e2e_option_cases | filter_skip); do
echo " ${c}"
done
}
function args() {
if [[ "${#}" -ne 0 ]]; then
while [[ $# -gt 0 ]]; do
arg="$1"
case ${arg} in
--help)
usage
exit 0
;;
--skip | --skip=*)
[[ "${arg#*=}" != "${arg}" ]] && SKIPS+=("${arg#*=}") || { SKIPS+=("${2}") && shift; } || :
shift
;;
-*)
echo "Error: Unknown argument: ${arg}"
usage
exit 1
;;
*)
TARGETS+=("${arg}")
shift
;;
esac
done
fi
if [[ "${#TARGETS[@]}" == 0 ]]; then
mapfile -t TARGETS < <(all_cases)
fi
}
function main() {
local failed=()
local test_case
local test_path
for target in "${TARGETS[@]}"; do
echo "================================================================================"
if [[ "${target}" == "e2e/"* ]]; then
echo "Testing ${target}..."
if [[ "${target}" == *"@"* ]]; then
test_case="${target##*@}"
test_path="${target%@*}"
if ! go test -timeout=1h -v -test.v "sigs.k8s.io/kwok/test/${test_path}" -test.run "^Test${test_case}\$" -args --v=6; then
failed+=("${target}")
echo "------------------------------"
echo "Test ${target} failed."
else
echo "------------------------------"
echo "Test ${target} passed."
fi
continue
fi
if ! go test -timeout=1h -v -test.v "sigs.k8s.io/kwok/test/${target}" -args --v=6; then
failed+=("${target}")
echo "------------------------------"
echo "Test ${target} failed."
else
echo "------------------------------"
echo "Test ${target} passed."
fi
continue
fi
target="${target%.test.sh}"
test="${test_dir}/${target}.test.sh"
if [[ ! -x "${test}" ]]; then
echo "Error: Test ${test} not found."
failed+=("${test}")
continue
fi
echo "Testing ${target}..."
if ! "${test_dir}/${target}.test.sh"; then
failed+=("${target}")
echo "------------------------------"
echo "Test ${target} failed."
else
echo "------------------------------"
echo "Test ${target} passed."
fi
done
echo "================================================================================"
if [[ "${#failed[@]}" -ne 0 ]]; then
echo "Error: Some tests failed"
for test in "${failed[@]}"; do
echo " - ${test}"
done
exit 1
fi
}
args "$@"
main