This repository was archived by the owner on Apr 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathBaseTest.cs
630 lines (557 loc) · 21.2 KB
/
BaseTest.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
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
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
//--------------------------------------------------
// <copyright file="BaseTest.cs" company="Magenic">
// Copyright 2019 Magenic, All rights Reserved
// </copyright>
// <summary>Base code for tests without a system under test object like web drivers or database connections</summary>
//--------------------------------------------------
using Magenic.Maqs.Utilities.Data;
using Magenic.Maqs.Utilities.Helper;
using Magenic.Maqs.Utilities.Logging;
using Magenic.Maqs.Utilities.Performance;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using NUnit.Framework;
using NUnit.Framework.Interfaces;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Reflection;
using System.Runtime.ExceptionServices;
using System.Text;
using NUnitTestContext = NUnit.Framework.TestContext;
using VSTestContext = Microsoft.VisualStudio.TestTools.UnitTesting.TestContext;
namespace Magenic.Maqs.BaseTest
{
/// <summary>
/// Base for tests without a defined system under test
/// </summary>
[TestClass]
#pragma warning disable S2187 // TestCases should contain tests
public class BaseTest
#pragma warning restore S2187 // TestCases should contain tests
{
/// <summary>
/// The Visual Studio TestContext
/// </summary>
private VSTestContext testContextInstance;
/// <summary>
/// Initializes a new instance of the <see cref="BaseTest" /> class
/// </summary>
public BaseTest()
{
this.LoggedExceptions = new ConcurrentDictionary<string, List<string>>();
this.BaseTestObjects = new ConcurrentDictionary<string, BaseTestObject>();
// Update your config parameters
if (NUnitTestContext.Parameters != null)
{
try
{
Config.UpdateWithNUnitTestContext(NUnitTestContext.Parameters);
}
catch (Exception e)
{
// Test logger is not created yet so write to the console
Console.WriteLine("Failed to override NUnit configuration settings because: " + e.Message);
}
}
}
/// <summary>
/// Gets or sets the performance timer collection for a test
/// </summary>
public PerfTimerCollection PerfTimerCollection
{
get
{
return this.TestObject.PerfTimerCollection;
}
set
{
this.TestObject.PerfTimerCollection = value;
}
}
/// <summary>
/// Gets or sets the SoftAssert objects
/// </summary>
public SoftAssert SoftAssert
{
get
{
return this.TestObject.SoftAssert;
}
set
{
this.TestObject.SoftAssert = value;
}
}
/// <summary>
/// Gets or sets the testing object
/// </summary>
public Logger Log
{
get
{
return this.TestObject.Log;
}
set
{
this.TestObject.Log = value;
}
}
/// <summary>
/// Gets or sets the testing object
/// </summary>
public List<string> LoggedExceptionList
{
get
{
// If no logged exception are found return an empty list
if (!this.LoggedExceptions.ContainsKey(this.GetFullyQualifiedTestClassName()))
{
return new List<string>();
}
return this.LoggedExceptions[this.GetFullyQualifiedTestClassName()];
}
set
{
this.LoggedExceptions.AddOrUpdate(this.GetFullyQualifiedTestClassName(), value, (oldkey, oldvalue) => value);
}
}
/// <summary>
/// Gets or sets the Visual Studio TextContext
/// </summary>
public VSTestContext TestContext
{
get
{
return this.testContextInstance;
}
set
{
this.testContextInstance = value;
try
{
// The test context has been set so update your config parameters
Config.UpdateWithVSTestContext(this.testContextInstance);
}
catch (Exception e)
{
Console.WriteLine("Failed to override VSTest configuration settings because: " + e.Message);
}
}
}
/// <summary>
/// Gets or sets the test object
/// </summary>
public BaseTestObject TestObject
{
get
{
if (!this.BaseTestObjects.ContainsKey(this.GetFullyQualifiedTestClassName()))
{
this.CreateNewTestObject();
}
return this.BaseTestObjects[this.GetFullyQualifiedTestClassName()];
}
set
{
this.BaseTestObjects.AddOrUpdate(this.GetFullyQualifiedTestClassName(), value, (oldkey, oldvalue) => value);
}
}
/// <summary>
/// Gets the driver store
/// </summary>
public ManagerDictionary ManagerStore
{
get
{
return this.TestObject.ManagerStore;
}
}
/// <summary>
/// Gets or sets the BaseContext objects
/// </summary>
internal ConcurrentDictionary<string, BaseTestObject> BaseTestObjects { get; set; }
/// <summary>
/// Gets the logging enable flag
/// </summary>
protected LoggingEnabled LoggingEnabledSetting { get; private set; }
/// <summary>
/// Gets or sets the logged exceptions
/// </summary>
private ConcurrentDictionary<string, List<string>> LoggedExceptions { get; set; }
/// <summary>
/// Setup before a test
/// </summary>
[TestInitialize]
[SetUp]
public void Setup()
{
// Create the test object
this.CreateNewTestObject();
}
/// <summary>
/// Tear down after a test
/// </summary>
[TestCleanup]
[TearDown]
public void Teardown()
{
TestResultType resultType = this.GetResultType();
bool forceTestFailure = false;
// Switch the test to a failure if we have a soft assert failure
if (!this.SoftAssert.DidUserCheck() && this.SoftAssert.DidSoftAssertsFail())
{
resultType = TestResultType.FAIL;
forceTestFailure = true;
this.SoftAssert.LogFinalAssertData();
}
// Log the test result
if (resultType == TestResultType.PASS)
{
this.TryToLog(MessageType.SUCCESS, "Test passed");
}
else if (resultType == TestResultType.FAIL)
{
this.TryToLog(MessageType.ERROR, "Test failed");
}
else if (resultType == TestResultType.INCONCLUSIVE)
{
this.TryToLog(MessageType.ERROR, "Test was inconclusive");
}
else
{
this.TryToLog(MessageType.WARNING, "Test had an unexpected result of {0}", this.GetResultText());
}
this.BeforeLoggingTeardown(resultType);
// Cleanup log files we don't want
try
{
if (this.Log is FileLogger && resultType == TestResultType.PASS
&& this.LoggingEnabledSetting == LoggingEnabled.ONFAIL)
{
File.Delete(((FileLogger)this.Log).FilePath);
}
}
catch (Exception e)
{
this.TryToLog(MessageType.WARNING, "Failed to cleanup log files because: {0}", e.Message);
}
// Get the Fully Qualified Test Name
string fullyQualifiedTestName = this.GetFullyQualifiedTestClassName();
PerfTimerCollection collection = this.TestObject.PerfTimerCollection;
// Write out the performance timers
collection.Write(this.Log);
if (collection.FileName != null)
{
this.TestObject.AddAssociatedFile(LoggingConfig.GetLogDirectory() + "\\" + collection.FileName);
}
// Attach associated files if we can
this.AttachAssociatedFiles();
// Release the logged messages
this.LoggedExceptions.TryRemove(fullyQualifiedTestName, out List<string> loggedMessages);
loggedMessages = null;
// Release the base test object
this.BaseTestObjects.TryRemove(fullyQualifiedTestName, out BaseTestObject baseTestObject);
// Create console logger to log subsequent messages
this.TestObject = new BaseTestObject(new ConsoleLogger(), this.GetFullyQualifiedTestClassName());
baseTestObject.Dispose();
baseTestObject = null;
// Force the test to fail
if (forceTestFailure)
{
throw new AssertFailedException("Test was forced to fail in the cleanup - Likely the result of a soft assert failure.");
}
}
/// <summary>
/// Create a logger
/// </summary>
/// <returns>A logger</returns>
protected Logger CreateLogger()
{
this.LoggedExceptionList = new List<string>();
this.LoggingEnabledSetting = LoggingConfig.GetLoggingEnabledSetting();
// Setup the exception listener
AppDomain currentDomain = AppDomain.CurrentDomain;
if (LoggingConfig.GetFirstChanceHandler())
{
currentDomain.FirstChanceException += this.FirstChanceHandler;
}
if (this.LoggingEnabledSetting != LoggingEnabled.NO)
{
return LoggingConfig.GetLogger(
StringProcessor.SafeFormatter(
"{0} - {1}",
this.GetFullyQualifiedTestClassName(),
DateTime.UtcNow.ToString("yyyy-MM-dd-hh-mm-ss-ffff", CultureInfo.InvariantCulture)));
}
else
{
return new ConsoleLogger();
}
}
/// <summary>
/// Get the fully qualified test name
/// </summary>
/// <returns>The test name including class</returns>
protected string GetFullyQualifiedTestClassName()
{
if (this.testContextInstance != null)
{
return this.GetFullyQualifiedTestClassNameVS();
}
return this.GetFullyQualifiedTestClassNameNunit();
}
/// <summary>
/// Get the type of test result
/// </summary>
/// <returns>The test result type</returns>
protected TestResultType GetResultType()
{
if (this.testContextInstance != null)
{
return this.GetResultTypeVS();
}
return this.GetResultTypeNunit();
}
/// <summary>
/// Get the test result type as text
/// </summary>
/// <returns>The result type as text</returns>
protected string GetResultText()
{
if (this.testContextInstance != null)
{
return this.GetResultTextVS();
}
return this.GetResultTextNunit();
}
/// <summary>
/// Try to log a message - Do not fail if the message is not logged
/// </summary>
/// <param name="messageType">The type of message</param>
/// <param name="message">The message text</param>
/// <param name="args">String format arguments</param>
protected void TryToLog(MessageType messageType, string message, params object[] args)
{
// Get the formatted message
string formattedMessage = StringProcessor.SafeFormatter(message, args);
try
{
// Write to the log
this.Log.LogMessage(messageType, formattedMessage);
// If this was an error and written to a file, add it to the console output as well
if (messageType == MessageType.ERROR && !(this.Log is ConsoleLogger))
{
Console.WriteLine(formattedMessage);
}
}
catch (Exception e)
{
Console.WriteLine(formattedMessage);
Console.WriteLine("Logging failed because: " + e);
}
}
/// <summary>
/// Log a verbose message and include the automation specific call stack data
/// </summary>
/// <param name="message">The message text</param>
/// <param name="args">String format arguments</param>
protected void LogVerbose(string message, params object[] args)
{
StringBuilder messages = new StringBuilder();
messages.AppendLine(StringProcessor.SafeFormatter(message, args));
var methodInfo = MethodBase.GetCurrentMethod();
var fullName = methodInfo.DeclaringType.FullName + "." + methodInfo.Name;
foreach (string stackLevel in Environment.StackTrace.Split(new string[] { Environment.NewLine }, StringSplitOptions.None))
{
string trimmed = stackLevel.Trim();
if (!trimmed.StartsWith("at Microsoft.") && !trimmed.StartsWith("at System.") && !trimmed.StartsWith("at NUnit.") && !trimmed.StartsWith("at " + fullName))
{
messages.AppendLine(stackLevel);
}
}
this.Log.LogMessage(MessageType.VERBOSE, messages.ToString());
}
/// <summary>
/// Create a Selenium test object
/// </summary>
protected virtual void CreateNewTestObject()
{
Logger newLogger = this.CreateLogger();
this.TestObject = new BaseTestObject(newLogger, new SoftAssert(newLogger), this.GetFullyQualifiedTestClassName());
}
/// <summary>
/// Steps to do before logging teardown results - If not override nothing is done before logging the results
/// </summary>
/// <param name="resultType">The test result</param>
protected virtual void BeforeLoggingTeardown(TestResultType resultType)
{
}
/// <summary>
/// Get the fully qualified test name
/// </summary>
/// <returns>The test name including class</returns>
private string GetFullyQualifiedTestClassNameVS()
{
return StringProcessor.SafeFormatter("{0}.{1}", this.TestContext.FullyQualifiedTestClassName, this.TestContext.TestName);
}
/// <summary>
/// Listen for any thrown exceptions
/// </summary>
/// <param name="source">Source object</param>
/// <param name="e">The first chance exception</param>
private void FirstChanceHandler(object source, FirstChanceExceptionEventArgs e)
{
try
{
// Only do this is we are logging
if (LoggingConfig.GetLoggingEnabledSetting() == LoggingEnabled.NO)
{
return;
}
Exception ex = e.Exception;
// Check for an inner exception or if it is from the NUnit core
if (ex.InnerException == null || ex.Source.Equals("nunit.core"))
{
// This is not the test run exception we are looking for
return;
}
// Get the inner exception and specific test name
Exception inner = ex.InnerException;
string innerStack = inner.StackTrace ?? string.Empty;
string message = inner.Message + Environment.NewLine + innerStack;
List<string> messages = this.LoggedExceptionList;
// Make sure this error is associated with the current test and that we have not logged it yet
if (innerStack.ToLower().Contains("magenic.maqs") ||
(innerStack.Contains("at " + this.GetFullyQualifiedTestClassName() + "(") && !messages.Contains(message)))
{
this.TryToLog(MessageType.ERROR, message);
messages.Add(message);
}
}
catch (Exception ex)
{
this.TryToLog(MessageType.WARNING, "Failed to log exception because: " + ex.Message);
}
}
/// <summary>
/// Get the type of test result
/// </summary>
/// <returns>The test result type</returns>
private TestResultType GetResultTypeVS()
{
switch (this.TestContext.CurrentTestOutcome)
{
case UnitTestOutcome.Passed:
return TestResultType.PASS;
case UnitTestOutcome.Failed:
return TestResultType.FAIL;
case UnitTestOutcome.Inconclusive:
return TestResultType.INCONCLUSIVE;
default:
return TestResultType.OTHER;
}
}
/// <summary>
/// Get the test result type as text
/// </summary>
/// <returns>The result type as text</returns>
private string GetResultTextVS()
{
return this.TestContext.CurrentTestOutcome.ToString();
}
/// <summary>
/// Get the fully qualified test name
/// </summary>
/// <returns>The test name including class</returns>
private string GetFullyQualifiedTestClassNameNunit()
{
return NUnitTestContext.CurrentContext.Test.FullName;
}
/// <summary>
/// Get the type of test result
/// </summary>
/// <returns>The test result type</returns>
private TestResultType GetResultTypeNunit()
{
switch (NUnitTestContext.CurrentContext.Result.Outcome.Status)
{
case TestStatus.Passed:
return TestResultType.PASS;
case TestStatus.Failed:
return TestResultType.FAIL;
case TestStatus.Inconclusive:
return TestResultType.INCONCLUSIVE;
case TestStatus.Skipped:
return TestResultType.SKIP;
default:
return TestResultType.OTHER;
}
}
/// <summary>
/// Get the test result type as text
/// </summary>
/// <returns>The result type as text</returns>
private string GetResultTextNunit()
{
return NUnitTestContext.CurrentContext.Result.Outcome.Status.ToString();
}
/// <summary>
/// For VS unit tests attach the all of the files in the associated files set if they exist, else write to log
/// </summary>
private void AttachAssociatedFiles()
{
string logPath = string.Empty;
if (this.Log is FileLogger && File.Exists(((FileLogger)this.Log).FilePath))
{
logPath = ((FileLogger)this.Log).FilePath;
}
#if NET471
try
{
// This only works for VS unit test so check that first
if (this.testContextInstance != null)
{
// Only attach log if it is a file logger and we can find it
if (!string.IsNullOrEmpty(logPath))
{
this.TestObject.AddAssociatedFile(logPath);
}
// Attach all existing associated files
foreach (string path in this.TestObject.GetArrayOfAssociatedFiles())
{
if (File.Exists(path))
{
this.TestContext.AddResultFile(path);
}
}
return;
}
}
catch (Exception e)
{
this.TryToLog(MessageType.WARNING, "Failed to attach test result file because: " + e.Message);
}
#endif
// if attachment failed or project is core, write the list of files to the log
if (!string.IsNullOrEmpty(logPath))
{
this.TestObject.RemoveAssociatedFile(logPath);
}
string[] assocFiles = this.TestObject.GetArrayOfAssociatedFiles();
if (assocFiles.Length > 0)
{
string listOfFilesMessage = "List of Associated Files: " + Environment.NewLine;
foreach (string assocPath in assocFiles)
{
if (File.Exists(assocPath))
{
listOfFilesMessage += assocPath + Environment.NewLine;
}
}
this.TryToLog(MessageType.GENERIC, listOfFilesMessage);
}
}
}
}