forked from dotnet/wcf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-test.sh
executable file
·386 lines (321 loc) · 10.5 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
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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
#!/usr/bin/env bash
wait_on_pids()
{
# Wait on the last processes
for job in $1
do
wait $job
if [ "$?" -ne 0 ]
then
TestsFailed=$(($TestsFailed+1))
fi
done
}
usage()
{
echo "Runs .NET Wcf tests on FreeBSD, Linux or OSX"
echo "usage: run-test [options]"
echo
echo "Input sources:"
echo " --coreclr-bins <location> Location of root of the binaries directory"
echo " containing the FreeBSD, Linux or OSX coreclr build"
echo " default: <repo_root>/bin/Product/<OS>.x64.<Configuration>"
echo " --mscorlib-bins <location> Location of the root binaries directory containing"
echo " the FreeBSD, Linux or OSX mscorlib.dll"
echo " default: <repo_root>/bin/Product/<OS>.x64.<Configuration>"
echo " --corefx-tests <location> Location of the root binaries location containing"
echo " the tests to run"
echo " default: <repo_root>/bin/tests/<OS>.AnyCPU.<Configuration>"
echo " --corefx-native-bins <location> Location of the FreeBSD, Linux or OSX native corefx binaries"
echo " default: <repo_root>/bin/<OS>.x64.<Configuration>"
echo " --wcf-bins <location> Location of the linux/mac WCF binaries"
echo " default: <repo_root>/bin/<OS>.AnyCPU.<Configuration>"
echo " --wcf-tests <location> Location of the root binaries location containing"
echo " the windows WCF tests"
echo " --bridge-host <machineName> Machine hosting the Bridge for multi-machine tests"
echo
echo " --xunit-args <xunit args> Additional args to pass to xunit"
echo
echo "Flavor/OS options:"
echo " --configuration <config> Configuration to run (Debug/Release)"
echo " default: Debug"
echo " --os <os> OS to run (FreeBSD, Linux or OSX)"
echo " default: detect current OS"
echo
echo "Execution options:"
echo " --restrict-proj <regex> Run test projects that match regex"
echo " default: .* (all projects)"
echo
exit 1
}
ProjectRoot="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Location parameters
# OS/Configuration defaults
Configuration="Debug"
OSName=$(uname -s)
case $OSName in
Darwin)
OS=OSX
;;
FreeBSD)
OS=FreeBSD
;;
Linux)
OS=Linux
;;
*)
echo "Unsupported OS $OSName detected, configuring as if for Linux"
OS=Linux
;;
esac
# Misc defaults
TestSelection=".*"
TestsFailed=0
BridgeHost=""
XunitArgs="-notrait category=failing -notrait category=OuterLoop"
OverlayDir="$ProjectRoot/bin/tests/$OS.AnyCPU.$Configuration/TestOverlay/"
create_test_overlay()
{
local mscorlibLocation="$MscorlibBins/mscorlib.dll"
# Make the overlay
rm -rf $OverlayDir
mkdir -p $OverlayDir
local LowerConfiguration="$(echo $Configuration | awk '{print tolower($0)}')"
# First the temporary test host binaries
local packageLibDir="$packageDir/lib"
local mscorlibLocation="$MscorlibBins/mscorlib.dll"
# First copy the binaries from the linux build of WCF
if [ ! -d $WcfBins ]
then
echo "WCF binaries not found at $WcfBins"
exit 1
fi
# We no longer copy binaries from the WCF bin folder because they can contain
# assemblies built from other than the test folders. The test folders already
# contain any WCF-built assemblies they require. We leave this legacy copy here
# in case we need to bring it back.
# find $WcfBins -name '*.dll' -and -not -name "*Test*" -exec cp '{}' "$OverlayDir" ";"
if [ ! -d $packageLibDir ]
then
echo "Package not laid out as expected"
exit 1
fi
cp $packageLibDir/* $OverlayDir
# Copy some binaries from the linux build of corefx
if [ ! -d $CoreFxBins ]
then
echo "Corefx binaries not found at $CoreFxBins"
exit 1
fi
# In the past we needed to copy some specific binaries from the CoreFx
# repo due to packaging issues. This is no longer necessary, but we
# retain the commented out code below as a reminder how it was done
# in case we need to do it again.
# echo "Copying selected CoreFxBins..."
# find $CoreFxBins -name '*.dll' -and -name "*System.Net.*" -and -not -wholename "*Test*" -and -not -wholename "*/ToolRuntime/*" -and -not -wholename "*/RemoteExecutorConsoleApp/*" -exec cp '{}' "$OverlayDir" ";"
# Copy the CoreCLR native binaries
if [ ! -d $CoreClrBins ]
then
echo "Coreclr $OS binaries not found at $CoreClrBins"
exit 1
fi
cp -r $CoreClrBins/* $OverlayDir
# Then the mscorlib from the upstream build.
# TODO When the mscorlib flavors get properly changed then
if [ ! -f $mscorlibLocation ]
then
echo "Mscorlib not found at $mscorlibLocation"
exit 1
fi
cp -r $mscorlibLocation $OverlayDir
# Then the native CoreFX binaries
if [ ! -d $CoreFxNativeBins ]
then
echo "Corefx native binaries should be built (use build.sh native in root)"
exit 1
fi
cp $CoreFxNativeBins/* $OverlayDir
# Remove from the OverlayDir any ServiceModel assemblies.
# The versions in the ServiceModel tests folders are the ones we want.
rm -f $OverlayDir/System.Private.ServiceModel.dll
rm -f $OverlayDir/System.ServiceModel.*.dll
}
copy_test_overlay()
{
testDir=$1
cp -r $OverlayDir/* $testDir/
}
# $1 is the name of the test project
runtest()
{
testProject=$1
# Check here to see whether we should run this project
if grep "UnsupportedPlatforms.*$OS.*" $1 > /dev/null
then
echo "Test project file $1 indicates this test is not supported on $OS, skipping"
exit 0
fi
# Check for project restrictions
if [[ ! $testProject =~ $TestSelection ]]; then
echo "Skipping $testProject"
exit 0
fi
# Grab the directory name that would correspond to this test
lowerOS="$(echo $OS | awk '{print tolower($0)}')"
fileName="${file##*/}"
fileNameWithoutExtension="${fileName%.*}"
testDllName="$fileNameWithoutExtension.dll"
xunitOSCategory="non$lowerOS"
xunitOSCategory+="tests"
dirName="$WcfTests/$fileNameWithoutExtension/dnxcore50"
if [ ! -d "$dirName" ] || [ ! -f "$dirName/$testDllName" ]
then
echo "Did not find corresponding test dll for $testProject at $dirName/$testDllName"
exit 1
fi
copy_test_overlay $dirName
pushd $dirName > /dev/null
# Remove the mscorlib native image, since our current test layout build process
# uses a windows runtime and so we include the windows native image for mscorlib
if [ -e mscorlib.ni.dll ]
then
rm mscorlib.ni.dll
fi
chmod +x ./corerun
# Invoke xunit
echo
echo "Running tests in $dirName"
echo "./corerun xunit.console.netcore.exe $testDllName -xml testResults.xml $XunitArgs -notrait category=$xunitOSCategory"
echo
./corerun xunit.console.netcore.exe $testDllName -xml testResults.xml $XunitArgs -notrait category=$xunitOSCategory
exitCode=$?
if [ $exitCode -ne 0 ]
then
echo "One or more tests failed while running tests from '$fileNameWithoutExtension'. Exit code $exitCode."
fi
popd > /dev/null
exit $exitCode
}
# Parse arguments
while [[ $# > 0 ]]
do
opt="$1"
case $opt in
-h|--help)
usage
;;
--coreclr-bins)
CoreClrBins=$2
;;
--mscorlib-bins)
MscorlibBins=$2
;;
--corefx-bins)
CoreFxBins=$2
;;
--corefx-native-bins)
CoreFxNativeBins=$2
;;
--wcf-tests)
WcfTests=$2
;;
--wcf-bins)
WcfBins=$2
;;
--bridge-host)
BridgeHost=$2
export BridgeHost
;;
--xunit-args)
XunitArgs=$2
;;
--restrict-proj)
TestSelection=$2
;;
--configuration)
Configuration=$2
;;
--os)
OS=$2
;;
*)
;;
esac
shift
done
# Compute paths to the binaries if they haven't already been computed
if [ "$CoreClrBins" == "" ]
then
CoreClrBins="$ProjectRoot/bin/Product/$OS.x64.$Configuration"
fi
if [ "$MscorlibBins" == "" ]
then
MscorlibBins="$ProjectRoot/bin/Product/$OS.x64.$Configuration"
fi
if [ "$CoreFxBins" == "" ]
then
CoreFxBins="$ProjectRoot/bin/$OS.AnyCPU.$Configuration"
fi
if [ "$CoreFxNativeBins" == "" ]
then
CoreFxNativeBins="$ProjectRoot/bin/$OS.x64.$Configuration/Native"
fi
if [ "$WcfTests" == "" ]
then
WcfTests="$ProjectRoot/bin/tests/Windows_NT.AnyCPU.$Configuration"
fi
if [ "$WcfBins" == "" ]
then
WcfBins="$ProjectRoot/bin/$OS.AnyCPU.$Configuration"
fi
# Check parameters up front for valid values:
if [ ! "$Configuration" == "Debug" ] && [ ! "$Configuration" == "Release" ]
then
echo "Configuration should be Debug or Release"
exit 1
fi
if [ ! "$OS" == "FreeBSD" ] && [ ! "$OS" == "Linux" ] && [ ! "$OS" == "OSX" ]
then
echo "OS should be FreeBSD, Linux or OSX"
exit 1
fi
if [ "$CoreClrObjs" == "" ]
then
CoreClrObjs="$ProjectRoot/bin/obj/$OS.x64.$Configuration"
fi
if [ "$XunitArgs" != *"OuterLoop"* ]
then
echo "OuterLoop tests will be run using the Bridge at $BridgeHost"
fi
create_test_overlay
# Walk the directory tree rooted at src bin/tests/$OS.AnyCPU.$Configuration/
TestsFailed=0
numberOfProcesses=0
maxProcesses=$(($(getconf _NPROCESSORS_ONLN)+1))
TestProjects=($(find . -regex ".*/src/.*/tests/.*\.Tests\.csproj"))
for file in ${TestProjects[@]}
do
runtest $file &
pids="$pids $!"
numberOfProcesses=$(($numberOfProcesses+1))
if [ "$numberOfProcesses" -ge $maxProcesses ]; then
wait_on_pids "$pids"
numberOfProcesses=0
pids=""
fi
done
# Wait on the last processes
wait_on_pids "$pids"
# Cleanup any certificates installed by OuterLoop tests
# We need to make corerun executable to invoke
echo "chmod a+x $WcfTests/Infrastructure.Common.Tests/dnxcore50/corerun"
chmod a+x $WcfTests/Infrastructure.Common.Tests/dnxcore50/corerun
echo "$WcfTests/Infrastructure.Common.Tests/dnxcore50/corerun $WcfBins/CertificateCleanup/CertificateCleanup.exe"
$WcfTests/Infrastructure.Common.Tests/dnxcore50/corerun $WcfBins/CertificateCleanup/CertificateCleanup.exe
if [ "$TestsFailed" -gt 0 ]
then
echo "$TestsFailed test(s) failed"
else
echo "All tests passed."
fi
exit $TestsFailed