-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathTestResultParserTestBase.cs
405 lines (325 loc) · 18.3 KB
/
TestResultParserTestBase.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
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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace Agent.Plugins.UnitTests
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using Agent.Plugins.Log.TestResultParser.Contracts;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Moq;
public abstract class TestResultParserTestBase
{
public TestContext TestContext { get; set; }
protected Mock<ITraceLogger> DiagnosticDataCollector;
protected Mock<ITelemetryDataCollector> TelemetryDataCollector;
protected Mock<ITestRunManager> TestRunManagerMock;
protected ITestResultParser Parser;
protected bool IsPythonParser = false;
private int _singleLinePerfViolations = 0;
private int _timesPerfTelemtryFired = 0;
private double _totalTime = 0;
private double perLineParseThresholdTimeInMilliseconds = 0.8;
public TestResultParserTestBase()
{
TestRunManagerMock = new Mock<ITestRunManager>();
// Mock logger to log to console for easy debugging
DiagnosticDataCollector = new Mock<ITraceLogger>();
DiagnosticDataCollector.Setup(x => x.Info(It.IsAny<string>())).Callback<string>(data => { TestContext.WriteLine($"Info: {data}"); });
DiagnosticDataCollector.Setup(x => x.Error(It.IsAny<string>())).Callback<string>(data => { TestContext.WriteLine($"Error: {data}"); });
DiagnosticDataCollector.Setup(x => x.Warning(It.IsAny<string>())).Callback<string>(data => { TestContext.WriteLine($"Warning: {data}"); });
DiagnosticDataCollector.Setup(x => x.Verbose(It.IsAny<string>())).Callback<string>(data =>
{
TestContext.WriteLine($"Verbose: {data}");
if (data.StartsWith("PERF :"))
{
_singleLinePerfViolations += 1;
}
});
TelemetryDataCollector = new Mock<ITelemetryDataCollector>();
TelemetryDataCollector.Setup(x => x.AddAndAggregate(It.IsRegex(".*ParserTotalTime"), It.IsAny<object>(), It.IsAny<string>()))
.Callback<string, object, string>((string eventName, object value, string eventArea) =>
{
++_timesPerfTelemtryFired;
_totalTime += (double)value;
});
}
public void TestSuccessScenariosWithBasicAssertions(string testCase, bool assertFailedCount = true, bool assertPassedCount = true, bool assertSkippedCount = true)
{
int indexOfTestRun = 0;
int lastTestRunId = 0;
var resultFileContents = File.ReadAllLines($"{testCase}Result.txt");
TestRunManagerMock.Setup(x => x.PublishAsync(It.IsAny<TestRun>())).Callback<TestRun>(testRun =>
{
ValidateTestRun(testRun, resultFileContents, indexOfTestRun++, lastTestRunId, assertFailedCount, assertPassedCount, assertSkippedCount);
lastTestRunId = testRun.TestRunId;
});
var inputLines = GetLines(testCase).ToList();
foreach (var line in inputLines)
{
Parser.Parse(line);
}
TestRunManagerMock.Verify(x => x.PublishAsync(It.IsAny<TestRun>()), Times.Exactly(Math.Max(1, resultFileContents.Length / 5)), $"Expected {Math.Max(1, resultFileContents.Length / 5)} test runs.");
ValidatePerf(inputLines.Count, IsPythonParser)
;
}
public void TestPartialSuccessScenariosWithBasicAssertions(string testCase)
{
int indexOfTestRun = 0;
int lastTestRunId = 0;
var resultFileContents = File.ReadAllLines($"{testCase}Result.txt");
TestRunManagerMock.Setup(x => x.PublishAsync(It.IsAny<TestRun>())).Callback<TestRun>(testRun =>
{
ValidatePartialSuccessTestRun(testRun, resultFileContents, indexOfTestRun++, lastTestRunId);
lastTestRunId = testRun.TestRunId;
});
var inputLines = GetLines(testCase).ToList();
foreach (var line in inputLines)
{
Parser.Parse(line);
}
// TODO: fix assertions
TestRunManagerMock.Verify(x => x.PublishAsync(It.IsAny<TestRun>()), Times.Exactly(resultFileContents.Length / 7), $"Expected {resultFileContents.Length / 7 } test runs.");
Assert.AreEqual(resultFileContents.Length / 8, indexOfTestRun, $"Expected {resultFileContents.Length / 7} test runs.");
ValidatePerf(inputLines.Count, IsPythonParser);
}
public void TestWithDetailedAssertions(string testCase)
{
var resultFileContents = File.ReadAllLines($"{testCase}Result.txt");
TestRunManagerMock.Setup(x => x.PublishAsync(It.IsAny<TestRun>())).Callback<TestRun>(testRun =>
{
ValidateTestRunWithDetails(testRun, resultFileContents);
});
var inputLines = GetLines(testCase).ToList();
foreach (var line in inputLines)
{
Parser.Parse(line);
}
TestRunManagerMock.Verify(x => x.PublishAsync(It.IsAny<TestRun>()), Times.Once, $"Expected a test run to have been Published.");
ValidatePerf(inputLines.Count, IsPythonParser);
}
public void TestWithStackTraceAssertions(string testCase)
{
var resultFileContents = File.ReadAllLines($"{testCase}Result.txt");
TestRunManagerMock.Setup(x => x.PublishAsync(It.IsAny<TestRun>())).Callback<TestRun>(testRun =>
{
ValidateTestRunWithStackTraces(testRun, resultFileContents);
});
var inputLines = GetLines(testCase).ToList();
foreach (var line in inputLines)
{
Parser.Parse(line);
}
TestRunManagerMock.Verify(x => x.PublishAsync(It.IsAny<TestRun>()), Times.Once, $"Expected a test run to have been Published.");
ValidatePerf(inputLines.Count, IsPythonParser);
}
public void TestNegativeTestsScenarios(string testCase)
{
var inputLines = GetLines(testCase).ToList();
foreach (var line in inputLines)
{
Parser.Parse(line);
}
TestRunManagerMock.Verify(x => x.PublishAsync(It.IsAny<TestRun>()), Times.Never, $"Expected no test run to have been Published.");
ValidatePerf(inputLines.Count, IsPythonParser);
}
#region Data Drivers
public static IEnumerable<object[]> GetTestCasesFromRelativePath(string relativePathToTestCase)
{
foreach (var testCase in new DirectoryInfo(relativePathToTestCase).GetFiles("TestCase*.txt"))
{
if (!testCase.Name.EndsWith("Result.txt"))
{
// Uncomment the below line to run for a particular test case for debugging
// if (testCase.Name.Contains("TestCase002"))
yield return new object[] { testCase.Name.Split(".txt")[0] };
}
}
}
#endregion
#region Log Data Utilities
public IEnumerable<LogData> GetLines(string testCase)
{
// Pre-pad the test case with initiazization logs to simulate the targeted scenario
// meant mainly to get more accurate perf readings
var linesToBePrependedToTheLogs = File.ReadAllLines(Path.Combine("CommonTestResources", "LogPadding", "PrePadding.txt"));
// Do not assign actual line numbers to these bogus lines as debugging
// the actual test case file will become difficult
// The prepended logs will have a negative line number
// and the actual line numebers will start at 1
int lineNumber = 1 - linesToBePrependedToTheLogs.Length;
var testResultsConsoleOut = linesToBePrependedToTheLogs.Concat(File.ReadAllLines($"{testCase}.txt"));
foreach (var line in testResultsConsoleOut)
{
yield return new LogData() { Line = RemoveTimeStampFromLogLineIfPresent(line), LineNumber = lineNumber++ };
}
}
public string RemoveTimeStampFromLogLineIfPresent(string line)
{
// Remove the preceding timestamp if present.
var trimTimeStamp = new Regex("^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}\\.[0-9]{7}Z (?<TrimmedLog>.*)", RegexOptions.ExplicitCapture);
var match = trimTimeStamp.Match(line);
if (match.Success)
{
return match.Groups["TrimmedLog"].Value;
}
return line;
}
#endregion
#region ValidationHelpers
public void ValidateTestRun(TestRun testRun, string[] resultFileContents, int indexOfTestRun,
int lastTestRunId, bool assertFailedCount = true, bool assertPassedCount = true, bool assertSkippedCount = true)
{
int i = indexOfTestRun * 5;
int expectedPassedTestsCount = int.Parse(resultFileContents[i + 0]);
int expectedFailedTestsCount = int.Parse(resultFileContents[i + 1]);
int expectedSkippedTestsCount = int.Parse(resultFileContents[i + 2]);
int expectedTotalTestsCount = int.Parse(resultFileContents[i + 3]);
long expectedTestRunDuration = long.Parse(resultFileContents[i + 4]);
Assert.AreEqual(expectedPassedTestsCount, testRun.TestRunSummary.TotalPassed, "Passed tests summary does not match.");
Assert.AreEqual(expectedFailedTestsCount, testRun.TestRunSummary.TotalFailed, "Failed tests summary does not match.");
Assert.AreEqual(expectedSkippedTestsCount, testRun.TestRunSummary.TotalSkipped, "Skipped tests summary does not match.");
Assert.AreEqual(expectedTotalTestsCount, testRun.TestRunSummary.TotalTests, "Total tests summary does not match.");
if (assertFailedCount)
{
Assert.AreEqual(expectedFailedTestsCount, testRun.FailedTests.Count, "Failed tests count does not match.");
}
if (assertPassedCount)
{
Assert.AreEqual(expectedPassedTestsCount, testRun.PassedTests.Count, "Passed tests count does not match.");
}
if (assertSkippedCount)
{
Assert.AreEqual(expectedSkippedTestsCount, testRun.SkippedTests.Count, "Skipped tests count does not match.");
}
Assert.AreEqual(expectedFailedTestsCount, testRun.FailedTests.Count, "Failed tests count does not match.");
Assert.IsTrue(testRun.TestRunId > lastTestRunId, $"Expected test run id greater than {lastTestRunId} but found {testRun.TestRunId} instead.");
Assert.AreEqual(expectedTestRunDuration, testRun.TestRunSummary.TotalExecutionTime.TotalMilliseconds, "Test run duration did not match.");
}
public void ValidatePartialSuccessTestRun(TestRun testRun, string[] resultFileContents, int indexOfTestRun, int lastTestRunId)
{
int i = indexOfTestRun * 8;
int expectedPassedTestsSummaryCount = int.Parse(resultFileContents[i + 0]);
int expectedPassedTestsCount = int.Parse(resultFileContents[i + 1]);
int expectedFailedTestsSummary = int.Parse(resultFileContents[i + 2]);
int expectedFailedTestsCount = int.Parse(resultFileContents[i + 3]);
int expectedSkippedTestsSummaryCount = int.Parse(resultFileContents[i + 4]);
int expectedSkippedTestsCount = int.Parse(resultFileContents[i + 5]);
int expectedTotalTestsCount = int.Parse(resultFileContents[i + 6]);
long expectedTestRunDuration = long.Parse(resultFileContents[i + 7]);
Assert.AreEqual(expectedPassedTestsSummaryCount, testRun.TestRunSummary.TotalPassed, "Passed tests summary does not match.");
Assert.AreEqual(expectedFailedTestsSummary, testRun.TestRunSummary.TotalFailed, "Failed tests summary does not match.");
Assert.AreEqual(expectedSkippedTestsSummaryCount, testRun.TestRunSummary.TotalSkipped, "Skipped tests summary does not match.");
Assert.AreEqual(expectedTotalTestsCount, testRun.TestRunSummary.TotalTests, "Total tests summary does not match.");
Assert.AreEqual(expectedPassedTestsCount, testRun.PassedTests.Count, "Passed tests count does not match.");
Assert.AreEqual(expectedFailedTestsCount, testRun.FailedTests.Count, "Failed tests count does not match.");
Assert.AreEqual(expectedSkippedTestsCount, testRun.SkippedTests.Count, "Skipped tests count does not match.");
Assert.IsTrue(testRun.TestRunId > lastTestRunId, $"Expected test run id greater than {lastTestRunId} but found {testRun.TestRunId} instead.");
Assert.AreEqual(expectedTestRunDuration, testRun.TestRunSummary.TotalExecutionTime.TotalMilliseconds, "Test run duration did not match.");
}
public void ValidateTestRunWithDetails(TestRun testRun, string[] resultFileContents)
{
int currentLine = 0;
int expectedPassedTestsCount = int.Parse(resultFileContents[currentLine].Split(" ")[1]);
currentLine++;
Assert.AreEqual(expectedPassedTestsCount, testRun.PassedTests.Count, "Passed tests count does not match.");
for (int testIndex = 0; testIndex < expectedPassedTestsCount; currentLine++, testIndex++)
{
Assert.AreEqual(resultFileContents[currentLine], testRun.PassedTests[testIndex].Name, "Test Case name does not match.");
}
currentLine++;
int expectedFailedTestsCount = int.Parse(resultFileContents[currentLine].Split(" ")[1]);
currentLine++;
Assert.AreEqual(expectedFailedTestsCount, testRun.FailedTests.Count, "Failed tests count does not match.");
for (int testIndex = 0; testIndex < expectedFailedTestsCount; currentLine++, testIndex++)
{
Assert.AreEqual(resultFileContents[currentLine], testRun.FailedTests[testIndex].Name, "Test Case name does not match.");
}
currentLine++;
int expectedSkippedTestsCount = int.Parse(resultFileContents[currentLine].Split(" ")[1]);
currentLine++;
Assert.AreEqual(expectedSkippedTestsCount, testRun.SkippedTests.Count, "Skipped tests count does not match.");
for (int testIndex = 0; testIndex < expectedSkippedTestsCount; currentLine++, testIndex++)
{
Assert.AreEqual(resultFileContents[currentLine], testRun.SkippedTests[testIndex].Name, "Test Case name does not match.");
}
}
public void ValidateTestRunWithStackTraces(TestRun testRun, string[] resultFileContents)
{
int currentLine = 0;
int expectedFailedTestsCount = int.Parse(resultFileContents[currentLine].Split(" ")[1]);
currentLine++;
Assert.AreEqual(expectedFailedTestsCount, testRun.FailedTests.Count, "Failed tests count does not match.");
for (int testIndex = 0; testIndex < expectedFailedTestsCount; testIndex++)
{
string expectedStackTrace = null;
while (resultFileContents[currentLine] != "-----EndOfStackTrace-----")
{
if (expectedStackTrace == null)
{
expectedStackTrace = resultFileContents[currentLine];
}
else
{
expectedStackTrace += Environment.NewLine + resultFileContents[currentLine];
}
currentLine++;
}
currentLine++;
try
{
Assert.AreEqual(expectedStackTrace, testRun.FailedTests[testIndex].StackTrace, "Stack trace contents do not match.");
}
catch
{
if (expectedStackTrace == null && testRun.FailedTests[testIndex].StackTrace == string.Empty)
{
return;
}
throw;
}
}
}
#endregion
#region PerfValidationHelpers
/// <summary>
/// Perf related assertions
/// </summary>
/// <param name="inputLinesCount"></param>
/// <param name="isPythonParser"></param>
private void ValidatePerf(int inputLinesCount, bool isPythonParser = false)
{
// Allow a certain number of single line violations as these spikes happen due to reasons directly unrelated to
// the parser code but related to CLR like garbage collection etc.
Assert.IsFalse(_singleLinePerfViolations > GetSpikesThreshold(inputLinesCount), "Regression in perf, please check logs for more details.");
if (isPythonParser)
{
// The python parser is peculiar in the aspect that it recalls Parse after a reset for certain lines
Assert.IsTrue(inputLinesCount <= _timesPerfTelemtryFired, $"Perf telemetry not fired for every line, " +
$" expected atleast {inputLinesCount} events but got {_timesPerfTelemtryFired}");
}
else
{
Assert.AreEqual(inputLinesCount, _timesPerfTelemtryFired, "Perf telemetry not fired for every line");
}
// Out main interest is the overall run time of the parser for a realisitc number of lines of log output
Assert.IsTrue(_totalTime / inputLinesCount < perLineParseThresholdTimeInMilliseconds, $"The average allowed parse time per line is {perLineParseThresholdTimeInMilliseconds} but in this" +
$" case it was {_totalTime / inputLinesCount}");
}
private int GetSpikesThreshold(int inputLinesCount)
{
if (inputLinesCount < 100)
{
return 20;
}
if (inputLinesCount < 1000)
{
return 30;
}
return 25 + inputLinesCount / 200;
}
#endregion
}
}