forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHandleErrorAttributeTest.cs
More file actions
253 lines (210 loc) · 8.84 KB
/
Copy pathHandleErrorAttributeTest.cs
File metadata and controls
253 lines (210 loc) · 8.84 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
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Web.Routing;
using System.Web.TestUtil;
using Microsoft.TestCommon;
using Moq;
namespace System.Web.Mvc.Test
{
public class HandleErrorAttributeTest
{
[Fact]
public void HandleErrorAttributeReturnsUniqueTypeIDs()
{
// Arrange
HandleErrorAttribute attr1 = new HandleErrorAttribute();
HandleErrorAttribute attr2 = new HandleErrorAttribute();
// Assert
Assert.NotEqual(attr1.TypeId, attr2.TypeId);
}
[HandleError(View = "foo")]
[HandleError(View = "bar")]
private class ClassWithMultipleHandleErrorAttributes
{
}
[Fact]
public void CanRetrieveMultipleAuthorizeAttributesFromOneClass()
{
// Arrange
ClassWithMultipleHandleErrorAttributes @class = new ClassWithMultipleHandleErrorAttributes();
// Act
IEnumerable<HandleErrorAttribute> attributes = TypeDescriptor.GetAttributes(@class).OfType<HandleErrorAttribute>();
// Assert
Assert.Equal(2, attributes.Count());
Assert.Contains(attributes, a => a.View == "foo");
Assert.Contains(attributes, a => a.View == "bar");
}
[Fact]
public void ExceptionTypeProperty()
{
// Arrange
HandleErrorAttribute attr = new HandleErrorAttribute();
// Act
Type origType = attr.ExceptionType;
attr.ExceptionType = typeof(SystemException);
Type newType = attr.ExceptionType;
// Assert
Assert.Equal(typeof(Exception), origType);
Assert.Equal(typeof(SystemException), attr.ExceptionType);
}
[Fact]
public void ExceptionTypePropertyWithNonExceptionTypeThrows()
{
// Arrange
HandleErrorAttribute attr = new HandleErrorAttribute();
// Act & Assert
Assert.Throws<ArgumentException>(
delegate { attr.ExceptionType = typeof(string); },
"The type 'System.String' does not inherit from Exception.");
}
[Fact]
public void ExceptionTypePropertyWithNullValueThrows()
{
// Arrange
HandleErrorAttribute attr = new HandleErrorAttribute();
// Act & Assert
Assert.ThrowsArgumentNull(
delegate { attr.ExceptionType = null; }, "value");
}
[Fact]
public void MasterProperty()
{
// Arrange
HandleErrorAttribute attr = new HandleErrorAttribute();
// Act & Assert
MemberHelper.TestStringProperty(attr, "Master", String.Empty);
}
[Fact]
public void OnException()
{
// Arrange
HandleErrorAttribute attr = new HandleErrorAttribute()
{
View = "SomeView",
Master = "SomeMaster",
ExceptionType = typeof(ArgumentException)
};
Exception exception = new ArgumentNullException();
Mock<HttpContextBase> mockHttpContext = new Mock<HttpContextBase>(MockBehavior.Strict);
mockHttpContext.Setup(c => c.IsCustomErrorEnabled).Returns(true);
mockHttpContext.Setup(c => c.Session).Returns((HttpSessionStateBase)null);
mockHttpContext.Setup(c => c.Response.Clear()).Verifiable();
mockHttpContext.SetupSet(c => c.Response.StatusCode = 500).Verifiable();
mockHttpContext.SetupSet(c => c.Response.TrySkipIisCustomErrors = true).Verifiable();
TempDataDictionary tempData = new TempDataDictionary();
IViewEngine viewEngine = new Mock<IViewEngine>().Object;
Controller controller = new Mock<Controller>().Object;
controller.TempData = tempData;
ExceptionContext context = GetExceptionContext(mockHttpContext.Object, controller, exception);
// Exception
attr.OnException(context);
// Assert
mockHttpContext.Verify();
ViewResult viewResult = context.Result as ViewResult;
Assert.NotNull(viewResult);
Assert.Equal(tempData, viewResult.TempData);
Assert.Equal("SomeView", viewResult.ViewName);
Assert.Equal("SomeMaster", viewResult.MasterName);
HandleErrorInfo viewData = viewResult.ViewData.Model as HandleErrorInfo;
Assert.NotNull(viewData);
Assert.Same(exception, viewData.Exception);
Assert.Equal("SomeController", viewData.ControllerName);
Assert.Equal("SomeAction", viewData.ActionName);
}
[Fact]
public void OnExceptionWithCustomErrorsDisabledDoesNothing()
{
// Arrange
HandleErrorAttribute attr = new HandleErrorAttribute();
ActionResult result = new EmptyResult();
ExceptionContext context = GetExceptionContext(GetHttpContext(false), null, new Exception());
context.Result = result;
// Exception
attr.OnException(context);
// Assert
Assert.Same(result, context.Result);
}
[Fact]
public void OnExceptionWithExceptionHandledDoesNothing()
{
// Arrange
HandleErrorAttribute attr = new HandleErrorAttribute();
ActionResult result = new EmptyResult();
ExceptionContext context = GetExceptionContext(GetHttpContext(), null, new Exception());
context.Result = result;
context.ExceptionHandled = true;
// Exception
attr.OnException(context);
// Assert
Assert.Same(result, context.Result);
}
[Fact]
public void OnExceptionWithNon500ExceptionDoesNothing()
{
// Arrange
HandleErrorAttribute attr = new HandleErrorAttribute();
ActionResult result = new EmptyResult();
ExceptionContext context = GetExceptionContext(GetHttpContext(), null, new HttpException(404, "Some Exception"));
context.Result = result;
// Exception
attr.OnException(context);
// Assert
Assert.Same(result, context.Result);
}
[Fact]
public void OnExceptionWithNullFilterContextThrows()
{
// Arrange
HandleErrorAttribute attr = new HandleErrorAttribute();
// Act & Assert
Assert.ThrowsArgumentNull(
delegate { attr.OnException(null /* filterContext */); }, "filterContext");
}
[Fact]
public void OnExceptionWithWrongExceptionTypeDoesNothing()
{
// Arrange
HandleErrorAttribute attr = new HandleErrorAttribute() { ExceptionType = typeof(ArgumentException) };
ActionResult result = new EmptyResult();
ExceptionContext context = GetExceptionContext(GetHttpContext(), null, new InvalidCastException());
context.Result = result;
// Exception
attr.OnException(context);
// Assert
Assert.Same(result, context.Result);
}
[Fact]
public void ViewProperty()
{
// Arrange
HandleErrorAttribute attr = new HandleErrorAttribute();
// Act & Assert
MemberHelper.TestStringProperty(attr, "View", "Error", nullAndEmptyReturnValue: "Error");
}
private static ExceptionContext GetExceptionContext(HttpContextBase httpContext, ControllerBase controller, Exception exception)
{
RouteData rd = new RouteData();
rd.Values["controller"] = "SomeController";
rd.Values["action"] = "SomeAction";
Mock<ExceptionContext> mockExceptionContext = new Mock<ExceptionContext>();
mockExceptionContext.Setup(c => c.Controller).Returns(controller);
mockExceptionContext.Setup(c => c.Exception).Returns(exception);
mockExceptionContext.Setup(c => c.RouteData).Returns(rd);
mockExceptionContext.Setup(c => c.HttpContext).Returns(httpContext);
return mockExceptionContext.Object;
}
private static HttpContextBase GetHttpContext()
{
return GetHttpContext(true);
}
private static HttpContextBase GetHttpContext(bool isCustomErrorEnabled)
{
Mock<HttpContextBase> mockContext = new Mock<HttpContextBase>(MockBehavior.Strict);
mockContext.Setup(c => c.IsCustomErrorEnabled).Returns(isCustomErrorEnabled);
return mockContext.Object;
}
}
}