-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathRollbarPackageFixture.cs
160 lines (129 loc) · 7.36 KB
/
RollbarPackageFixture.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
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
namespace UnitTest.Rollbar
{
using global::Rollbar;
using global::Rollbar.DTOs;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
[TestClass]
[TestCategory(nameof(RollbarPackageFixture))]
public class RollbarPackageFixture
{
[TestInitialize]
public void SetupFixture()
{
}
[TestCleanup]
public void TearDownFixture()
{
}
[TestMethod]
public void ExceptionPackageTest()
{
const string rollbarDataTitle = "You have some coding to do...";
const string exceptionMessage = "Forgotten method";
System.Exception exception = new NotImplementedException(exceptionMessage);
IRollbarPackage packagingStrategy =
new ExceptionPackage(exception, rollbarDataTitle);
Assert.IsFalse(packagingStrategy.MustApplySynchronously, "Expected to be an async strategy!");
Data rollbarData = packagingStrategy.PackageAsRollbarData();
Assert.AreEqual(rollbarDataTitle, rollbarData.Title, "Data title is properly set!");
Assert.IsNotNull(rollbarData.Body);
Assert.IsNotNull(rollbarData.Body.Trace);
Assert.IsNull(rollbarData.Body.Message);
Assert.IsNull(rollbarData.Body.TraceChain);
Assert.IsNull(rollbarData.Body.CrashReport);
Assert.IsNotNull(rollbarData.Body.Trace.Exception);
Assert.AreEqual(exceptionMessage, rollbarData.Body.Trace.Exception.Message);
Assert.AreEqual(exception.GetType().FullName, rollbarData.Body.Trace.Exception.Class);
}
[TestMethod]
public void OuterExceptionPackageTest()
{
const string rollbarDataTitle = "You have some coding to do...";
const string innerExceptionMessage = "Forgotten method";
System.Exception innerException = new NotImplementedException(innerExceptionMessage);
const string exceptionMessage = "Application level exception";
System.Exception exception = new ApplicationException(exceptionMessage, innerException);
IRollbarPackage packagingStrategy =
new ExceptionPackage(exception, rollbarDataTitle);
Assert.IsFalse(packagingStrategy.MustApplySynchronously, "Expected to be an async strategy!");
Data rollbarData = packagingStrategy.PackageAsRollbarData();
Assert.AreEqual(rollbarDataTitle, rollbarData.Title, "Data title is properly set!");
Assert.IsNotNull(rollbarData.Body);
Assert.IsNotNull(rollbarData.Body.TraceChain);
Assert.IsNull(rollbarData.Body.Trace);
Assert.IsNull(rollbarData.Body.Message);
Assert.IsNull(rollbarData.Body.CrashReport);
Assert.AreEqual(2, rollbarData.Body.TraceChain.Length);
Assert.IsNotNull(rollbarData.Body.TraceChain[0]);
Assert.IsNotNull(rollbarData.Body.TraceChain[0].Exception);
Assert.AreEqual(exceptionMessage, rollbarData.Body.TraceChain[0].Exception.Message);
Assert.AreEqual(exception.GetType().FullName, rollbarData.Body.TraceChain[0].Exception.Class);
Assert.IsNotNull(rollbarData.Body.TraceChain[1]);
Assert.IsNotNull(rollbarData.Body.TraceChain[1].Exception);
Assert.AreEqual(innerExceptionMessage, rollbarData.Body.TraceChain[1].Exception.Message);
Assert.AreEqual(innerException.GetType().FullName, rollbarData.Body.TraceChain[1].Exception.Class);
}
[TestMethod]
public void AggregateExceptionPackageTest()
{
const string rollbarDataTitle = "You have some coding to do...";
const string innerExceptionMessage1 = "Forgotten method";
System.Exception innerException1 = new NotImplementedException(innerExceptionMessage1);
const string innerExceptionMessage2 = "Forgotten null-check";
System.Exception innerException2 = new NullReferenceException(innerExceptionMessage2);
const string exceptionMessage = "Application level exception";
System.Exception exception = new AggregateException(exceptionMessage, innerException1, innerException2);
IRollbarPackage packagingStrategy =
new ExceptionPackage(exception, rollbarDataTitle);
Assert.IsFalse(packagingStrategy.MustApplySynchronously, "Expected to be an async strategy!");
Data rollbarData = packagingStrategy.PackageAsRollbarData();
Assert.AreEqual(rollbarDataTitle, rollbarData.Title, "Data title is properly set!");
Assert.IsNotNull(rollbarData.Body);
Assert.IsNotNull(rollbarData.Body.TraceChain);
Assert.IsNull(rollbarData.Body.Trace);
Assert.IsNull(rollbarData.Body.Message);
Assert.IsNull(rollbarData.Body.CrashReport);
Assert.AreEqual(2, rollbarData.Body.TraceChain.Length);
Assert.IsNotNull(rollbarData.Body.TraceChain[0]);
Assert.IsNotNull(rollbarData.Body.TraceChain[0].Exception);
Assert.AreEqual(innerExceptionMessage1, rollbarData.Body.TraceChain[0].Exception.Message);
Assert.AreEqual(innerException1.GetType().FullName, rollbarData.Body.TraceChain[0].Exception.Class);
Assert.IsNotNull(rollbarData.Body.TraceChain[1]);
Assert.IsNotNull(rollbarData.Body.TraceChain[1].Exception);
Assert.AreEqual(innerExceptionMessage2, rollbarData.Body.TraceChain[1].Exception.Message);
Assert.AreEqual(innerException2.GetType().FullName, rollbarData.Body.TraceChain[1].Exception.Class);
}
[TestMethod]
public void MessagePackageTest()
{
const string rollbarDataTitle = "Got a message...";
const string message = "My message to report to Rollbar";
IDictionary<string, object> extraInfo = new Dictionary<string, object>()
{
{ "extra1", "Info 1"},
{ "extra2", "Info 2"},
};
IRollbarPackage packagingStrategy =
new MessagePackage(message, rollbarDataTitle, extraInfo);
Assert.IsFalse(packagingStrategy.MustApplySynchronously, "Expected to be an async strategy!");
Data rollbarData = packagingStrategy.PackageAsRollbarData();
Assert.AreEqual(rollbarDataTitle, rollbarData.Title, "Data title is properly set!");
Assert.IsNotNull(rollbarData.Body);
Assert.IsNotNull(rollbarData.Body.Message);
Assert.IsNull(rollbarData.Body.Trace);
Assert.IsNull(rollbarData.Body.TraceChain);
Assert.IsNull(rollbarData.Body.CrashReport);
Assert.AreEqual(3, rollbarData.Body.Message.Count);
Assert.AreEqual(message, rollbarData.Body.Message.Body);
Assert.IsTrue(rollbarData.Body.Message.ContainsKey("body"));
Assert.IsTrue(rollbarData.Body.Message.ContainsKey("extra1"));
Assert.IsTrue(rollbarData.Body.Message.ContainsKey("extra2"));
Assert.AreEqual(message, rollbarData.Body.Message["body"]);
Assert.AreEqual("Info 1", rollbarData.Body.Message["extra1"]);
Assert.AreEqual("Info 2", rollbarData.Body.Message["extra2"]);
}
}
}