-
-
Notifications
You must be signed in to change notification settings - Fork 335
Expand file tree
/
Copy pathXmlLayoutTest.cs
More file actions
424 lines (338 loc) · 12.9 KB
/
XmlLayoutTest.cs
File metadata and controls
424 lines (338 loc) · 12.9 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
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
#region Apache License
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to you under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#endregion
using System;
using System.IO;
using System.Xml;
using log4net.Config;
using log4net.Core;
using log4net.Layout;
using log4net.Repository;
using log4net.Tests.Appender;
using log4net.Util;
using NUnit.Framework;
using System.Globalization;
namespace log4net.Tests.Layout;
[TestFixture]
public sealed class XmlLayoutTest
{
private CultureInfo? _currentCulture;
private CultureInfo? _currentUiCulture;
[SetUp]
public void SetUp()
{
// set correct thread culture
_currentCulture = System.Threading.Thread.CurrentThread.CurrentCulture;
_currentUiCulture = System.Threading.Thread.CurrentThread.CurrentUICulture;
System.Threading.Thread.CurrentThread.CurrentCulture = System.Threading.Thread.CurrentThread.CurrentUICulture = System.Globalization.CultureInfo.InvariantCulture;
}
[TearDown]
public void TearDown()
{
// restore previous culture
System.Threading.Thread.CurrentThread.CurrentCulture = _currentCulture!;
System.Threading.Thread.CurrentThread.CurrentUICulture = _currentUiCulture!;
}
/// <summary>
/// Build a basic <see cref="LoggingEventData"/> object with some default values.
/// </summary>
/// <returns>A useful LoggingEventData object</returns>
private LoggingEventData CreateBaseEvent()
{
return new LoggingEventData
{
Domain = "Tests",
ExceptionString = "",
Identity = "TestRunner",
Level = Level.Info,
LocationInfo = new LocationInfo(GetType()),
LoggerName = "TestLogger",
Message = "Test message",
ThreadName = "TestThread",
TimeStampUtc = DateTime.Today.ToUniversalTime(),
UserName = "TestRunner",
Properties = new PropertiesDictionary()
};
}
private static string CreateEventNode(string message)
{
return string.Format("<{0}event logger=\"TestLogger\" timestamp=\"{2}\" level=\"INFO\" thread=\"TestThread\" domain=\"Tests\" identity=\"TestRunner\" username=\"TestRunner\"{1}><{0}message>{3}</{0}message></{0}event>" +
Environment.NewLine,
#if NETCOREAPP
"log4net:", @" xmlns:log4net=""log4net""",
#else
string.Empty, string.Empty,
#endif
XmlConvert.ToString(DateTime.Today, XmlDateTimeSerializationMode.Local),
message);
}
private static string CreateEventNode(string key, string value)
{
return string.Format("<{0}event logger=\"TestLogger\" timestamp=\"{2}\" level=\"INFO\" thread=\"TestThread\" domain=\"Tests\" identity=\"TestRunner\" username=\"TestRunner\"{1}><{0}message>Test message</{0}message><{0}properties><{0}data name=\"{3}\" value=\"{4}\" /></{0}properties></{0}event>" + Environment.NewLine,
#if NETCOREAPP
"log4net:", @" xmlns:log4net=""log4net""",
#else
string.Empty, string.Empty,
#endif
XmlConvert.ToString(DateTime.Today, XmlDateTimeSerializationMode.Local), key, value);
}
[Test]
public void TestBasicEventLogging()
{
using TextWriter writer = new StringWriter();
XmlLayout layout = new();
LoggingEventData evt = CreateBaseEvent();
layout.Format(writer, new LoggingEvent(evt));
string expected = CreateEventNode("Test message");
Assert.That(writer.ToString(), Is.EqualTo(expected));
}
[Test]
public void TestIllegalCharacterMasking()
{
using StringWriter writer = new();
XmlLayout layout = new();
LoggingEventData evt = CreateBaseEvent();
evt.Message = "This is a masked char->\uFFFF";
layout.Format(writer, new LoggingEvent(evt));
string expected = CreateEventNode("This is a masked char->?");
Assert.That(writer.ToString(), Is.EqualTo(expected));
}
[Test]
public void TestCdataEscaping1()
{
using StringWriter writer = new();
XmlLayout layout = new();
LoggingEventData evt = CreateBaseEvent();
//The &'s trigger the use of a cdata block
evt.Message = "&&&&&&&Escape this ]]>. End here.";
layout.Format(writer, new LoggingEvent(evt));
string expected = CreateEventNode("<![CDATA[&&&&&&&Escape this ]]>]]<![CDATA[>. End here.]]>");
Assert.That(writer.ToString(), Is.EqualTo(expected));
}
[Test]
public void TestCdataEscaping2()
{
using StringWriter writer = new();
XmlLayout layout = new();
LoggingEventData evt = CreateBaseEvent();
//The &'s trigger the use of a cdata block
evt.Message = "&&&&&&&Escape the end ]]>";
layout.Format(writer, new LoggingEvent(evt));
string expected = CreateEventNode("<![CDATA[&&&&&&&Escape the end ]]>]]>");
Assert.That(writer.ToString(), Is.EqualTo(expected));
}
[Test]
public void TestCdataEscaping3()
{
using StringWriter writer = new();
XmlLayout layout = new();
LoggingEventData evt = CreateBaseEvent();
//The &'s trigger the use of a cdata block
evt.Message = "]]>&&&&&&&Escape the begining";
layout.Format(writer, new LoggingEvent(evt));
string expected = CreateEventNode("<![CDATA[]]>]]<![CDATA[>&&&&&&&Escape the begining]]>");
Assert.That(writer.ToString(), Is.EqualTo(expected));
}
[Test]
public void TestBase64EventLogging()
{
using StringWriter writer = new();
XmlLayout layout = new();
LoggingEventData evt = CreateBaseEvent();
layout.Base64EncodeMessage = true;
layout.Format(writer, new LoggingEvent(evt));
string expected = CreateEventNode("VGVzdCBtZXNzYWdl");
Assert.That(writer.ToString(), Is.EqualTo(expected));
}
[Test]
public void TestPropertyEventLogging()
{
LoggingEventData evt = CreateBaseEvent();
evt.Properties!["Property1"] = "prop1";
XmlLayout layout = new();
StringAppender stringAppender = new() { Layout = layout };
ILoggerRepository rep = LogManager.CreateRepository(Guid.NewGuid().ToString());
BasicConfigurator.Configure(rep, stringAppender);
ILog log1 = LogManager.GetLogger(rep.Name, "TestThreadProperiesPattern");
log1.Logger.Log(new LoggingEvent(evt));
string expected = CreateEventNode("Property1", "prop1");
Assert.That(stringAppender.GetString(), Is.EqualTo(expected));
}
[Test]
public void TestBase64PropertyEventLogging()
{
LoggingEventData evt = CreateBaseEvent();
evt.Properties!["Property1"] = "prop1";
XmlLayout layout = new() { Base64EncodeProperties = true };
StringAppender stringAppender = new() { Layout = layout };
ILoggerRepository rep = LogManager.CreateRepository(Guid.NewGuid().ToString());
BasicConfigurator.Configure(rep, stringAppender);
ILog log1 = LogManager.GetLogger(rep.Name, "TestThreadProperiesPattern");
log1.Logger.Log(new LoggingEvent(evt));
string expected = CreateEventNode("Property1", "cHJvcDE=");
Assert.That(stringAppender.GetString(), Is.EqualTo(expected));
}
[Test]
public void TestPropertyCharacterEscaping()
{
LoggingEventData evt = CreateBaseEvent();
evt.Properties!["Property1"] = "prop1 \"quoted\"";
XmlLayout layout = new();
StringAppender stringAppender = new() { Layout = layout };
ILoggerRepository rep = LogManager.CreateRepository(Guid.NewGuid().ToString());
BasicConfigurator.Configure(rep, stringAppender);
ILog log1 = LogManager.GetLogger(rep.Name, "TestThreadProperiesPattern");
log1.Logger.Log(new LoggingEvent(evt));
string expected = CreateEventNode("Property1", "prop1 "quoted"");
Assert.That(stringAppender.GetString(), Is.EqualTo(expected));
}
[Test]
public void TestPropertyIllegalCharacterMasking()
{
LoggingEventData evt = CreateBaseEvent();
evt.Properties!["Property1"] = "mask this ->\uFFFF";
XmlLayout layout = new();
StringAppender stringAppender = new() { Layout = layout };
ILoggerRepository rep = LogManager.CreateRepository(Guid.NewGuid().ToString());
BasicConfigurator.Configure(rep, stringAppender);
ILog log1 = LogManager.GetLogger(rep.Name, "TestThreadProperiesPattern");
log1.Logger.Log(new LoggingEvent(evt));
string expected = CreateEventNode("Property1", "mask this ->?");
Assert.That(stringAppender.GetString(), Is.EqualTo(expected));
}
[Test]
public void TestPropertyIllegalCharacterMaskingInName()
{
LoggingEventData evt = CreateBaseEvent();
evt.Properties!["Property\uFFFF"] = "mask this ->\uFFFF";
XmlLayout layout = new();
StringAppender stringAppender = new() { Layout = layout };
ILoggerRepository rep = LogManager.CreateRepository(Guid.NewGuid().ToString());
BasicConfigurator.Configure(rep, stringAppender);
ILog log1 = LogManager.GetLogger(rep.Name, "TestThreadProperiesPattern");
log1.Logger.Log(new LoggingEvent(evt));
string expected = CreateEventNode("Property?", "mask this ->?");
Assert.That(stringAppender.GetString(), Is.EqualTo(expected));
}
[Test]
public void BracketsInStackTracesKeepLogWellFormed()
{
XmlLayout layout = new();
StringAppender stringAppender = new() { Layout = layout };
ILoggerRepository rep = LogManager.CreateRepository(Guid.NewGuid().ToString());
BasicConfigurator.Configure(rep, stringAppender);
ILog log1 = LogManager.GetLogger(rep.Name, "TestLogger");
void Bar(int foo)
{
try
{
throw null!;
}
catch (Exception ex) when (ex is not null)
{
log1.Error($"Error {foo}", ex);
}
}
Bar(42);
// really only asserts there is no exception
XmlDocument loggedDoc = new();
loggedDoc.LoadXml(stringAppender.GetString());
}
[Test]
public void BracketsInStackTracesAreEscapedProperly()
{
XmlLayout layout = new();
StringAppender stringAppender = new() { Layout = layout };
ILoggerRepository rep = LogManager.CreateRepository(Guid.NewGuid().ToString());
BasicConfigurator.Configure(rep, stringAppender);
ILog log1 = LogManager.GetLogger(rep.Name, "TestLogger");
void Bar(int foo)
{
try
{
throw null!;
}
catch (Exception ex) when (ex is not null)
{
log1.Error($"Error {foo}", ex);
}
}
Bar(42);
#if NETCOREAPP
const string nodeName = "log4net:exception";
#else
const string nodeName = "exception";
#endif
string log = stringAppender.GetString();
int startOfExceptionText = log.IndexOf("<" + nodeName + ">", StringComparison.InvariantCulture) + nodeName.Length + 2;
int endOfExceptionText = log.IndexOf("</" + nodeName + ">", StringComparison.InvariantCulture);
string sub = log.Substring(startOfExceptionText, endOfExceptionText - startOfExceptionText);
if (sub.StartsWith("<![CDATA["))
{
Assert.That(sub, Does.EndWith("]]>"));
}
else
{
Assert.That(sub, Does.Not.Contain("<"));
Assert.That(sub, Does.Not.Contain(">"));
}
}
/// <summary>
/// Tests the serialization of invalid characters in the Properties dictionary
/// </summary>
[Test]
public void InvalidCharacterTest()
{
StringAppender stringAppender = new() { Layout = new XmlLayout() };
ILoggerRepository repository = LogManager.CreateRepository(Guid.NewGuid().ToString());
BasicConfigurator.Configure(repository, stringAppender);
ILog log = LogManager.GetLogger(repository.Name, "TestLogger");
Log();
string logEventXml = stringAppender.GetString();
Assert.That(logEventXml, Does.Contain("us?er"));
Assert.That(logEventXml, Does.Contain("A?B"));
Assert.That(logEventXml, Does.Contain("Log?ger"));
Assert.That(logEventXml, Does.Contain("Thread?Name"));
Assert.That(logEventXml, Does.Contain("Do?main"));
Assert.That(logEventXml, Does.Contain("Ident?ity"));
Assert.That(logEventXml, Does.Contain("User?Name"));
Assert.That(logEventXml, Does.Contain("Mess?age"));
Assert.That(logEventXml, Does.Contain("oh?my"));
void Log()
{
// Build a LoggingEvent with an XML invalid character in a property value
LoggingEventData data = new()
{
LoggerName = "Log\u0001ger",
Level = Level.Info,
TimeStampUtc = DateTime.UtcNow,
ThreadName = "Thread\u0001Name",
Domain = "Do\u0001main",
Identity = "Ident\u0001ity",
UserName = "User\u0001Name",
Message = "Mess\u0001age",
ExceptionString = "oh\u0001my",
Properties = new()
};
// Value contains U+0001 which is illegal in XML 1.0
data.Properties["us\u0001er"] = "A\u0001B";
// Log the event
log.Logger.Log(new(null, repository, data));
}
}
}