forked from common-workflow-language/cwl-v1.3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_test.sh
executable file
·190 lines (171 loc) · 4.65 KB
/
run_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
181
182
183
184
185
186
187
188
189
190
#!/bin/bash
func() {
helpmessage=$(cat)
}
func <<EOF
$(basename "$0"): Run common workflow tool description language conformance tests.
Syntax:
$(basename "$0") [RUNNER=/path/to/cwl-runner]
[EXTRA=--optional-arguments-to-cwl-runner]
Options:
-ntest_range Run specific test(s) by number (format "1,2-4,7")
-Ntest_range Exclude specific test(s) by number (format "1,2-4,7")
-stest_names Run specific test(s) by name (format "test_a,test_b")
-Stest_names Exclude specific test(s) by name (format "test_a,test_b")
-l List tests
-jJ Specifies the number of tests to run simultaneously
(defaults to one).
--only-tools Only test CommandLineTools
--junit-xml=FILENAME Store results in JUnit XML format using the given
FILENAME
--classname=CLASSNAME In the JUnit XML, tag the results with the given
CLASSNAME
--timeout=TIMEOUT cwltest timeout in seconds.
--verbose Print the cwltest invocation and pass --verbose to
cwltest (or if running the "--self" check, print the
schema-salad-tool invocation)
--self Test CWL and test .cwl files themselves. If this flag
is given, any other flags will be ignored.
--badgedir=DIRNAME Specifies the directory to store JSON files for badges.
--tags TAGS Tags to be tested
Note:
EXTRA is useful for passing --enable-dev to the CWL reference runner:
Example: RUNNER=cwltool EXTRA=--enable-dev
EOF
CWL_VER=v1.3.0-dev1
TEST_n=""
TEST_N=""
TEST_s=""
TEST_S=""
JUNIT_XML=""
RUNNER=cwl-runner
PLATFORM=$(uname -s)
EXTRA=""
CLASS=""
VERBOSE=""
SELF=""
BADGE=""
TIMEOUT=""
TAGS=""
REPORT_URI="https://github.com/common-workflow-language/cwl-v1.3/tree/main/"
while [ -n "$1" ]
do
arg="$1"; shift
case "$arg" in
--help)
echo >&2 "$helpmessage"
echo >&2
exit 1
;;
-n*)
TEST_n=$arg
;;
-N*)
TEST_N=$arg
;;
-s*)
TEST_s=$arg
;;
-S*)
TEST_S=$arg
;;
-j*)
TEST_J=$arg
;;
-l)
TEST_L=-l
;;
--only-tools)
ONLY_TOOLS=$arg
;;
--junit-xml=*)
JUNIT_XML=$arg
;;
--classname=*)
CLASS=$arg
;;
--verbose)
VERBOSE=$arg
;;
--self)
SELF=1
;;
--badgedir=*)
BADGE="$arg --baseuri=$REPORT_URI"
;;
--timeout=*)
TIMEOUT=$arg
;;
--tags=*)
TAGS=$arg
;;
*=*)
eval "$(echo "$arg" | cut -d= -f1)"=\""$(echo "$arg" | cut -d= -f2-)"\"
;;
esac
done
if [ -n "${SELF}" ]; then
# Ensure schema-salad-tool command
if [ ! -x "$(command -v schema-salad-tool)" ]; then
pip install --quiet schema_salad
fi
# This is how CWL should be written.
DEFINITION=./CommonWorkflowLanguage.yml
QUIET=--quiet
if [ "$VERBOSE" = "--verbose" ]; then
QUIET=
fi
# Let's test all the files at once as that is faster
schema-salad-tool ${QUIET} ${DEFINITION} \
$(find tests -type f -name "*.cwl") || exit 1
exit 0
fi
if [ -n "${TEST_L}" ]; then
runner=$RUNNER
elif ! runner="$(command -v $RUNNER)" ; then
echo >&2 "$helpmessage"
echo >&2
echo >&2 "runner '$RUNNER' not found"
exit 1
fi
runs=0
failures=0
runtest() {
if [ -z "${TEST_L}" ]; then
echo "--- Running CWL Conformance Tests $CWL_VER on $1 ---"
"$1" --version
fi
runs=$((runs+1))
(COMMAND="cwltest --tool $1 \
--test=conformance_tests.yaml ${CLASS} \
${TEST_n} ${TEST_N} ${TEST_s} ${TEST_S} \
${VERBOSE} ${TEST_L} ${TEST_J} ${ONLY_TOOLS} ${JUNIT_XML} \
${TIMEOUT} ${BADGE} ${TAGS} -- ${EXTRA}"
if [ "$VERBOSE" = "--verbose" ]; then echo "${COMMAND}"; fi
${COMMAND}
) || failures=$((failures+1))
}
if [ "$PLATFORM" = "Linux" ]; then
runtest "$(readlink -f "$runner")"
elif [ "$PLATFORM" = "Darwin" ]; then
runtest "$runner"
else
runtest "$(greadlink -f "$runner")"
fi
if [ -n "$TEST_L" ] ; then
exit 0
fi
# Final reporting
echo
if [ $failures != 0 ]; then
echo "$failures tool tests failed"
else
if [ $runs = 0 ]; then
echo >&2 "$helpmessage"
echo >&2
exit 1
else
echo "All tool tests succeeded"
fi
fi
exit $failures