-
Notifications
You must be signed in to change notification settings - Fork 287
/
ExceptionConverterTest.cs
244 lines (194 loc) · 8.52 KB
/
ExceptionConverterTest.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
namespace Microsoft.ApplicationInsights.Extensibility.Implementation
{
using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using Microsoft.ApplicationInsights.Extensibility.Implementation.External;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.ApplicationInsights.TestFramework;
using Moq;
/// <summary>
/// Tests of exception stack serialization.
/// </summary>
[TestClass]
public class ExceptionConverterTest
{
[TestMethod]
public void CallingConvertToExceptionDetailsWithNullExceptionThrowsArgumentNullException()
{
AssertEx.Throws<ArgumentNullException>(() => ExceptionConverter.ConvertToExceptionDetails(null, null));
}
[TestMethod]
public void EmptyStringIsReturnedForExceptionWithoutStack()
{
var exp = new ArgumentException();
ExceptionDetails expDetails = ExceptionConverter.ConvertToExceptionDetails(exp, null);
Assert.AreEqual(string.Empty, expDetails.stack);
Assert.AreEqual(0, expDetails.parsedStack.Count);
// hasFullStack defaults to true.
Assert.IsTrue(expDetails.hasFullStack);
}
[TestMethod]
public void AllStackFramesAreConvertedIfSizeOfParsedStackIsLessOrEqualToMaximum()
{
var exp = this.CreateException(42);
ExceptionDetails expDetails = ExceptionConverter.ConvertToExceptionDetails(exp, null);
Assert.AreEqual(43, expDetails.parsedStack.Count);
Assert.IsTrue(expDetails.hasFullStack);
}
[TestMethod]
public void TestFirstAndLastStackPointsAreCollectedForLongStack()
{
var exp = this.CreateException(300);
ExceptionDetails expDetails = ExceptionConverter.ConvertToExceptionDetails(exp, null);
Assert.IsFalse(expDetails.hasFullStack);
Assert.IsTrue(expDetails.parsedStack.Count < 300);
// We should keep top of stack, and end of stack hence CreateException function should be present
Assert.AreEqual("Microsoft.ApplicationInsights.Extensibility.Implementation.ExceptionConverterTest.FailedFunction", expDetails.parsedStack[0].method);
Assert.AreEqual("Microsoft.ApplicationInsights.Extensibility.Implementation.ExceptionConverterTest.CreateException", expDetails.parsedStack[expDetails.parsedStack.Count - 1].method);
}
[TestMethod]
public void TestNullMethodInfoInStack()
{
var frameMock = new Mock<System.Diagnostics.StackFrame>(null, 0, 0);
frameMock.Setup(x => x.GetMethod()).Returns((MethodBase)null);
External.StackFrame stackFrame = null;
try
{
stackFrame = ExceptionConverter.GetStackFrame(frameMock.Object, 0);
}
catch (Exception e)
{
Assert.Fail("GetStackFrame threw " + e);
}
Assert.AreEqual("unknown", stackFrame.assembly);
Assert.AreEqual(null, stackFrame.fileName);
Assert.AreEqual("unknown", stackFrame.method);
Assert.AreEqual(0, stackFrame.line);
}
[TestMethod]
public void CheckThatFileNameAndLineAreCorrectIfAvailable()
{
var exp = this.CreateException(1);
StackTrace st = new StackTrace(exp, true);
var frame = st.GetFrame(0);
var line = frame.GetFileLineNumber();
var fileName = frame.GetFileName();
ExceptionDetails expDetails = ExceptionConverter.ConvertToExceptionDetails(exp, null);
var stack = expDetails.parsedStack;
if (line != 0)
{
Assert.AreEqual(line, stack[0].line);
Assert.AreEqual(fileName, stack[0].fileName);
}
else
{
Assert.AreEqual(0, stack[0].line);
Assert.IsNull(stack[0].fileName);
}
}
[TestMethod]
public void CheckLevelCorrespondsToFrameForLongStack()
{
const int NumberOfStackFrames = 100;
var exp = this.CreateException(NumberOfStackFrames - 1);
ExceptionDetails expDetails = ExceptionConverter.ConvertToExceptionDetails(exp, null);
var stack = expDetails.parsedStack;
// Checking levels for first few and last few.
for (int i = 0; i < 10; ++i)
{
Assert.AreEqual(i, stack[i].level);
}
for (int j = NumberOfStackFrames - 1, i = 0; j > NumberOfStackFrames - 10; --j, i++)
{
Assert.AreEqual(j, stack[stack.Count - 1 - i].level);
}
}
[TestMethod]
public void SizeOfParsedStackFrameIsLessThanMaxValue()
{
var exp = this.CreateException(300);
ExceptionDetails expDetails = ExceptionConverter.ConvertToExceptionDetails(exp, null);
int parsedStackLength = 0;
var stack = expDetails.parsedStack;
for (int i = 0; i < stack.Count; i++)
{
parsedStackLength += (stack[i].method == null ? 0 : stack[i].method.Length)
+ (stack[i].assembly == null ? 0 : stack[i].assembly.Length)
+ (stack[i].fileName == null ? 0 : stack[i].fileName.Length);
}
Assert.IsTrue(parsedStackLength <= ExceptionConverter.MaxParsedStackLength);
}
[TestMethod]
public void SanitizesLineNumberOnParsedStackFrame()
{
var stackFrame = ExceptionConverter.GetStackFrame(new System.Diagnostics.StackFrame("test", 1000001), 0);
Assert.AreEqual(0, stackFrame.line);
stackFrame = ExceptionConverter.GetStackFrame(new System.Diagnostics.StackFrame("test", -1000001), 0);
Assert.AreEqual(0, stackFrame.line);
stackFrame = ExceptionConverter.GetStackFrame(new System.Diagnostics.StackFrame("test", 10), 0);
Assert.AreEqual(10, stackFrame.line);
}
[TestMethod]
public void TrimsExceptionMessagesGreaterThanMaxLength()
{
var exp = new Exception(new string('x', ExceptionConverter.MaxExceptionMessageLength + 5));
ExceptionDetails expDetails = ExceptionConverter.ConvertToExceptionDetails(exp, null);
Assert.AreEqual(ExceptionConverter.MaxExceptionMessageLength, expDetails.message.Length);
}
[TestMethod]
public void DoesNotTrimShortExceptionMessages()
{
var exp = new Exception(new string('x', 5));
ExceptionDetails expDetails = ExceptionConverter.ConvertToExceptionDetails(exp, null);
Assert.AreEqual(5, expDetails.message.Length);
}
[TestMethod]
[DataRow(null)]
[DataRow("")]
[DataRow(" ")]
public void ProvidesDefaultMessage(string message)
{
var exp = new ExceptionWithMessageOverride(message);
ExceptionDetails expDetails = ExceptionConverter.ConvertToExceptionDetails(exp, null);
Assert.AreEqual("n/a", expDetails.message);
}
[MethodImplAttribute(MethodImplOptions.NoInlining)]
private Exception CreateException(int numberOfStackpoints)
{
Exception exception = null;
try
{
this.FailedFunction(numberOfStackpoints);
}
catch (Exception exp)
{
exception = exp;
}
return exception;
}
[MethodImplAttribute(MethodImplOptions.NoInlining)]
private void FailedFunction(int numberOfStackpoints)
{
if (numberOfStackpoints > 1)
{
this.FailedFunction(--numberOfStackpoints);
}
throw new AggregateException("exception message");
}
/// <summary>
/// Overrides the Message property of the base exception, so that null messages are
/// returned as null, rather than a default, e.g. "Exception of type 'System.Exception' was thrown".
/// </summary>
private class ExceptionWithMessageOverride : Exception
{
public ExceptionWithMessageOverride(string message)
: base(message)
{
Message = message;
}
public override string Message { get; }
}
}
}