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
|
// Copyright (c) Microsoft Corporation. All rights reserved. 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.Web.Http.SelfHost.Channels;
using Moq;
using Xunit;
using Xunit.Extensions;
using Assert = Microsoft.TestCommon.AssertEx;
namespace System.Web.Http.SelfHost
{
public class HttpSelfHostConfigurationTest
{
[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 void HttpSelfHostConfiguration_UseWindowsAuthentication_RoundTrips()
{
Assert.Reflection.BooleanProperty(
new HttpSelfHostConfiguration("http://localhost"),
c => c.UseWindowsAuthentication,
expectedDefaultValue: false);
}
[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: true,
roundTripTestValue: userNamePasswordValidator);
}
[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_Settings_PropagateToBinding()
{
// Arrange
HttpBinding binding = new HttpBinding();
HttpSelfHostConfiguration config = new HttpSelfHostConfiguration("http://localhost")
{
MaxBufferSize = 10,
MaxReceivedMessageSize = 11,
TransferMode = TransferMode.StreamedResponse,
HostNameComparisonMode = HostNameComparisonMode.WeakWildcard
};
// Act
config.ConfigureBinding(binding);
// Assert
Assert.Equal(10, binding.MaxBufferSize);
Assert.Equal(11, binding.MaxReceivedMessageSize);
Assert.Equal(TransferMode.StreamedResponse, binding.TransferMode);
Assert.Equal(HostNameComparisonMode.WeakWildcard, binding.HostNameComparisonMode);
}
[Theory]
[InlineData("http://localhost", HttpBindingSecurityMode.TransportCredentialOnly)]
[InlineData("https://localhost", HttpBindingSecurityMode.Transport)]
public void HttpSelfHostConfiguration_UseWindowsAuth_PropagatesToHttpBinding(string address, HttpBindingSecurityMode mode)
{
// Arrange
HttpBinding binding = new HttpBinding();
HttpSelfHostConfiguration config = new HttpSelfHostConfiguration(address)
{
UseWindowsAuthentication = true
};
// Act
BindingParameterCollection parameters = config.ConfigureBinding(binding);
// Assert
Assert.NotNull(parameters);
ServiceCredentials serviceCredentials = parameters.Find<ServiceCredentials>();
Assert.NotNull(serviceCredentials);
Assert.Equal(HttpClientCredentialType.Windows, binding.Security.Transport.ClientCredentialType);
Assert.Equal(mode, binding.Security.Mode);
}
[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;
}
}
}
}
|