forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpSelfHostConfigurationTest.cs
More file actions
505 lines (441 loc) · 21.9 KB
/
Copy pathHttpSelfHostConfigurationTest.cs
File metadata and controls
505 lines (441 loc) · 21.9 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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
// 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.IdentityModel.Selectors;
using System.ServiceModel;
using System.ServiceModel.Channels;
using System.ServiceModel.Description;
using System.Threading.Tasks;
using System.Web.Http.SelfHost.Channels;
using Microsoft.TestCommon;
using Moq;
namespace System.Web.Http.SelfHost
{
public class HttpSelfHostConfigurationTest
{
public static TheoryDataSet<string, HttpBindingSecurityMode, HttpClientCredentialType> BasicClientCredentialTestData
{
get
{
return new TheoryDataSet<string, HttpBindingSecurityMode, HttpClientCredentialType>()
{
{"http://localhost", HttpBindingSecurityMode.TransportCredentialOnly, HttpClientCredentialType.Basic},
{"https://localhost", HttpBindingSecurityMode.Transport, HttpClientCredentialType.Basic},
};
}
}
public static TheoryDataSet<string, HttpBindingSecurityMode, HttpClientCredentialType> CertificateClientCredentialTestData
{
get
{
return new TheoryDataSet<string, HttpBindingSecurityMode, HttpClientCredentialType>()
{
{"http://localhost", HttpBindingSecurityMode.TransportCredentialOnly, HttpClientCredentialType.Certificate},
{"https://localhost", HttpBindingSecurityMode.Transport, HttpClientCredentialType.Certificate},
};
}
}
public static TheoryDataSet<string, HttpBindingSecurityMode, HttpClientCredentialType> NonCertificateClientCredentialTestData
{
get
{
return new TheoryDataSet<string, HttpBindingSecurityMode, HttpClientCredentialType>()
{
{"http://localhost", HttpBindingSecurityMode.None, HttpClientCredentialType.None},
{"https://localhost", HttpBindingSecurityMode.Transport, HttpClientCredentialType.None},
{"http://localhost", HttpBindingSecurityMode.TransportCredentialOnly, HttpClientCredentialType.Basic},
{"https://localhost", HttpBindingSecurityMode.Transport, HttpClientCredentialType.Basic},
{"http://localhost", HttpBindingSecurityMode.TransportCredentialOnly, HttpClientCredentialType.Digest},
{"https://localhost", HttpBindingSecurityMode.Transport, HttpClientCredentialType.Digest},
{"http://localhost", HttpBindingSecurityMode.TransportCredentialOnly, HttpClientCredentialType.Ntlm},
{"https://localhost", HttpBindingSecurityMode.Transport, HttpClientCredentialType.Ntlm},
{"http://localhost", HttpBindingSecurityMode.TransportCredentialOnly, HttpClientCredentialType.Windows},
{"https://localhost", HttpBindingSecurityMode.Transport, HttpClientCredentialType.Windows},
};
}
}
public static TheoryDataSet<string, HttpBindingSecurityMode, HttpClientCredentialType> NonBasicClientCredentialTestData
{
get
{
return new TheoryDataSet<string, HttpBindingSecurityMode, HttpClientCredentialType>()
{
{"http://localhost", HttpBindingSecurityMode.None, HttpClientCredentialType.None},
{"https://localhost", HttpBindingSecurityMode.Transport, HttpClientCredentialType.None},
{"http://localhost", HttpBindingSecurityMode.TransportCredentialOnly, HttpClientCredentialType.Certificate},
{"https://localhost", HttpBindingSecurityMode.Transport, HttpClientCredentialType.Certificate},
{"http://localhost", HttpBindingSecurityMode.TransportCredentialOnly, HttpClientCredentialType.Digest},
{"https://localhost", HttpBindingSecurityMode.Transport, HttpClientCredentialType.Digest},
{"http://localhost", HttpBindingSecurityMode.TransportCredentialOnly, HttpClientCredentialType.Ntlm},
{"https://localhost", HttpBindingSecurityMode.Transport, HttpClientCredentialType.Ntlm},
{"http://localhost", HttpBindingSecurityMode.TransportCredentialOnly, HttpClientCredentialType.Windows},
{"https://localhost", HttpBindingSecurityMode.Transport, HttpClientCredentialType.Windows},
};
}
}
[Fact]
public void HttpSelfHostConfiguration_NullBaseAddressString_Throws()
{
Assert.ThrowsArgumentNull(() => new HttpSelfHostConfiguration((string)null), "baseAddress");
}
[Fact]
public void HttpSelfHostConfiguration_RelativeBaseAddressString_Throws()
{
Assert.ThrowsArgument(() => new HttpSelfHostConfiguration("relative"), "baseAddress");
}
[Fact]
public void HttpSelfHostConfiguration_QueryBaseAddressString_Throws()
{
Assert.ThrowsArgument(() => new HttpSelfHostConfiguration("http://localhost?somequery"), "baseAddress");
}
[Fact]
public void HttpSelfHostConfiguration_FragmentBaseAddressString_Throws()
{
Assert.ThrowsArgument(() => new HttpSelfHostConfiguration("http://localhost#somefragment"), "baseAddress");
}
[Fact]
public void HttpSelfHostConfiguration_InvalidSchemeBaseAddressString_Throws()
{
Assert.ThrowsArgument(() => new HttpSelfHostConfiguration("ftp://localhost"), "baseAddress");
}
[Fact]
public void HttpSelfHostConfiguration_NullBaseAddress_Throws()
{
Assert.ThrowsArgumentNull(() => new HttpSelfHostConfiguration((Uri)null), "baseAddress");
}
[Fact]
public void HttpSelfHostConfiguration_RelativeBaseAddress_Throws()
{
Assert.ThrowsArgument(() => new HttpSelfHostConfiguration(new Uri("relative", UriKind.Relative)), "baseAddress");
}
[Fact]
public void HttpSelfHostConfiguration_QueryBaseAddress_Throws()
{
Assert.ThrowsArgument(() => new HttpSelfHostConfiguration(new Uri("http://localhost?somequery")), "baseAddress");
}
[Fact]
public void HttpSelfHostConfiguration_FragmentBaseAddress_Throws()
{
Assert.ThrowsArgument(() => new HttpSelfHostConfiguration(new Uri("http://localhost#somefragment")), "baseAddress");
}
[Fact]
public void HttpSelfHostConfiguration_InvalidSchemeBaseAddress_Throws()
{
Assert.ThrowsArgument(() => new HttpSelfHostConfiguration(new Uri("ftp://localhost")), "baseAddress");
}
[Fact]
public void HttpSelfHostConfiguration_BaseAddress_IsSet()
{
// Arrange
Uri baseAddress = new Uri("http://localhost");
// Act
HttpSelfHostConfiguration config = new HttpSelfHostConfiguration(baseAddress);
// Assert
Assert.Same(baseAddress, config.BaseAddress);
}
[Fact]
public void HttpSelfHostConfiguration_MaxConcurrentRequests_RoundTrips()
{
Assert.Reflection.IntegerProperty(
new HttpSelfHostConfiguration("http://localhost"),
c => c.MaxConcurrentRequests,
expectedDefaultValue: GetDefaultMaxConcurrentRequests(),
minLegalValue: 1,
illegalLowerValue: 0,
maxLegalValue: null,
illegalUpperValue: null,
roundTripTestValue: 10);
}
[Fact]
public void HttpSelfHostConfiguration_MaxBufferSize_RoundTrips()
{
Assert.Reflection.IntegerProperty(
new HttpSelfHostConfiguration("http://localhost"),
c => c.MaxBufferSize,
expectedDefaultValue: 64 * 1024,
minLegalValue: 1,
illegalLowerValue: 0,
maxLegalValue: null,
illegalUpperValue: null,
roundTripTestValue: 10);
}
[Theory]
[InlineData(1, 1)]
[InlineData(1024, 1024)]
[InlineData(Int32.MaxValue - 1, Int32.MaxValue - 1)]
[InlineData(Int32.MaxValue, Int32.MaxValue)]
[InlineData(Int64.MaxValue - 1, Int32.MaxValue)]
[InlineData(Int64.MaxValue, Int32.MaxValue)]
public void HttpSelfHostConfiguration_MaxBufferSize_TracksMaxReceivedMessageSizeWhenNotSet(long maxReceivedMessageSize, int expectedMaxBufferSize)
{
// Arrange
HttpSelfHostConfiguration config = new HttpSelfHostConfiguration("http://localhost");
config.MaxReceivedMessageSize = maxReceivedMessageSize;
// Act & Assert
Assert.Equal(expectedMaxBufferSize, config.MaxBufferSize);
}
[Theory]
[InlineData(2, 1)]
[InlineData(1025, 1024)]
[InlineData(Int64.MaxValue, Int32.MaxValue)]
public void HttpSelfHostConfiguration_MaxBufferSize_DoesNotTrackMaxReceivedMessageSizeWhenSet(long maxReceivedMessageSize, int maxBufferSize)
{
// Arrange
HttpSelfHostConfiguration config = new HttpSelfHostConfiguration("http://localhost");
config.MaxBufferSize = maxBufferSize;
config.MaxReceivedMessageSize = maxReceivedMessageSize;
// Act & Assert
Assert.Equal(maxBufferSize, config.MaxBufferSize);
Assert.Equal(maxReceivedMessageSize, config.MaxReceivedMessageSize);
}
[Theory]
[InlineData(1)]
[InlineData(1024)]
[InlineData(Int64.MaxValue)]
public void HttpSelfHostConfiguration_MaxBufferSize_DoesNotTrackMaxReceivedMessageIfNotBuffered(long maxReceivedMessageSize)
{
// Arrange
HttpSelfHostConfiguration config = new HttpSelfHostConfiguration("http://localhost");
config.TransferMode = TransferMode.Streamed;
config.MaxReceivedMessageSize = maxReceivedMessageSize;
// Act & Assert
Assert.Equal(maxReceivedMessageSize, config.MaxReceivedMessageSize);
Assert.Equal(64 * 1024, config.MaxBufferSize);
}
[Fact]
public void HttpSelfHostConfiguration_MaxReceivedMessageSize_RoundTrips()
{
Assert.Reflection.IntegerProperty(
new HttpSelfHostConfiguration("http://localhost"),
c => c.MaxReceivedMessageSize,
expectedDefaultValue: 64 * 1024,
minLegalValue: 1,
illegalLowerValue: 0,
maxLegalValue: null,
illegalUpperValue: null,
roundTripTestValue: 10);
}
[Fact]
public Task HttpSelfHostConfiguration_ClientCredentialType_RoundTrips()
{
HttpSelfHostConfiguration config = new HttpSelfHostConfiguration("http://localhost");
Assert.Reflection.EnumPropertyWithoutIllegalValueCheck<HttpSelfHostConfiguration, HttpClientCredentialType>(
config,
c => c.ClientCredentialType,
expectedDefaultValue: HttpClientCredentialType.None,
roundTripTestValue: HttpClientCredentialType.Windows);
// now let us check the illegal value differently
config.ClientCredentialType = (HttpClientCredentialType)999;
return Assert.ThrowsArgumentOutOfRangeAsync(() => new HttpSelfHostServer(config).OpenAsync(), "value", null, 999);
}
[Fact]
public void HttpSelfHostConfiguration_UserNamePasswordValidator_RoundTrips()
{
// Arrange
UserNamePasswordValidator userNamePasswordValidator = new Mock<UserNamePasswordValidator>().Object;
Assert.Reflection.Property(
new HttpSelfHostConfiguration("http://localhost"),
c => c.UserNamePasswordValidator,
expectedDefaultValue: null,
allowNull: false,
roundTripTestValue: userNamePasswordValidator);
}
[Fact]
public void HttpSelfHostConfiguration_X509CertificateValidator_RoundTrips()
{
// Arrange
X509CertificateValidator x509CertificateValidator = new Mock<X509CertificateValidator>().Object;
Assert.Reflection.Property(
new HttpSelfHostConfiguration("http://localhost"),
c => c.X509CertificateValidator,
expectedDefaultValue: null,
allowNull: false,
roundTripTestValue: x509CertificateValidator);
}
[Fact]
public void HttpSelfHostConfiguration_TransferMode_RoundTrips()
{
Assert.Reflection.EnumProperty(
new HttpSelfHostConfiguration("http://localhost"),
c => c.TransferMode,
expectedDefaultValue: TransferMode.Buffered,
illegalValue: (TransferMode)999,
roundTripTestValue: TransferMode.Streamed);
}
[Fact]
public void HttpSelfHostConfiguration_HostNameComparisonMode_RoundTrips()
{
Assert.Reflection.EnumProperty(
new HttpSelfHostConfiguration("http://localhost"),
c => c.HostNameComparisonMode,
expectedDefaultValue: HostNameComparisonMode.StrongWildcard,
illegalValue: (HostNameComparisonMode)999,
roundTripTestValue: HostNameComparisonMode.Exact);
}
[Fact]
public void HttpSelfHostConfiguration_NegativeTimeouts_ThrowArgumentOutOfRange()
{
HttpSelfHostConfiguration config = new HttpSelfHostConfiguration("http://localhost");
TimeSpan negativeTimeout = new TimeSpan(-1, 0, 0);
Assert.ThrowsArgumentGreaterThanOrEqualTo(() => config.ReceiveTimeout = negativeTimeout, "value", "00:00:00", "-01:00:00");
Assert.ThrowsArgumentGreaterThanOrEqualTo(() => config.SendTimeout = negativeTimeout, "value", "00:00:00", "-01:00:00");
}
[Fact]
public void HttpSelfHostConfiguration_Settings_PropagateToBinding()
{
// Arrange
HttpBinding binding = new HttpBinding();
binding.ConfigureTransportBindingElement = ConfigureTransportBindingElement;
HttpSelfHostConfiguration config = new HttpSelfHostConfiguration("http://localhost")
{
MaxBufferSize = 10,
MaxReceivedMessageSize = 11,
ReceiveTimeout = new TimeSpan(1, 0, 0),
SendTimeout = new TimeSpan(1, 0, 0),
TransferMode = TransferMode.StreamedResponse,
HostNameComparisonMode = HostNameComparisonMode.WeakWildcard
};
// Act
config.ConfigureBinding(binding);
// Assert
Assert.Equal(10, binding.MaxBufferSize);
Assert.Equal(11, binding.MaxReceivedMessageSize);
Assert.Equal(new TimeSpan(1, 0, 0), binding.ReceiveTimeout);
Assert.Equal(new TimeSpan(1, 0, 0), binding.SendTimeout);
Assert.Equal(TransferMode.StreamedResponse, binding.TransferMode);
Assert.Equal(HostNameComparisonMode.WeakWildcard, binding.HostNameComparisonMode);
Assert.Equal(Net.AuthenticationSchemes.Ntlm, binding.CreateBindingElements().Find<HttpTransportBindingElement>().AuthenticationScheme);
}
void ConfigureTransportBindingElement(HttpTransportBindingElement element)
{
element.AuthenticationScheme = Net.AuthenticationSchemes.Ntlm;
}
[Theory]
[PropertyData("BasicClientCredentialTestData")]
[PropertyData("NonBasicClientCredentialTestData")]
public void HttpSelfHostConfiguration_ClientCredentialType_PropagatesToHttpBinding(string address, HttpBindingSecurityMode mode, HttpClientCredentialType clientCredentialType)
{
// Arrange
HttpBinding binding = new HttpBinding();
HttpSelfHostConfiguration config = new HttpSelfHostConfiguration(address)
{
ClientCredentialType = clientCredentialType
};
// Act
BindingParameterCollection parameters = config.ConfigureBinding(binding);
Assert.Equal(clientCredentialType, binding.Security.Transport.ClientCredentialType);
Assert.Equal(mode, binding.Security.Mode);
}
[Theory]
[PropertyData("NonBasicClientCredentialTestData")]
public void HttpSelfHostConfiguration_WrongClientCredentialType_WithUsernamePasswordValidator_Throws(string address, HttpBindingSecurityMode mode, HttpClientCredentialType clientCredentialType)
{
// Arrange
GC.KeepAlive(mode); // Mark parameter as used. See xUnit1026, [Theory] method doesn't use all parameters.
HttpBinding binding = new HttpBinding();
HttpSelfHostConfiguration config = new HttpSelfHostConfiguration(address)
{
UserNamePasswordValidator = new CustomUsernamePasswordValidator()
};
config.ClientCredentialType = clientCredentialType;
Assert.Throws<InvalidOperationException>(() =>
{
// Act
BindingParameterCollection parameters = config.ConfigureBinding(binding);
});
}
[Theory]
[PropertyData("BasicClientCredentialTestData")]
public void HttpSelfHostConfiguration_CorrectClientCredentialType_WithUsernamePasswordValidator_Works(string address, HttpBindingSecurityMode mode, HttpClientCredentialType clientCredentialType)
{
// Arrange
GC.KeepAlive(mode); // Mark parameter as used. See xUnit1026, [Theory] method doesn't use all parameters.
HttpBinding binding = new HttpBinding();
HttpSelfHostConfiguration config = new HttpSelfHostConfiguration(address)
{
UserNamePasswordValidator = new CustomUsernamePasswordValidator()
};
config.ClientCredentialType = clientCredentialType;
// Act
BindingParameterCollection parameters = config.ConfigureBinding(binding);
}
[Theory]
[PropertyData("NonCertificateClientCredentialTestData")]
public void HttpSelfHostConfiguration_WrongClientCredentialType_WithX509CertificateValidator_Throws(string address, HttpBindingSecurityMode mode, HttpClientCredentialType clientCredentialType)
{
// Arrange
GC.KeepAlive(mode); // Mark parameter as used. See xUnit1026, [Theory] method doesn't use all parameters.
HttpBinding binding = new HttpBinding();
HttpSelfHostConfiguration config = new HttpSelfHostConfiguration(address)
{
X509CertificateValidator = new Mock<X509CertificateValidator>().Object
};
config.ClientCredentialType = clientCredentialType;
Assert.Throws<InvalidOperationException>(() =>
{
// Act
BindingParameterCollection parameters = config.ConfigureBinding(binding);
});
}
[Theory]
[PropertyData("CertificateClientCredentialTestData")]
public void HttpSelfHostConfiguration_CorrectClientCredentialType_WithX509CertificateValidator_Works(string address, HttpBindingSecurityMode mode, HttpClientCredentialType clientCredentialType)
{
// Arrange
GC.KeepAlive(mode); // Mark parameter as used. See xUnit1026, [Theory] method doesn't use all parameters.
HttpBinding binding = new HttpBinding();
HttpSelfHostConfiguration config = new HttpSelfHostConfiguration(address)
{
X509CertificateValidator = new Mock<X509CertificateValidator>().Object
};
config.ClientCredentialType = clientCredentialType;
// Act
BindingParameterCollection parameters = config.ConfigureBinding(binding);
}
[Theory]
[InlineData("http://localhost", HttpBindingSecurityMode.TransportCredentialOnly)]
[InlineData("https://localhost", HttpBindingSecurityMode.Transport)]
public void HttpSelfHostConfiguration_UserNamePasswordValidator_PropagatesToBinding(string address, HttpBindingSecurityMode mode)
{
// Arrange
HttpBinding binding = new HttpBinding();
UserNamePasswordValidator validator = new Mock<UserNamePasswordValidator>().Object;
HttpSelfHostConfiguration config = new HttpSelfHostConfiguration(address)
{
UserNamePasswordValidator = validator
};
// Act
BindingParameterCollection parameters = config.ConfigureBinding(binding);
// Assert
Assert.NotNull(parameters);
ServiceCredentials serviceCredentials = parameters.Find<ServiceCredentials>();
Assert.NotNull(serviceCredentials);
Assert.Equal(HttpClientCredentialType.Basic, binding.Security.Transport.ClientCredentialType);
Assert.Equal(mode, binding.Security.Mode);
}
private static int GetDefaultMaxConcurrentRequests()
{
try
{
return Math.Max(Environment.ProcessorCount * 100, 100);
}
catch
{
return 100;
}
}
public class CustomUsernamePasswordValidator : UserNamePasswordValidator
{
public override void Validate(string userName, string password)
{
if (userName == "username" && password == "password")
{
return;
}
else
{
throw new InvalidOperationException();
}
}
}
}
}