-
-
Notifications
You must be signed in to change notification settings - Fork 180
Expand file tree
/
Copy pathExceptionParsingTests.cs
More file actions
245 lines (209 loc) · 7.87 KB
/
ExceptionParsingTests.cs
File metadata and controls
245 lines (209 loc) · 7.87 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
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
using VerifyTests.ExceptionParsing;
using FilePair = VerifyTests.FilePair;
public class ExceptionParsingTests
{
static string projectDirectory = AttributeReader.GetProjectDirectory();
static string fakeFilePrefix = CurrentFile.Relative("ExceptionParsingTests.Fake");
static string receivedBin = $"{fakeFilePrefix}.received.bin";
static string verifiedBin = $"{fakeFilePrefix}.verified.bin";
static string receivedTxt = $"{fakeFilePrefix}.received.txt";
static string verifiedTxt = $"{fakeFilePrefix}.verified.txt";
static string fakeReceivedTextFile = CurrentFile.Relative("ExceptionParsingTests.Fake.received.txt");
static string fakeReceivedBinFile = CurrentFile.Relative("ExceptionParsingTests.Fake.received.bin");
[Fact]
public Task Error_EmptyList() =>
Throws(() => Parser.Parse([Environment.NewLine]))
.IgnoreStackTrace();
[Fact]
public Task Error_EmptyDirectory() =>
Throws(() => Parser.Parse(["Directory: "]))
.IgnoreStackTrace();
[Fact]
public Task Empty() =>
ParseVerify([], [], [], []);
[Fact]
public Task WithMessage()
{
var notEquals = new List<NotEqualResult>
{
new(new("txt", receivedTxt, verifiedTxt), "TheMessage", new("receivedText"), new("verifiedText")),
new(new("bin", receivedBin, verifiedBin), "TheMessage", null, null)
};
return ParseVerify([], notEquals, [], []);
}
[Fact]
public Task SingleEqual()
{
var equal = new List<FilePair>
{
new("txt", receivedTxt, verifiedTxt)
};
return ParseVerify([], [], [], equal);
}
[Fact]
public Task SingleNew()
{
var @new = new List<NewResult>
{
new(new("txt", receivedTxt, verifiedTxt), new("contents"))
};
return ParseVerify(@new, [], [], []);
}
[Fact]
public Task Nunit()
{
var exceptionMessage =
$"""
VerifyException : Directory: {Environment.CurrentDirectory}
NotEqual:
- Received: XAMLCombinerTests.TestOutput.received.xaml
Verified: XAMLCombinerTests.TestOutput.verified.xaml
FileContent:
NotEqual:
Received: XAMLCombinerTests.TestOutput.received.xaml
<?xml version="1.0" encoding="utf-8"?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:sys="clr-namespace:System;assembly=mscorlib" xmlns:sys_0="clr-namespace:System;assembly=System.Runtime">
<Style x:Key="Control1" />
<Color x:Key="Control1_Color">#FF2B579A</Color>
<sys:String x:Key="string1">stringValue</sys:String>
<Style x:Key="Control2" />
<Color x:Key="Control2_Color">#FF2B579A</Color>
<sys:String x:Key="string2">stringValue</sys:String>
<sys_0:String x:Key="string3">stringValue</sys_0:String>
<Style TargetType="Block" />
</ResourceDictionary>
Verified: XAMLCombinerTests.TestOutput.verified.xaml
""";
var result = Parser.Parse(exceptionMessage);
return Verifier.Verify(result);
}
[Fact]
public Task MSTest()
{
var exceptionMessage =
$"""
Test method TheTests.XAMLCombinerTests.TestOutput threw exception:
VerifyException: Directory: {Environment.CurrentDirectory}
NotEqual:
- Received: XAMLCombinerTests.TestOutput.received.xaml
Verified: XAMLCombinerTests.TestOutput.verified.xaml
FileContent:
NotEqual:
Received: XAMLCombinerTests.TestOutput.received.xaml
<?xml version="1.0" encoding="utf-8"?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:sys="clr-namespace:System;assembly=mscorlib" xmlns:sys_0="clr-namespace:System;assembly=System.Runtime">
<Style x:Key="Control1" />
<Color x:Key="Control1_Color">#FF2B579A</Color>
<sys:String x:Key="string1">stringValue</sys:String>
<Style x:Key="Control2" />
<Color x:Key="Control2_Color">#FF2B579A</Color>
<sys:String x:Key="string2">stringValue</sys:String>
<sys_0:String x:Key="string3">stringValue</sys_0:String>
<Style TargetType="Block" />
</ResourceDictionary>
Verified: XAMLCombinerTests.TestOutput.verified.xaml
""";
var result = Parser.Parse(exceptionMessage);
return Verifier.Verify(result);
}
[Fact]
public Task SingleNotEqual()
{
var notEquals = new List<NotEqualResult>
{
new(new("txt", receivedTxt, verifiedTxt), null, new("receivedText"), new("verifiedText"))
};
return ParseVerify([], notEquals, [], []);
}
[Fact]
public Task MultipleItem()
{
var equal = new List<FilePair>
{
new("txt", receivedTxt, verifiedTxt),
new("bin", receivedBin, verifiedBin)
};
var @new = new List<NewResult>
{
new(new("txt", receivedTxt, verifiedTxt), new("the content")),
new(new("bin", receivedBin, verifiedBin), null)
};
var notEquals = new List<NotEqualResult>
{
new(new("txt", receivedTxt, verifiedTxt), null, new("receivedText"), new("verifiedText")),
new(new("bin", receivedBin, verifiedBin), null, null, null)
};
var delete = new List<string>
{
fakeReceivedTextFile,
fakeReceivedBinFile
};
return ParseVerify(@new, notEquals, delete, equal);
}
[Fact]
public Task SingleItem()
{
var equal = new List<FilePair>
{
new("txt", receivedTxt, verifiedTxt)
};
var @new = new List<NewResult>
{
new(new("txt", receivedTxt, verifiedTxt), new("the content"))
};
var notEquals = new List<NotEqualResult>
{
new(new("txt", receivedTxt, verifiedTxt), null, new("receivedText"), new("verifiedText"))
};
var delete = new List<string>
{
fakeReceivedTextFile
};
return ParseVerify(@new, notEquals, delete, equal);
}
[Fact]
public Task SingleDelete()
{
var delete = new List<string>
{
fakeReceivedTextFile
};
return ParseVerify([], [], delete, []);
}
#region ExceptionParsing
static Result ParseExceptionMessage(string exceptionMessage)
{
var result = Parser.Parse(exceptionMessage);
// result.New: files with no corresponding .verified. file
// result.NotEqual: files where .received. differs from .verified.
// result.Delete: .verified. files no longer produced by any test
// result.Equal: files where .received. matches .verified.
foreach (var file in result.NotEqual)
{
Debug.WriteLine($"Received: {file.Received}");
Debug.WriteLine($"Verified: {file.Verified}");
}
return result;
}
#endregion
static Task ParseVerify(
IReadOnlyCollection<NewResult> @new,
IReadOnlyCollection<NotEqualResult> notEquals,
IReadOnlyCollection<string> delete,
IReadOnlyCollection<FilePair> equal)
{
var message = VerifyExceptionMessageBuilder.Build(
projectDirectory,
@new,
notEquals,
delete,
equal);
var result = Parser.Parse(message);
return Verifier.Verify(
new
{
message,
result
});
}
}