forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebHostExceptionCatchBlocksTests.cs
More file actions
154 lines (126 loc) · 5.31 KB
/
Copy pathWebHostExceptionCatchBlocksTests.cs
File metadata and controls
154 lines (126 loc) · 5.31 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
// 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.Web.Http.ExceptionHandling;
using Microsoft.TestCommon;
namespace System.Web.Http.WebHost
{
public class WebHostExceptionCatchBlocksTests
{
[Fact]
public void HttpControllerHandlerBufferContent_IsSpecifiedValue()
{
// Act
ExceptionContextCatchBlock catchBlock = WebHostExceptionCatchBlocks.HttpControllerHandlerBufferContent;
// Assert
ExceptionContextCatchBlock expected =
new ExceptionContextCatchBlock("HttpControllerHandler.BufferContent", isTopLevel: true,
callsHandler: true);
AssertEqual(expected, catchBlock);
}
[Fact]
public void HttpControllerHandlerBufferContent_IsSameInstance()
{
// Arrange
ExceptionContextCatchBlock first = WebHostExceptionCatchBlocks.HttpControllerHandlerBufferContent;
// Act
ExceptionContextCatchBlock second = WebHostExceptionCatchBlocks.HttpControllerHandlerBufferContent;
// Assert
Assert.Same(first, second);
}
[Fact]
public void HttpControllerHandlerBufferError_IsSpecifiedValue()
{
// Act
ExceptionContextCatchBlock catchBlock = WebHostExceptionCatchBlocks.HttpControllerHandlerBufferError;
// Assert
ExceptionContextCatchBlock expected =
new ExceptionContextCatchBlock("HttpControllerHandler.BufferError", isTopLevel: true,
callsHandler: false);
AssertEqual(expected, catchBlock);
}
[Fact]
public void HttpControllerHandlerBufferError_IsSameInstance()
{
// Arrange
ExceptionContextCatchBlock first = WebHostExceptionCatchBlocks.HttpControllerHandlerBufferError;
// Act
ExceptionContextCatchBlock second = WebHostExceptionCatchBlocks.HttpControllerHandlerBufferError;
// Assert
Assert.Same(first, second);
}
[Fact]
public void HttpControllerHandlerComputeContentLength_IsSpecifiedValue()
{
// Act
ExceptionContextCatchBlock catchBlock = WebHostExceptionCatchBlocks.HttpControllerHandlerComputeContentLength;
// Assert
ExceptionContextCatchBlock expected =
new ExceptionContextCatchBlock("HttpControllerHandler.ComputeContentLength", isTopLevel: true,
callsHandler: false);
AssertEqual(expected, catchBlock);
}
[Fact]
public void HttpControllerHandlerComputeContentLength_IsSameInstance()
{
// Arrange
ExceptionContextCatchBlock first = WebHostExceptionCatchBlocks.HttpControllerHandlerComputeContentLength;
// Act
ExceptionContextCatchBlock second = WebHostExceptionCatchBlocks.HttpControllerHandlerComputeContentLength;
// Assert
Assert.Same(first, second);
}
[Fact]
public void HttpControllerHandlerStreamContent_IsSpecifiedValue()
{
// Act
ExceptionContextCatchBlock catchBlock = WebHostExceptionCatchBlocks.HttpControllerHandlerStreamContent;
// Assert
ExceptionContextCatchBlock expected =
new ExceptionContextCatchBlock("HttpControllerHandler.StreamContent", isTopLevel: true,
callsHandler: false);
AssertEqual(expected, catchBlock);
}
[Fact]
public void HttpControllerHandlerStreamContent_IsSameInstance()
{
// Arrange
ExceptionContextCatchBlock first = WebHostExceptionCatchBlocks.HttpControllerHandlerStreamContent;
// Act
ExceptionContextCatchBlock second = WebHostExceptionCatchBlocks.HttpControllerHandlerStreamContent;
// Assert
Assert.Same(first, second);
}
[Fact]
public void HttpWebRoute_IsSpecifiedValue()
{
// Act
ExceptionContextCatchBlock catchBlock = WebHostExceptionCatchBlocks.HttpWebRoute;
// Assert
ExceptionContextCatchBlock expected =
new ExceptionContextCatchBlock("HttpWebRoute", isTopLevel: true, callsHandler: true);
AssertEqual(expected, catchBlock);
}
[Fact]
public void HttpWebRoute_IsSameInstance()
{
// Arrange
ExceptionContextCatchBlock first = WebHostExceptionCatchBlocks.HttpWebRoute;
// Act
ExceptionContextCatchBlock second = WebHostExceptionCatchBlocks.HttpWebRoute;
// Assert
Assert.Same(first, second);
}
private static void AssertEqual(ExceptionContextCatchBlock expected, ExceptionContextCatchBlock actual)
{
if (expected == null)
{
Assert.Null(actual);
return;
}
Assert.NotNull(actual);
Assert.Equal(expected.Name, actual.Name);
Assert.Equal(expected.IsTopLevel, actual.IsTopLevel);
Assert.Equal(expected.CallsHandler, actual.CallsHandler);
}
}
}