You've already forked linux-packaging-mono
acceptance-tests
data
debian
docs
external
Newtonsoft.Json
api-doc-tools
api-snapshot
aspnetwebstack
packages
src
test
Microsoft.TestCommon
Microsoft.Web.Helpers.Test
Microsoft.Web.Http.Data.Test
Microsoft.Web.Mvc.Test
Microsoft.Web.WebPages.OAuth.Test
SPA.Test
System.Json.Test.Integration
System.Json.Test.Unit
System.Net.Http.Formatting.Test.Integration
System.Net.Http.Formatting.Test.Unit
System.Web.Helpers.Test
System.Web.Http.Integration.Test
System.Web.Http.SelfHost.Test
Properties
DeeplyNestedTypeTests.cs
HttpSelfHostConfigurationTest.cs
HttpSelfHostServerTest.cs
MaxHttpCollectionKeyTests.cs
System.Web.Http.SelfHost.Test.csproj
packages.config
System.Web.Http.Test
System.Web.Http.WebHost.Test
System.Web.Mvc.Test
System.Web.Razor.Test
System.Web.WebPages.Administration.Test
System.Web.WebPages.Deployment.Test
System.Web.WebPages.Razor.Test
System.Web.WebPages.Test
WebMatrix.Data.Test
WebMatrix.WebData.Test
Settings.StyleCop
tools
.gitattributes
.gitignore
License.txt
README.md
Runtime.msbuild
Runtime.sln
Runtime.xunit
Settings.StyleCop
build.cmd
binary-reference-assemblies
bockbuild
boringssl
cecil
cecil-legacy
corefx
corert
ikdasm
ikvm
linker
nuget-buildtasks
nunit-lite
roslyn-binaries
rx
xunit-binaries
ikvm-native
libgc
llvm
m4
man
mcs
mono
msvc
po
runtime
samples
scripts
support
tools
COPYING.LIB
LICENSE
Makefile.am
Makefile.in
NEWS
README.md
acinclude.m4
aclocal.m4
autogen.sh
code_of_conduct.md
compile
config.guess
config.h.in
config.rpath
config.sub
configure.REMOVED.git-id
configure.ac.REMOVED.git-id
depcomp
install-sh
ltmain.sh.REMOVED.git-id
missing
mkinstalldirs
mono-uninstalled.pc.in
test-driver
winconfig.h
309 lines
12 KiB
C#
309 lines
12 KiB
C#
// 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;
|
|
}
|
|
}
|
|
}
|
|
}
|