forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathxunit-wrappers.targets
505 lines (430 loc) · 21.2 KB
/
xunit-wrappers.targets
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
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
<Project>
<Target Name="CreateAllWrappers" DependsOnTargets="GetListOfTestCmds;FindCmdDirectories">
<MSBuild
Projects="$(MSBuildProjectFile)"
Targets="CreateXunitWrapper;BuildXunitWrapper"
Properties="_CMDDIR=%(TestDirectories.Identity)"
Condition="'@(TestDirectories)' != ''" />
</Target>
<Target Name="CreateXunitWrapper" DependsOnTargets="CreateXunitFacts">
<PropertyGroup>
<_XunitWrapperGen >
<![CDATA[
$(_XunitProlog)
@(AllXUnitFacts)
$(_XunitEpilog)
]]>
</_XunitWrapperGen>
<XunitWrapperGenCsProj>
<![CDATA[
<Project>
<Import Project="$(TestProjectDir)Common/dir.sdkbuild.props" />
<PropertyGroup>
<OutputPath>$(XUnitTestBinBase)\$(CategoryWithSlash)</OutputPath>
<RuntimeFrameworkVersion>$(MicrosoftNETCoreAppRuntimewinx64Version)</RuntimeFrameworkVersion>
<RunAnalyzers>false</RunAnalyzers>
</PropertyGroup>
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.props" />
<ItemGroup>
<Compile Include="$(XunitWrapper).cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(TestProjectDir)Common\Coreclr.TestWrapper\Coreclr.TestWrapper.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="xunit" Version="$(XUnitVersion)" />
<PackageReference Include="Microsoft.DotNet.XUnitConsoleRunner" Version="$(MicrosoftDotNetXUnitConsoleRunnerVersion)" />
</ItemGroup>
<ItemGroup>
<Content Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" />
</Project>
]]>
</XunitWrapperGenCsProj>
<XunitRunnerConfig>
<![CDATA[
{
"diagnosticMessages": true,
"longRunningTestSeconds": 120,
"shadowCopy": false,
"preEnumerateTheories": false
}
]]>
</XunitRunnerConfig>
</PropertyGroup>
<!-- <Exec Command="md" -->
<MakeDir Directories="$(XunitWrapperGeneratedCSDirBase)$(Category)"/>
<!-- Write the file -->
<WriteLinesToFile
File="$(XunitWrapperSrcDir)\$(XunitWrapper).cs"
Lines="$(_XunitWrapperGen)"
Overwrite="true" />
<!-- Write the file -->
<WriteLinesToFile
File="$(XunitWrapperSrcDir)\$(XunitWrapper).csproj"
Lines="$(XunitWrapperGenCsProj)"
Overwrite="true" />
<!-- Write the file -->
<WriteLinesToFile
File="$(XunitWrapperSrcDir)\xunit.runner.json"
Lines="$(XunitRunnerConfig)"
Overwrite="true" />
</Target>
<Target Name="BuildXunitWrapper">
<MSBuild Projects="$(XunitWrapperSrcDir)\$(XunitWrapper).csproj" Targets="Restore;Build" />
</Target>
<Import Project="$(MSBuildThisFileDirectory)Common/testgrouping.proj" />
<Target Name="CreateXunitFacts" DependsOnTargets="GetListOfTestCmds">
<!-- NOTE! semicolons must be escaped with %3B boooo -->
<PropertyGroup>
<CategoryWithSlash>$([System.IO.Path]::GetRelativePath('$(XunitTestBinBase)', '$(_CMDDIR)'))</CategoryWithSlash>
<Category Condition="'$(RunningOnUnix)' != 'true'" >$([System.String]::Copy('$(CategoryWithSlash)').Replace('\','.'))</Category>
<Category Condition="'$(RunningOnUnix)' == 'true'" >$([System.String]::Copy('$(CategoryWithSlash)').Replace('/','.'))</Category>
<XunitWrapper>$(Category).XUnitWrapper</XunitWrapper>
<XunitWrapperSrcDir>$(XunitWrapperGeneratedCSDirBase)$(Category)</XunitWrapperSrcDir>
<MobilePlatform Condition=" '$(TargetOS)' == 'android' ">android</MobilePlatform>
<MobilePlatform Condition=" '$(TargetOS)' == 'ios' Or '$(TargetOS)' == 'iossimulator' Or '$(TargetOS)' == 'tvos' Or '$(TargetOS)' == 'tvossimulator' ">apple</MobilePlatform>
<IsMobile>false</IsMobile>
<IsMobile Condition=" '$(TargetOS)' == 'android' Or '$(TargetOS)' == 'ios' Or '$(TargetOS)' == 'iossimulator' Or '$(TargetOS)' == 'tvos' Or '$(TargetOS)' == 'tvossimulator' ">true</IsMobile>
</PropertyGroup>
<PropertyGroup>
<_XunitProlog Condition=" '$(_XunitProlog)'=='' and '$(IsMobile)'=='false' ">
<![CDATA[
using Xunit%3B
using Xunit.Abstractions%3B
using System%3B
using System.Collections.Generic%3B
using System.Diagnostics%3B
using System.Reflection%3B
using System.Text.RegularExpressions%3B
using CoreclrTestLib%3B
using System.IO%3B
namespace $([System.String]::Copy($(Category)).Replace(".","_").Replace("\","").Replace("-","_"))
{
internal class _Global
{
internal static bool runningInWindows%3B
internal static string reportBase%3B
internal static string testBinaryBase%3B
internal static string coreRoot%3B
internal static string category%3B
internal static string helixUploadRoot%3B
static _Global()
{
reportBase = Environment.GetEnvironmentVariable(%22XunitTestReportDirBase%22)%3B
testBinaryBase = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)%3B
coreRoot = Environment.GetEnvironmentVariable(%22CORE_ROOT%22)%3B
category = "$([System.String]::Copy($(Category)).Replace(".","_").Replace("\","").Replace("-","_"))"%3B
helixUploadRoot = Environment.GetEnvironmentVariable(%22HELIX_WORKITEM_UPLOAD_ROOT%22)%3B
if (!String.IsNullOrEmpty(helixUploadRoot)) {
reportBase = Path.Combine(Path.GetFullPath(helixUploadRoot), "Reports")%3B
}
if (String.IsNullOrEmpty(reportBase)) {
reportBase = Path.Combine(testBinaryBase, "Reports")%3B
}
else
{
reportBase = Path.GetFullPath(reportBase)%3B
}
if (String.IsNullOrEmpty(coreRoot)) {
throw new ArgumentException("Environment variable CORE_ROOT is not set")%3B
}
coreRoot = Path.GetFullPath(coreRoot)%3B
string operatingSystem = Environment.GetEnvironmentVariable("OS")%3B
runningInWindows = (operatingSystem != null && operatingSystem.StartsWith("Windows"))%3B
}
}
]]>
</_XunitProlog>
<_XunitProlog Condition=" '$(_XunitProlog)'=='' and '$(IsMobile)'=='true' ">
<![CDATA[
using Xunit%3B
using Xunit.Abstractions%3B
using System%3B
using System.Collections.Generic%3B
using System.Diagnostics%3B
using System.Reflection%3B
using System.Text.RegularExpressions%3B
using CoreclrTestLib%3B
using System.IO%3B
namespace $([System.String]::Copy($(Category)).Replace(".","_").Replace("\","").Replace("-","_"))
{
public class _Global : IDisposable
{
public bool runningInWindows%3B
public string reportBase%3B
public string testBinaryBase%3B
public string coreRoot%3B
public string category%3B
public string helixUploadRoot%3B
public MobileAppHandler handler = new MobileAppHandler()%3B
public _Global()
{
reportBase = Environment.GetEnvironmentVariable(%22XunitTestReportDirBase%22)%3B
testBinaryBase = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)%3B
coreRoot = Environment.GetEnvironmentVariable(%22CORE_ROOT%22)%3B
category = "$([System.String]::Copy($(Category)).Replace(".","_").Replace("\","").Replace("-","_"))"%3B
helixUploadRoot = Environment.GetEnvironmentVariable(%22HELIX_WORKITEM_UPLOAD_ROOT%22)%3B
int retCode = -100%3B
if (!String.IsNullOrEmpty(helixUploadRoot)) {
reportBase = Path.Combine(Path.GetFullPath(helixUploadRoot), "Reports")%3B
}
if (String.IsNullOrEmpty(reportBase)) {
reportBase = Path.Combine(testBinaryBase, %22Reports%22)%3B
}
else
{
reportBase = Path.GetFullPath(reportBase)%3B
}
if (String.IsNullOrEmpty(coreRoot)) {
throw new ArgumentException("Environment variable CORE_ROOT is not set")%3B
}
coreRoot = Path.GetFullPath(coreRoot)%3B
string operatingSystem = Environment.GetEnvironmentVariable("OS")%3B
runningInWindows = (operatingSystem != null && operatingSystem.StartsWith("Windows"))%3B
retCode = handler.InstallMobileApp(%22$(MobilePlatform)%22, category, testBinaryBase, reportBase, %22$(TargetOS)%22.ToLowerInvariant())%3B
Assert.True(retCode == 0, "Failed to install mobile app.")%3B
}
public void Dispose()
{
int retCode = -100%3B
retCode = handler.UninstallMobileApp(%22$(MobilePlatform)%22, category, testBinaryBase, reportBase, %22$(TargetOS)%22.ToLowerInvariant())%3B
Assert.True(retCode == 0, "Failed to uninstall mobile app.")%3B
}
}
[CollectionDefinition("Runtime test collection")]
public class RuntimeTestCollection : ICollectionFixture<_Global>
{
// This class has no code, and is never created. Its purpose is simply
// to be the place to apply [CollectionDefinition] and all the
// ICollectionFixture<> interfaces.
}
]]>
</_XunitProlog>
<_XunitEpilog Condition=" '$(_XunitEpilog)'=='' ">
<![CDATA[
}
]]>
</_XunitEpilog>
</PropertyGroup>
<PropertyGroup>
<TestExecutableReplacement Condition="'$(TestWrapperTargetsWindows)' != 'true' ">testExecutable = testExecutable.Replace("\\", "/")%3B</TestExecutableReplacement>
</PropertyGroup>
<ItemGroup>
<AllCMDsPresent Include="$(_CMDDIR)\**\*.$(TestScriptExtension)" Exclude="$(_CMDDIR)\**\AppBundle\*.$(TestScriptExtension)" />
<AllCMDsPresent Remove="$(_CMDDIR)\**\run-v8.sh" Condition="'$(TargetArchitecture)' == 'wasm'" />
<AllCMDsPresent Remove="@(MergedRunnableTestPaths)" />
<AllCMDsPresent Remove="@(OutOfProcessTestPaths)" />
</ItemGroup>
<ItemGroup Condition="'@(AllCMDsPresent)' != ''">
<TestGroupingDistinctWithCase Include="@(TestGrouping->Metadata('FullPath')->DistinctWithCase())" />
<TestGroupingNotRelevant Include="@(TestGroupingDistinctWithCase)" Exclude="@(AllCMDsPresent)" />
<GroupedCMDs Include="@(TestGroupingDistinctWithCase)" Exclude="@(TestGroupingNotRelevant)" />
<GroupedCMDs Include="@(AllCMDsPresent)" Exclude="@(GroupedCMDs)">
<TestGroup>$(Category)</TestGroup>
</GroupedCMDs>
<AllCMDExcludeFilter Include="@(ExcludeList->Metadata('FullPath'))" Condition="$(HaveExcludes)" />
<AllCMDs Include="@(GroupedCMDs)" Exclude="@(AllCMDExcludeFilter)">
<RelativeToCMDDIR>$([MSBuild]::MakeRelative($(_CMDDIR), %(FullPath)))</RelativeToCMDDIR>
</AllCMDs>
<AllCommands Include="@(AllCMDs)" Condition="@(AllCMDs->Count()) > 0">
<DisplayName>$([MSBuild]::MakeRelative($(XunitTestBinBase), %(AllCMDs.FullPath)))</DisplayName>
<FactName Condition="'$(RunningOnUnix)' != 'true'" >_$([MSBuild]::ValueOrDefault(%(AllCMDs.RelativeToCMDDIR),"").Replace(".","_").Replace("\","_").Replace("-","_"))</FactName>
<ClassName Condition="'$(RunningOnUnix)' != 'true'" >_$([MSBuild]::ValueOrDefault(%(AllCMDs.RelativeToCMDDIR),"").Replace($(TestScriptExtension),"").Replace(".","_").Replace("\","_").Replace("-","_"))</ClassName>
<FactName Condition="'$(RunningOnUnix)' == 'true'" >_$([MSBuild]::ValueOrDefault(%(AllCMDs.RelativeToCMDDIR),"").Replace(".","_").Replace("/","_").Replace("-","_"))</FactName>
<ClassName Condition="'$(RunningOnUnix)' == 'true'" >_$([MSBuild]::ValueOrDefault(%(AllCMDs.RelativeToCMDDIR), '').Replace($(TestScriptExtension),'').Replace('.','_').Replace('/','_').Replace('-','_'))</ClassName>
<TestGroup>%(AllCMDs.TestGroup)</TestGroup>
<XUnitFact Condition=" '$(IsMobile)'=='false' ">
<![CDATA[
public class %(AllCommands.ClassName)
{
private readonly ITestOutputHelper output%3B
public %(AllCommands.ClassName)(ITestOutputHelper output)
{
this.output = output%3B
}
[Fact(DisplayName=@"%(AllCommands.DisplayName)")]
[Trait("TestGroup", "%(AllCommands.TestGroup)")]
public void %(AllCommands.FactName)()
{
int ret = -100%3B
string outputFile = null%3B
string errorFile = null%3B
string testExecutable = null%3B
string outputDir = null%3B
Exception infraEx = null%3B
try
{
CoreclrTestWrapperLib wrapper = new CoreclrTestWrapperLib()%3B
string testSubfolder = @"\$(Category)\$([System.String]::Copy('%(AllCMDs.RelativeDir)').Replace("$(_CMDDIR)$([System.IO.Path]::DirectorySeparatorChar)",''))"%3B
outputFile = System.IO.Path.GetFullPath(_Global.reportBase + testSubfolder + @"%(AllCMDs.FileName).output.txt")%3B
errorFile = System.IO.Path.GetFullPath(_Global.reportBase + testSubfolder + @"%(AllCMDs.FileName).error.txt")%3B
testExecutable = System.IO.Path.GetFullPath(_Global.testBinaryBase + @"$([System.String]::Copy('%(AllCMDs.FullPath)').Replace("$(_CMDDIR)",''))")%3B
$(TestExecutableReplacement)
outputDir = System.IO.Path.GetDirectoryName(outputFile)%3B
if (!_Global.runningInWindows) {
testExecutable = testExecutable.Replace(".cmd", ".sh")%3B
}
System.IO.Directory.CreateDirectory(_Global.reportBase + testSubfolder)%3B
ret = wrapper.RunTest(testExecutable, outputFile, errorFile, _Global.category, _Global.testBinaryBase, outputDir)%3B
}
catch (Exception ex)
{
infraEx = ex%3B
}
if (infraEx != null)
{
Assert.Fail("Test Infrastructure Failure: " + infraEx.ToString())%3B
}
else
{
List<string> testOutput = new List<string>()%3B
try
{
testOutput.AddRange(System.IO.File.ReadAllLines(errorFile))%3B
}
catch (Exception ex)
{
testOutput.Add("Unable to read error file: " + errorFile)%3B
testOutput.Add(ex.ToString())%3B
}
testOutput.Add(string.Empty)%3B
testOutput.Add("Return code: " + ret)%3B
testOutput.Add("Raw output file: " + outputFile)%3B
testOutput.Add("Raw output:")%3B
try
{
testOutput.AddRange(System.IO.File.ReadAllLines(outputFile))%3B
}
catch(Exception ex)
{
testOutput.Add("Unable to read output file: " + outputFile)%3B
testOutput.Add(ex.ToString())%3B
}
testOutput.Add("To run the test:")%3B
testOutput.Add("> set CORE_ROOT=" + _Global.coreRoot)%3B
testOutput.Add("> " + testExecutable)%3B
var unicodeControlCharsRegex = new Regex("%5C%5Cp{C}+")%3B
// Remove all characters that have no visual or spatial representation.
for (int i = 0%3B i < testOutput.Count%3B i++)
{
string line = testOutput[i]%3B
line = unicodeControlCharsRegex.Replace(line, string.Empty)%3B
testOutput[i] = line%3B
}
foreach (string line in testOutput)
{
output.WriteLine(line)%3B
}
Assert.True(ret == CoreclrTestWrapperLib.EXIT_SUCCESS_CODE, string.Join(Environment.NewLine, testOutput))%3B
}
}
}
]]>
</XUnitFact>
<XUnitFact Condition=" '$(IsMobile)'=='true' ">
<![CDATA[
[Collection("Runtime test collection")]
public class %(AllCommands.ClassName)
{
private readonly ITestOutputHelper output%3B
_Global globalVar%3B
public %(AllCommands.ClassName)(ITestOutputHelper output, _Global globalVar)
{
this.output = output%3B
this.globalVar = globalVar%3B
}
[Fact(DisplayName=@"%(AllCommands.DisplayName)")]
[Trait("TestGroup", "%(AllCommands.TestGroup)")]
public void %(AllCommands.FactName)()
{
int ret = -100%3B
string outputFile = null%3B
string errorFile = null%3B
string testExecutable = null%3B
string outputDir = null%3B
Exception infraEx = null%3B
try
{
CoreclrTestWrapperLib wrapper = new CoreclrTestWrapperLib()%3B
string testSubfolder = @"\$(Category)\$([System.String]::Copy('%(AllCMDs.RelativeDir)').Replace("$(_CMDDIR)$([System.IO.Path]::DirectorySeparatorChar)",''))"%3B
outputFile = System.IO.Path.GetFullPath(globalVar.reportBase + testSubfolder + @"%(AllCMDs.FileName).output.txt")%3B
errorFile = System.IO.Path.GetFullPath(globalVar.reportBase + testSubfolder + @"%(AllCMDs.FileName).error.txt")%3B
testExecutable = System.IO.Path.GetFullPath(globalVar.testBinaryBase + @"$([System.String]::Copy('%(AllCMDs.FullPath)').Replace("$(_CMDDIR)",''))")%3B
$(TestExecutableReplacement)
outputDir = System.IO.Path.GetDirectoryName(outputFile)%3B
if (!globalVar.runningInWindows) {
testExecutable = testExecutable.Replace(".cmd", ".sh")%3B
}
System.IO.Directory.CreateDirectory(globalVar.reportBase + testSubfolder)%3B
ret = wrapper.RunTest(testExecutable, outputFile, errorFile, globalVar.category, globalVar.testBinaryBase, outputDir)%3B
}
catch (Exception ex)
{
infraEx = ex%3B
}
if (infraEx != null)
{
Assert.Fail("Test Infrastructure Failure: " + infraEx.ToString())%3B
}
else
{
List<string> testOutput = new List<string>()%3B
try
{
testOutput.AddRange(System.IO.File.ReadAllLines(errorFile))%3B
}
catch (Exception ex)
{
testOutput.Add("Unable to read error file: " + errorFile)%3B
testOutput.Add(ex.ToString())%3B
}
testOutput.Add(string.Empty)%3B
testOutput.Add("Return code: " + ret)%3B
testOutput.Add("Raw output file: " + outputFile)%3B
testOutput.Add("Raw output:")%3B
try
{
testOutput.AddRange(System.IO.File.ReadAllLines(outputFile))%3B
}
catch(Exception ex)
{
testOutput.Add("Unable to read output file: " + outputFile)%3B
testOutput.Add(ex.ToString())%3B
}
testOutput.Add("To run the test:")%3B
testOutput.Add("> set CORE_ROOT=" + globalVar.coreRoot)%3B
testOutput.Add("> " + testExecutable)%3B
var unicodeControlCharsRegex = new Regex("%5C%5Cp{C}+")%3B
// Remove all characters that have no visual or spatial representation.
for (int i = 0%3B i < testOutput.Count%3B i++)
{
string line = testOutput[i]%3B
line = unicodeControlCharsRegex.Replace(line, string.Empty)%3B
testOutput[i] = line%3B
}
foreach (string line in testOutput)
{
output.WriteLine(line)%3B
}
// Add Android app running log to testOutput
if (ret != CoreclrTestWrapperLib.EXIT_SUCCESS_CODE)
{
string androidLogFile = System.IO.Path.Combine(outputDir, "adb-logcat-net.dot." + globalVar.category + "-net.dot.MonoRunner.log")%3B
if(File.Exists(androidLogFile))
{
testOutput.AddRange(System.IO.File.ReadAllLines(androidLogFile))%3B
}
}
Assert.True(ret == CoreclrTestWrapperLib.EXIT_SUCCESS_CODE, string.Join(Environment.NewLine, testOutput))%3B
}
}
}
]]>
</XUnitFact>
</AllCommands>
<AllXUnitFacts Include= "@(AllCommands->Metadata(XUnitFact))" />
</ItemGroup>
</Target>
</Project>