forked from nunit/nunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.cake
546 lines (459 loc) · 17.6 KB
/
build.cake
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
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
#tool nuget:?package=NUnit.ConsoleRunner&version=3.9.0
#tool GitLink
//////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
//////////////////////////////////////////////////////////////////////
// SET ERROR LEVELS
//////////////////////////////////////////////////////////////////////
var ErrorDetail = new List<string>();
//////////////////////////////////////////////////////////////////////
// SET PACKAGE VERSION
//////////////////////////////////////////////////////////////////////
var version = "3.12.0";
var modifier = "";
var dbgSuffix = configuration == "Debug" ? "-dbg" : "";
var packageVersion = version + modifier + dbgSuffix;
//////////////////////////////////////////////////////////////////////
// SUPPORTED FRAMEWORKS
//////////////////////////////////////////////////////////////////////
var AllFrameworks = new string[]
{
"net45",
"net40",
"net35",
"net20",
"netstandard1.4",
"netstandard2.0"
};
var NetCoreTests = new String[]
{
"netcoreapp1.1",
"netcoreapp2.0"
};
//////////////////////////////////////////////////////////////////////
// DEFINE RUN CONSTANTS
//////////////////////////////////////////////////////////////////////
var PROJECT_DIR = Context.Environment.WorkingDirectory.FullPath + "/";
var PACKAGE_DIR = PROJECT_DIR + "package/";
var BIN_DIR = PROJECT_DIR + "bin/" + configuration + "/";
var IMAGE_DIR = PROJECT_DIR + "images/";
var SOLUTION_FILE = "./nunit.sln";
// Test Runners
var NUNITLITE_RUNNER_DLL = "nunitlite-runner.dll";
// Test Assemblies
var FRAMEWORK_TESTS = "nunit.framework.tests.dll";
var EXECUTABLE_NUNITLITE_TESTS_EXE = "nunitlite.tests.exe";
var EXECUTABLE_NUNITLITE_TESTS_DLL = "nunitlite.tests.dll";
// Packages
var ZIP_PACKAGE = PACKAGE_DIR + "NUnit.Framework-" + packageVersion + ".zip";
///////////////////////////////////////////////////////////////////////////////
// SETUP / TEARDOWN
///////////////////////////////////////////////////////////////////////////////
Setup(context =>
{
if (BuildSystem.IsRunningOnAppVeyor)
{
var tag = AppVeyor.Environment.Repository.Tag;
if (tag.IsTag)
{
packageVersion = tag.Name;
}
else
{
var buildNumber = AppVeyor.Environment.Build.Number.ToString("00000");
var branch = AppVeyor.Environment.Repository.Branch;
var isPullRequest = AppVeyor.Environment.PullRequest.IsPullRequest;
if (branch == "master" && !isPullRequest)
{
packageVersion = version + "-dev-" + buildNumber + dbgSuffix;
}
else
{
var suffix = "-ci-" + buildNumber + dbgSuffix;
if (isPullRequest)
suffix += "-pr-" + AppVeyor.Environment.PullRequest.Number;
else if (AppVeyor.Environment.Repository.Branch.StartsWith("release", StringComparison.OrdinalIgnoreCase))
suffix += "-pre-" + buildNumber;
else
suffix += "-" + System.Text.RegularExpressions.Regex.Replace(branch, "[^0-9A-Za-z-]+", "-");
// Nuget limits "special version part" to 20 chars. Add one for the hyphen.
if (suffix.Length > 21)
suffix = suffix.Substring(0, 21);
packageVersion = version + suffix;
}
}
AppVeyor.UpdateBuildVersion(packageVersion);
}
Information("Building {0} version {1} of NUnit.", configuration, packageVersion);
});
//////////////////////////////////////////////////////////////////////
// CLEAN
//////////////////////////////////////////////////////////////////////
Task("Clean")
.Description("Deletes all files in the BIN directory")
.Does(() =>
{
CleanDirectory(BIN_DIR);
});
//////////////////////////////////////////////////////////////////////
// NUGET RESTORE
//////////////////////////////////////////////////////////////////////
Task("NuGetRestore")
.Description("Restores NuGet Packages")
.Does(() =>
{
DotNetCoreRestore(SOLUTION_FILE);
});
//////////////////////////////////////////////////////////////////////
// BUILD FRAMEWORKS
//////////////////////////////////////////////////////////////////////
Task("Build")
.Description("Builds the Solution")
.IsDependentOn("NuGetRestore")
.Does(() =>
{
MSBuild(SOLUTION_FILE, CreateSettings());
Information("Publishing netcoreapp1.1 tests so that dependencies are present...");
MSBuild("src/NUnitFramework/tests/nunit.framework.tests.csproj", CreateSettings()
.WithTarget("Publish")
.WithProperty("TargetFramework", "netcoreapp1.1")
.WithProperty("NoBuild", "true") // https://github.com/dotnet/cli/issues/5331#issuecomment-338392972
.WithProperty("PublishDir", BIN_DIR + "netcoreapp1.1/")
.WithRawArgument("/nologo"));
});
MSBuildSettings CreateSettings()
{
var settings = new MSBuildSettings { Verbosity = Verbosity.Minimal, Configuration = configuration };
// Only needed when packaging
settings.WithProperty("DebugType", "pdbonly");
if (IsRunningOnWindows())
settings.ToolVersion = MSBuildToolVersion.VS2017;
else
settings.ToolPath = Context.Tools.Resolve("msbuild");
return settings;
}
//////////////////////////////////////////////////////////////////////
// TEST
//////////////////////////////////////////////////////////////////////
Task("CheckForError")
.Description("Checks for errors running the test suites")
.Does(() => CheckForError(ref ErrorDetail));
Task("Test45")
.Description("Tests the .NET 4.5 version of the framework")
.IsDependentOn("Build")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
var runtime = "net45";
var dir = BIN_DIR + runtime + "/";
RunNUnitTests(dir, FRAMEWORK_TESTS, runtime, ref ErrorDetail);
RunTest(dir + EXECUTABLE_NUNITLITE_TESTS_EXE, dir, runtime, ref ErrorDetail);
});
Task("Test40")
.Description("Tests the .NET 4.0 version of the framework")
.IsDependentOn("Build")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
var runtime = "net40";
var dir = BIN_DIR + runtime + "/";
RunNUnitTests(dir, FRAMEWORK_TESTS, runtime, ref ErrorDetail);
RunTest(dir + EXECUTABLE_NUNITLITE_TESTS_EXE, dir, runtime, ref ErrorDetail);
});
Task("Test35")
.Description("Tests the .NET 3.5 version of the framework")
.IsDependentOn("Build")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
var runtime = "net35";
var dir = BIN_DIR + runtime + "/";
RunNUnitTests(dir, FRAMEWORK_TESTS, runtime, ref ErrorDetail);
RunTest(dir + EXECUTABLE_NUNITLITE_TESTS_EXE, dir, runtime, ref ErrorDetail);
});
Task("Test20")
.Description("Tests the .NET 2.0 version of the framework")
.IsDependentOn("Build")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
var runtime = "net20";
var dir = BIN_DIR + runtime + "/";
RunNUnitTests(dir, FRAMEWORK_TESTS, runtime, ref ErrorDetail);
RunTest(dir + EXECUTABLE_NUNITLITE_TESTS_EXE, dir, runtime, ref ErrorDetail);
});
Task("TestNetStandard14")
.Description("Tests the .NET Standard 1.4 version of the framework")
.IsDependentOn("Build")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
var runtime = "netcoreapp1.1";
var dir = BIN_DIR + runtime + "/";
RunDotnetCoreTests(dir + NUNITLITE_RUNNER_DLL, dir, FRAMEWORK_TESTS, runtime, ref ErrorDetail);
RunDotnetCoreTests(dir + EXECUTABLE_NUNITLITE_TESTS_DLL, dir, runtime, ref ErrorDetail);
});
Task("TestNetStandard20")
.Description("Tests the .NET Standard 2.0 version of the framework")
.IsDependentOn("Build")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
var runtime = "netcoreapp2.0";
var dir = BIN_DIR + runtime + "/";
RunDotnetCoreTests(dir + NUNITLITE_RUNNER_DLL, dir, FRAMEWORK_TESTS, runtime, ref ErrorDetail);
RunDotnetCoreTests(dir + EXECUTABLE_NUNITLITE_TESTS_DLL, dir, runtime, ref ErrorDetail);
});
//////////////////////////////////////////////////////////////////////
// PACKAGE
//////////////////////////////////////////////////////////////////////
var RootFiles = new FilePath[]
{
"LICENSE.txt",
"NOTICES.txt",
"CHANGES.md"
};
// Not all of these are present in every framework
// The Microsoft and System assemblies are part of the BCL
// used by the .NET 4.0 framework. 4.0 tests will not run without them.
// NUnit.System.Linq is only present for the .NET 2.0 build.
var FrameworkFiles = new FilePath[]
{
"mock-assembly.dll",
"mock-assembly.exe",
"nunit.framework.dll",
"nunit.framework.pdb",
"nunit.framework.xml",
"NUnit.System.Linq.dll",
"nunit.framework.tests.dll",
"nunit.testdata.dll",
"nunitlite.dll",
"nunitlite.pdb",
"nunitlite.tests.exe",
"nunitlite.tests.dll",
"slow-nunit-tests.dll",
"nunitlite-runner.exe",
"nunitlite-runner.dll",
"nunitlite-runner.pdb",
"Microsoft.Threading.Tasks.dll",
"Microsoft.Threading.Tasks.Extensions.Desktop.dll",
"Microsoft.Threading.Tasks.Extensions.dll",
"System.IO.dll",
"System.Runtime.dll",
"System.Threading.Tasks.dll",
"System.ValueTuple.dll"
};
string CurrentImageDir => $"{IMAGE_DIR}NUnit-{packageVersion}/";
Task("CreateImage")
.Description("Copies all files into the image directory")
.Does(() =>
{
CleanDirectory(CurrentImageDir);
CopyFiles(RootFiles, CurrentImageDir);
var imageBinDir = CurrentImageDir + "bin/";
CreateDirectory(imageBinDir);
Information("Created directory " + imageBinDir);
foreach (var runtime in AllFrameworks)
{
var targetDir = imageBinDir + Directory(runtime);
var sourceDir = BIN_DIR + Directory(runtime);
CreateDirectory(targetDir);
foreach (FilePath file in FrameworkFiles)
{
var sourcePath = sourceDir + "/" + file;
if (FileExists(sourcePath))
CopyFileToDirectory(sourcePath, targetDir);
}
var schemaPath = sourceDir + "/Schemas";
if (DirectoryExists(schemaPath))
CopyDirectory(sourceDir, targetDir);
}
foreach (var dir in NetCoreTests)
{
var targetDir = imageBinDir + Directory(dir);
var sourceDir = BIN_DIR + Directory(dir);
CopyDirectory(sourceDir, targetDir);
}
});
Task("GitLink")
.IsDependentOn("CreateImage")
.Description("Source-indexes PDBs in the images directory to the current commit")
.Does(() =>
{
GitLink3(GetFiles($"{CurrentImageDir}**/*.pdb"));
});
Task("PackageFramework")
.Description("Creates NuGet packages of the framework")
.IsDependentOn("GitLink")
.Does(() =>
{
CreateDirectory(PACKAGE_DIR);
var settings = new NuGetPackSettings
{
Version = packageVersion,
BasePath = CurrentImageDir,
OutputDirectory = PACKAGE_DIR
};
NuGetPack("nuget/framework/nunit.nuspec", settings);
NuGetPack("nuget/nunitlite/nunitlite.nuspec", settings);
});
Task("PackageZip")
.Description("Creates a ZIP file of the framework")
.IsDependentOn("GitLink")
.Does(() =>
{
CreateDirectory(PACKAGE_DIR);
var zipFiles =
GetFiles(CurrentImageDir + "*.*") +
GetFiles(CurrentImageDir + "bin/net20/**/*.*") +
GetFiles(CurrentImageDir + "bin/net35/**/*.*") +
GetFiles(CurrentImageDir + "bin/net40/**/*.*") +
GetFiles(CurrentImageDir + "bin/net45/**/*.*") +
GetFiles(CurrentImageDir + "bin/netstandard1.4/**/*.*") +
GetFiles(CurrentImageDir + "bin/netstandard2.0/**/*.*") +
GetFiles(CurrentImageDir + "bin/netcoreapp1.1/**/*.*") +
GetFiles(CurrentImageDir + "bin/netcoreapp2.0/**/*.*");
Zip(CurrentImageDir, File(ZIP_PACKAGE), zipFiles);
});
//////////////////////////////////////////////////////////////////////
// UPLOAD ARTIFACTS
//////////////////////////////////////////////////////////////////////
Task("UploadArtifacts")
.Description("Uploads artifacts to AppVeyor")
.IsDependentOn("Package")
.Does(() =>
{
UploadArtifacts(PACKAGE_DIR, "*.nupkg");
UploadArtifacts(PACKAGE_DIR, "*.zip");
});
//////////////////////////////////////////////////////////////////////
// SETUP AND TEARDOWN TASKS
//////////////////////////////////////////////////////////////////////
Teardown(context => CheckForError(ref ErrorDetail));
//////////////////////////////////////////////////////////////////////
// HELPER METHODS - GENERAL
//////////////////////////////////////////////////////////////////////
void UploadArtifacts(string packageDir, string searchPattern)
{
foreach(var zip in System.IO.Directory.GetFiles(packageDir, searchPattern))
AppVeyor.UploadArtifact(zip);
}
void CheckForError(ref List<string> errorDetail)
{
if(errorDetail.Count != 0)
{
var copyError = new List<string>();
copyError = errorDetail.Select(s => s).ToList();
errorDetail.Clear();
throw new Exception("One or more unit tests failed, breaking the build.\n"
+ copyError.Aggregate((x,y) => x + "\n" + y));
}
}
//////////////////////////////////////////////////////////////////////
// HELPER METHODS - TEST
//////////////////////////////////////////////////////////////////////
void RunNUnitTests(DirectoryPath workingDir, string testAssembly, string framework, ref List<string> errorDetail)
{
try
{
var path = workingDir.CombineWithFilePath(new FilePath(testAssembly));
var settings = new NUnit3Settings();
if(!IsRunningOnWindows())
settings.Process = NUnit3ProcessOption.InProcess;
NUnit3(path.ToString(), settings);
}
catch(CakeException ce)
{
errorDetail.Add(string.Format("{0}: {1}", framework, ce.Message));
}
}
void RunTest(FilePath exePath, DirectoryPath workingDir, string framework, ref List<string> errorDetail)
{
RunTest(exePath, workingDir, null, framework, ref errorDetail);
}
void RunTest(FilePath exePath, DirectoryPath workingDir, string arguments, string framework, ref List<string> errorDetail)
{
int rc = StartProcess(
MakeAbsolute(exePath),
new ProcessSettings()
{
Arguments = arguments,
WorkingDirectory = workingDir
});
if (rc > 0)
errorDetail.Add(string.Format("{0}: {1} tests failed", framework, rc));
else if (rc < 0)
errorDetail.Add(string.Format("{0} returned rc = {1}", exePath, rc));
}
void RunDotnetCoreTests(FilePath exePath, DirectoryPath workingDir, string framework, ref List<string> errorDetail)
{
RunDotnetCoreTests(exePath, workingDir, null, framework, ref errorDetail);
}
void RunDotnetCoreTests(FilePath exePath, DirectoryPath workingDir, string arguments, string framework, ref List<string> errorDetail)
{
int rc = StartProcess(
"dotnet",
new ProcessSettings()
{
Arguments = exePath + " " + arguments,
WorkingDirectory = workingDir
});
if (rc > 0)
errorDetail.Add(string.Format("{0}: {1} tests failed", framework, rc));
else if (rc < 0)
errorDetail.Add(string.Format("{0} returned rc = {1}", exePath, rc));
}
public static T WithRawArgument<T>(this T settings, string rawArgument) where T : Cake.Core.Tooling.ToolSettings
{
if (settings == null) throw new ArgumentNullException(nameof(settings));
if (!string.IsNullOrEmpty(rawArgument))
{
var previousCustomizer = settings.ArgumentCustomization;
if (previousCustomizer != null)
settings.ArgumentCustomization = builder => previousCustomizer.Invoke(builder).Append(rawArgument);
else
settings.ArgumentCustomization = builder => builder.Append(rawArgument);
}
return settings;
}
//////////////////////////////////////////////////////////////////////
// TASK TARGETS
//////////////////////////////////////////////////////////////////////
Task("Rebuild")
.Description("Rebuilds all versions of the framework")
.IsDependentOn("Clean")
.IsDependentOn("Build");
Task("Test")
.Description("Builds and tests all versions of the framework")
.IsDependentOn("Build")
.IsDependentOn("Test45")
.IsDependentOn("Test40")
.IsDependentOn("Test35")
.IsDependentOn("Test20")
.IsDependentOn("TestNetStandard14")
.IsDependentOn("TestNetStandard20");
Task("Package")
.Description("Packages all versions of the framework")
.IsDependentOn("CheckForError")
.IsDependentOn("PackageFramework")
.IsDependentOn("PackageZip");
Task("Appveyor")
.Description("Builds, tests and packages on AppVeyor")
.IsDependentOn("Build")
.IsDependentOn("Test")
.IsDependentOn("Package")
.IsDependentOn("UploadArtifacts");
Task("Travis")
.Description("Builds and tests on Travis")
.IsDependentOn("Build")
.IsDependentOn("Test");
Task("Default")
.Description("Builds all versions of the framework")
.IsDependentOn("Build");
//////////////////////////////////////////////////////////////////////
// EXECUTION
//////////////////////////////////////////////////////////////////////
RunTarget(target);