forked from VerifyTests/Verify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScrubbersSample.cs
137 lines (123 loc) · 3.61 KB
/
ScrubbersSample.cs
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
using System;
using System.Threading.Tasks;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using VerifyTests;
using VerifyMSTest;
namespace TheTests
{
#region ScrubbersSampleMSTest
[TestClass]
public class ScrubbersSample :
VerifyBase
{
[TestMethod]
public Task Lines()
{
var settings = new VerifySettings();
settings.ScrubLinesWithReplace(
replaceLine: line =>
{
if (line.Contains("LineE"))
{
return "NoMoreLineE";
}
return line;
});
settings.ScrubLines(removeLine: line => line.Contains("J"));
settings.ScrubLinesContaining("b", "D");
settings.ScrubLinesContaining(StringComparison.Ordinal, "H");
return Verify(
settings: settings,
target: @"
LineA
LineB
LineC
LineD
LineE
LineH
LineI
LineJ
");
}
[TestMethod]
public Task LinesFluent()
{
return Verify(
target: @"
LineA
LineB
LineC
LineD
LineE
LineH
LineI
LineJ
")
.ScrubLinesWithReplace(
replaceLine: line =>
{
if (line.Contains("LineE"))
{
return "NoMoreLineE";
}
return line;
})
.ScrubLines(removeLine: line => line.Contains("J"))
.ScrubLinesContaining("b", "D")
.ScrubLinesContaining(StringComparison.Ordinal, "H");
}
[TestMethod]
public Task AfterSerialization()
{
var target = new ToBeScrubbed
{
RowVersion = "7D3"
};
var settings = new VerifySettings();
settings.AddScrubber(
input => input.Replace("7D3", "TheRowVersion"));
return Verify(target, settings);
}
[TestMethod]
public Task AfterSerializationFluent()
{
var target = new ToBeScrubbed
{
RowVersion = "7D3"
};
return Verify(target)
.AddScrubber(
input => input.Replace("7D3", "TheRowVersion"));
}
[TestMethod]
public Task RemoveOrReplace()
{
return Verify(
target: @"
LineA
LineB
LineC
")
.ScrubLinesWithReplace(
replaceLine: line =>
{
if (line.Contains("LineB"))
{
return null;
}
return line.ToLower();
});
}
[TestMethod]
public Task EmptyLines()
{
return Verify(
target: @"
LineA
LineC
")
.ScrubEmptyLines();
}
}
#endregion
}