forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContentNegotiatorTracerTest.cs
More file actions
221 lines (186 loc) · 9.04 KB
/
Copy pathContentNegotiatorTracerTest.cs
File metadata and controls
221 lines (186 loc) · 9.04 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
// 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.Net.Http;
using System.Net.Http.Formatting;
using System.Net.Http.Headers;
using System.Web.Http.Services;
using Microsoft.TestCommon;
using Moq;
namespace System.Web.Http.Tracing.Tracers
{
public class ContentNegotiatorTracerTest
{
private readonly HttpRequestMessage _request = new HttpRequestMessage();
private readonly Mock<IContentNegotiator> _mockNegotiator = new Mock<IContentNegotiator>();
private readonly ContentNegotiatorTracer _tracer;
private readonly TestTraceWriter _traceWriter = new TestTraceWriter();
public ContentNegotiatorTracerTest()
{
_tracer = new ContentNegotiatorTracer(_mockNegotiator.Object, _traceWriter);
}
[Fact]
public void Negotiate_Calls_Inner_Negotiate()
{
// Act
((IContentNegotiator)_tracer).Negotiate(typeof(int), _request, new MediaTypeFormatter[0]);
// Assert
_mockNegotiator.Verify(
n =>
n.Negotiate(It.IsAny<Type>(), It.IsAny<HttpRequestMessage>(),
It.IsAny<IEnumerable<MediaTypeFormatter>>()), Times.Once());
}
[Fact]
public void Negotiate_Returns_Inner_MediaType()
{
// Arrange
MediaTypeHeaderValue expectedMediaType = new MediaTypeHeaderValue("application/xml");
_mockNegotiator.Setup(
n =>
n.Negotiate(It.IsAny<Type>(), It.IsAny<HttpRequestMessage>(),
It.IsAny<IEnumerable<MediaTypeFormatter>>())).Returns(
new ContentNegotiationResult(new JsonMediaTypeFormatter(), expectedMediaType));
// Act
var result = ((IContentNegotiator)_tracer).Negotiate(typeof(int), _request, new MediaTypeFormatter[0]);
// Assert
Assert.Same(expectedMediaType, result.MediaType);
}
[Fact]
public void Negotiate_Returns_Wrapped_Inner_XmlFormatter()
{
// Arrange
MediaTypeFormatter expectedFormatter = new XmlMediaTypeFormatter();
_mockNegotiator.Setup(
n =>
n.Negotiate(It.IsAny<Type>(), It.IsAny<HttpRequestMessage>(),
It.IsAny<IEnumerable<MediaTypeFormatter>>())).Returns(
new ContentNegotiationResult(expectedFormatter, null));
// Act
var result = ((IContentNegotiator)_tracer).Negotiate(typeof(int), _request, new MediaTypeFormatter[0]);
// Assert
Assert.IsType<XmlMediaTypeFormatterTracer>(result.Formatter);
}
[Fact]
public void Negotiate_Returns_Wrapped_Inner_JsonFormatter()
{
// Arrange
MediaTypeFormatter expectedFormatter = new JsonMediaTypeFormatter();
_mockNegotiator.Setup(
n =>
n.Negotiate(It.IsAny<Type>(), It.IsAny<HttpRequestMessage>(),
It.IsAny<IEnumerable<MediaTypeFormatter>>())).Returns(
new ContentNegotiationResult(expectedFormatter, null));
// Act
var result = ((IContentNegotiator)_tracer).Negotiate(typeof(int), _request, new MediaTypeFormatter[0]);
// Assert
Assert.IsType<JsonMediaTypeFormatterTracer>(result.Formatter);
}
[Fact]
public void Negotiate_Returns_Wrapped_Inner_FormUrlEncodedFormatter()
{
// Arrange
MediaTypeFormatter expectedFormatter = new FormUrlEncodedMediaTypeFormatter();
_mockNegotiator.Setup(
n =>
n.Negotiate(It.IsAny<Type>(), It.IsAny<HttpRequestMessage>(),
It.IsAny<IEnumerable<MediaTypeFormatter>>())).Returns(
new ContentNegotiationResult(expectedFormatter, null));
// Act
var result = ((IContentNegotiator)_tracer).Negotiate(typeof(int), _request, new MediaTypeFormatter[0]);
// Assert
Assert.IsType<FormUrlEncodedMediaTypeFormatterTracer>(result.Formatter);
}
[Fact]
public void Negotiate_Returns_Null_Inner_Formatter()
{
// Arrange
_mockNegotiator.Setup(
n =>
n.Negotiate(It.IsAny<Type>(), It.IsAny<HttpRequestMessage>(),
It.IsAny<IEnumerable<MediaTypeFormatter>>())).Returns(
value: null);
// Act
var result = ((IContentNegotiator)_tracer).Negotiate(typeof(int), _request, new MediaTypeFormatter[0]);
// Assert
Assert.Null(result);
}
[Fact]
public void Negotiate_Traces_BeginEnd()
{
// Arrange
MediaTypeFormatter expectedFormatter = new XmlMediaTypeFormatter();
_mockNegotiator.Setup(
n =>
n.Negotiate(It.IsAny<Type>(), It.IsAny<HttpRequestMessage>(),
It.IsAny<IEnumerable<MediaTypeFormatter>>())).Returns(
new ContentNegotiationResult(expectedFormatter, null));
TraceRecord[] expectedTraces = new TraceRecord[]
{
new TraceRecord(_request, TraceCategories.FormattingCategory, TraceLevel.Info) { Kind = TraceKind.Begin },
new TraceRecord(_request, TraceCategories.FormattingCategory, TraceLevel.Info) { Kind = TraceKind.End }
};
// Act
((IContentNegotiator)_tracer).Negotiate(typeof(int), _request, new MediaTypeFormatter[0]);
// Assert
Assert.Equal<TraceRecord>(expectedTraces, _traceWriter.Traces, new TraceRecordComparer());
}
[Fact]
public void Negotiate_Throws_When_Inner_Throws()
{
// Arrange
MediaTypeFormatter expectedFormatter = new XmlMediaTypeFormatter();
InvalidOperationException expectedException = new InvalidOperationException("test");
_mockNegotiator.Setup(
n =>
n.Negotiate(It.IsAny<Type>(), It.IsAny<HttpRequestMessage>(),
It.IsAny<IEnumerable<MediaTypeFormatter>>())).Throws(expectedException);
// Act & Assert
InvalidOperationException actualException = Assert.Throws<InvalidOperationException>(() => ((IContentNegotiator)_tracer).Negotiate(typeof(int), _request, new MediaTypeFormatter[0]));
// Assert
Assert.Same(expectedException, actualException);
}
[Fact]
public void Negotiate_Traces_BeginEnd_When_Inner_Throws()
{
// Arrange
MediaTypeFormatter expectedFormatter = new XmlMediaTypeFormatter();
InvalidOperationException expectedException = new InvalidOperationException("test");
_mockNegotiator.Setup(
n =>
n.Negotiate(It.IsAny<Type>(), It.IsAny<HttpRequestMessage>(),
It.IsAny<IEnumerable<MediaTypeFormatter>>())).Throws(expectedException);
TraceRecord[] expectedTraces = new TraceRecord[]
{
new TraceRecord(_request, TraceCategories.FormattingCategory, TraceLevel.Info) { Kind = TraceKind.Begin },
new TraceRecord(_request, TraceCategories.FormattingCategory, TraceLevel.Error) { Kind = TraceKind.End }
};
// Act & Assert
Assert.Throws<InvalidOperationException>(() => ((IContentNegotiator)_tracer).Negotiate(typeof(int), _request, new MediaTypeFormatter[0]));
// Assert
Assert.Equal<TraceRecord>(expectedTraces, _traceWriter.Traces, new TraceRecordComparer());
Assert.Same(expectedException, _traceWriter.Traces[1].Exception);
}
[Fact]
public void Inner_Property_On_ContentNegotiatiorTracer_Returns_IContentNegotiator()
{
// Arrange
IContentNegotiator expectedInner = new Mock<IContentNegotiator>().Object;
ContentNegotiatorTracer productUnderTest = new ContentNegotiatorTracer(expectedInner, new TestTraceWriter());
// Act
IContentNegotiator actualInner = productUnderTest.Inner;
// Assert
Assert.Same(expectedInner, actualInner);
}
[Fact]
public void Decorator_GetInner_On_ContentNegotiatiorTracer_Returns_IContentNegotiator()
{
// Arrange
IContentNegotiator expectedInner = new Mock<IContentNegotiator>().Object;
ContentNegotiatorTracer productUnderTest = new ContentNegotiatorTracer(expectedInner, new TestTraceWriter());
// Act
IContentNegotiator actualInner = Decorator.GetInner(productUnderTest as IContentNegotiator);
// Assert
Assert.Same(expectedInner, actualInner);
}
}
}