-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathVerifyHelper.cs
More file actions
46 lines (40 loc) · 1.58 KB
/
VerifyHelper.cs
File metadata and controls
46 lines (40 loc) · 1.58 KB
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
using System.Runtime.CompilerServices;
namespace NSwag.CodeGeneration.Tests;
public static class VerifyHelper
{
/// <summary>
/// Helper to run verify tests with sane defaults.
/// </summary>
public static SettingsTask Verify(string output, bool scrubPragmas = true, bool scrubApiComments = true, [CallerFilePath] string sourceFile = "")
{
var settingsTask = Verifier
.Verify(output, sourceFile: sourceFile);
settingsTask = settingsTask
.ScrubLinesContaining(
StringComparison.OrdinalIgnoreCase,
"Generated using the NSwag toolchain",
"Generated using the NJsonSchema",
"x-generator",
"[System.CodeDom.Compiler.GeneratedCode(\"NSwag\",",
"[System.CodeDom.Compiler.GeneratedCode(\"NJsonSchema\"",
"auto-generated>",
"//-------------");
if (scrubPragmas)
{
settingsTask = settingsTask.ScrubLines(x => x.StartsWith("#pragma", StringComparison.Ordinal));
}
if (scrubApiComments)
{
settingsTask = settingsTask.ScrubLines(x =>
{
var trimmed = x.TrimStart();
return trimmed.StartsWith("/// ", StringComparison.Ordinal)
|| trimmed.StartsWith("/* ", StringComparison.Ordinal)
|| trimmed.StartsWith("* ", StringComparison.Ordinal);
});
}
return settingsTask
.UseDirectory("Snapshots")
.AutoVerify(includeBuildServer: false);
}
}