3
3
4
4
using System . Collections . Generic ;
5
5
using System . Diagnostics ;
6
+ using System . Xml . Linq ;
6
7
7
8
using Microsoft . VisualStudio . TestPlatform . Utilities . Helpers . Interfaces ;
8
9
using Microsoft . VisualStudio . TestTools . UnitTesting ;
@@ -16,38 +17,35 @@ public class EventLogXmlWriterTests
16
17
{
17
18
private const string FileName = "Event Log.xml" ;
18
19
19
- private readonly EventLog _eventLog ;
20
- private readonly EventLogEntry _eventLogEntry ;
21
- private readonly List < EventLogEntry > _eventLogEntries ;
22
- private readonly Mock < IFileHelper > _mockFileHelper ;
23
-
24
- public EventLogXmlWriterTests ( )
25
- {
26
- _eventLog = new EventLog ( "Application" ) ;
27
- var count = _eventLog . Entries . Count ;
28
- _eventLogEntry = _eventLog . Entries [ count - 1 ] ;
29
- _eventLogEntries = new List < EventLogEntry > ( ) ;
30
- _mockFileHelper = new Mock < IFileHelper > ( ) ;
31
- }
32
-
33
20
[ TestMethod ]
34
21
public void WriteEventLogEntriesToXmlFileShouldWriteToXmlFile ( )
35
22
{
23
+ var mockFileHelper = new Mock < IFileHelper > ( ) ;
24
+ var eventLogEntries = new List < EventLogEntry > ( ) ;
36
25
EventLogXmlWriter . WriteEventLogEntriesToXmlFile (
37
26
FileName ,
38
- _eventLogEntries ,
39
- _mockFileHelper . Object ) ;
27
+ eventLogEntries ,
28
+ mockFileHelper . Object ) ;
40
29
41
- _mockFileHelper . Verify ( x => x . WriteAllTextToFile ( FileName , It . IsAny < string > ( ) ) , Times . Once ) ;
30
+ mockFileHelper . Verify ( x => x . WriteAllTextToFile ( FileName , It . IsAny < string > ( ) ) , Times . Once ) ;
42
31
}
43
32
44
33
[ TestMethod ]
45
34
public void WriteEventLogEntriesToXmlFileShouldWriteLogEntryIfPresent ( )
46
35
{
47
- _eventLogEntries . Add ( _eventLogEntry ) ;
36
+ var eventLog = new EventLog ( "Application" ) ;
37
+ var eventLogEntry = eventLog . Entries [ eventLog . Entries . Count - 1 ] ;
38
+ var eventLogEntries = new List < EventLogEntry > { eventLogEntry } ;
39
+
40
+ var mockFileHelper = new Mock < IFileHelper > ( ) ;
41
+ EventLogXmlWriter . WriteEventLogEntriesToXmlFile ( FileName , eventLogEntries , mockFileHelper . Object ) ;
48
42
49
- EventLogXmlWriter . WriteEventLogEntriesToXmlFile ( FileName , _eventLogEntries , _mockFileHelper . Object ) ;
43
+ // Serialize the message in case it contains any special character such as <, >, &, which the XML writer would escape
44
+ // because otherwise the raw message and the message used to call WriteAllTextToFile won't match. E.g.
45
+ // api-version=2020-07-01&format=json in raw message, becomes
46
+ // api-version=2020-07-01&format=json in the xml file.
47
+ var serializedMessage = new XElement ( "t" , eventLogEntry . Message ) . LastNode . ToString ( ) ;
50
48
51
- _mockFileHelper . Verify ( x => x . WriteAllTextToFile ( FileName , It . Is < string > ( str => str . Contains ( _eventLogEntry . Message ) ) ) ) ;
49
+ mockFileHelper . Verify ( x => x . WriteAllTextToFile ( FileName , It . Is < string > ( str => str . Contains ( serializedMessage ) ) ) ) ;
52
50
}
53
51
}
0 commit comments