-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathRollbarAssistantFixture.cs
163 lines (125 loc) · 4.38 KB
/
RollbarAssistantFixture.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
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
namespace UnitTest.Rollbar
{
using global::Rollbar;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Diagnostics;
using System.Linq;
using System.Threading;
[TestClass]
[TestCategory(nameof(RollbarAssistantFixture))]
public class RollbarAssistantFixture
{
[TestInitialize]
public void SetupFixture()
{
SynchronizationContext.SetSynchronizationContext(new SynchronizationContext());
}
[TestCleanup]
public void TearDownFixture()
{
}
[TestMethod]
public void TestCaptureStateOfEnum_KindOf()
{
var objUnderTest = EnumType.Two;
var stateVars = RollbarAssistant.CaptureState(objUnderTest, nameof(objUnderTest));
Assert.IsNull(stateVars);
stateVars = RollbarAssistant.CaptureState(typeof(EnumType));
Assert.IsNull(stateVars);
}
[TestMethod]
public void TestCaptureStateOfInterface_KindOf()
{
var stateVars = RollbarAssistant.CaptureState(typeof(IInterface));
Assert.IsNull(stateVars);
}
[TestMethod]
public void TestCaptureStateOfObjectInstance()
{
var objUnderTest = new InstanceType();
var stateVars = RollbarAssistant.CaptureState(objUnderTest, nameof(objUnderTest));
Assert.AreEqual(2 + 4, stateVars.Count);
foreach(var key in stateVars.Keys)
{
Console.WriteLine($"{key} = {stateVars[key]}");
}
}
[TestMethod]
public void TestCaptureStateOfStaticType()
{
var stateVars = RollbarAssistant.CaptureState(typeof(StaticType));
Assert.AreEqual(4, stateVars.Count);
foreach (var key in stateVars.Keys)
{
Console.WriteLine($"{key} = {stateVars[key]}");
}
}
[TestMethod]
public void TestCombinedStateCapture()
{
var objUnderTest = new InstanceType();
var combinedState = RollbarAssistant.CaptureState(objUnderTest, nameof(objUnderTest));
RollbarAssistant.CaptureState(typeof(StaticType), combinedState);
Assert.AreEqual(
RollbarAssistant.CaptureState(objUnderTest, nameof(objUnderTest)).Count + RollbarAssistant.CaptureState(typeof(StaticType)).Count
, combinedState.Count
);
}
#region data mocks
enum EnumType
{
One,
Two,
}
interface IInterface
{
int IntProperty { get; set; }
string ROStringProperty { get; }
}
static class StaticType
{
// 1
private const int BaseConstant = 10;
// 2
#pragma warning disable CS0414 // The field is assigned but its value is never used
private static int _baseIntField = 3;
#pragma warning restore CS0414 // The field is assigned but its value is never used
// 3
public static object BaseNullProperty
{
get { return StaticType._baseNullField; }
}
private static object _baseNullField = null;
// 4
public static string BaseAutoProperty { get; set; } = "BaseAutoProperty value";
}
class InstanceType
: InstanceTypeBase
{
// 1
public int AutoProperty { get; } = 99;
// 2
public static string TypeName { get; } = nameof(InstanceType);
}
abstract class InstanceTypeBase
{
// 1
private const int BaseConstant = 10;
// 2
#pragma warning disable CS0414 // The field is assigned but its value is never used
private int _baseIntField = 3;
#pragma warning restore CS0414 // The field is assigned but its value is never used
// 3
public object BaseNullProperty
{
get { return this._baseNullField; }
}
private object _baseNullField = null;
// 4
public string BaseAutoProperty { get; set; } = "BaseAutoProperty value";
}
#endregion data mocks
}
}