31 references to Kestrel
Microsoft.AspNetCore.FunctionalTests (1)
WebHostFunctionalTests.cs (1)
209
var deploymentParameters = new DeploymentParameters(Path.Combine(GetTestSitesPath(), applicationName), ServerType.
Kestrel
, RuntimeFlavor.CoreClr, RuntimeArchitectures.Current)
Microsoft.AspNetCore.Hosting.FunctionalTests (3)
LinkedApplicationTests.cs (1)
27
ServerType.
Kestrel
,
ShutdownTests.cs (1)
52
ServerType.
Kestrel
,
WebHostBuilderTests.cs (1)
14
public static TestMatrix TestVariants => TestMatrix.ForServers(ServerType.
Kestrel
)
Microsoft.AspNetCore.Server.IntegrationTesting (6)
Common\TestUriHelper.cs (2)
18
var statusMessagesEnabled = (serverType == ServerType.
Kestrel
);
27
if (serverType == ServerType.
Kestrel
&& statusMessagesEnabled)
Deployers\ApplicationDeployerFactory.cs (1)
31
case ServerType.
Kestrel
:
Deployers\RemoteWindowsDeployer\RemoteWindowsDeployer.cs (2)
30
&& _deploymentParameters.ServerType != ServerType.
Kestrel
34
$" Supported server types are {nameof(ServerType.
Kestrel
)}, {nameof(ServerType.IIS)} and {nameof(ServerType.HttpSys)}");
TestMatrix.cs (1)
153
case ServerType.
Kestrel
:
Microsoft.AspNetCore.StaticFiles.FunctionalTests (9)
FallbackStaticFileTest.cs (2)
33
.UseUrls(TestUrlHelper.GetTestUrl(ServerType.
Kestrel
))
86
.UseUrls(TestUrlHelper.GetTestUrl(ServerType.
Kestrel
))
StaticFileMiddlewareTests.cs (7)
30
.UseUrls(TestUrlHelper.GetTestUrl(ServerType.
Kestrel
))
53
.UseUrls(TestUrlHelper.GetTestUrl(ServerType.
Kestrel
))
99
.UseUrls(TestUrlHelper.GetTestUrl(ServerType.
Kestrel
))
144
.UseUrls(TestUrlHelper.GetTestUrl(ServerType.
Kestrel
))
186
.UseUrls(TestUrlHelper.GetTestUrl(ServerType.
Kestrel
))
224
return ClientDisconnect_NoWriteExceptionThrown(ServerType.
Kestrel
);
273
else if (serverType == ServerType.
Kestrel
)
Microsoft.AspNetCore.WebSockets.ConformanceTests (2)
AutobahnTests.cs (2)
60
await tester.DeployTestAndAddToSpec(ServerType.
Kestrel
, ssl: false, environment: "ManagedSockets", cancellationToken: cts.Token);
61
await tester.DeployTestAndAddToSpec(ServerType.
Kestrel
, ssl: true, environment: "ManagedSockets", cancellationToken: cts.Token);
ServerComparison.FunctionalTests (10)
HelloWorldTest.cs (3)
26
=> TestMatrix.ForServers(ServerType.IISExpress, ServerType.
Kestrel
, ServerType.Nginx, ServerType.HttpSys)
93
case ServerType.
Kestrel
:
115
=> TestMatrix.ForServers(ServerType.
Kestrel
, ServerType.HttpSys)
NtlmAuthenticationTest.cs (2)
24
=> TestMatrix.ForServers(ServerType.IISExpress, ServerType.HttpSys, ServerType.
Kestrel
)
70
if (variant.Server == ServerType.
Kestrel
)
ResponseCompressionTests.cs (3)
36
=> TestMatrix.ForServers(ServerType.IISExpress, ServerType.
Kestrel
, ServerType.Nginx, ServerType.HttpSys)
60
=> TestMatrix.ForServers(ServerType.IISExpress, ServerType.
Kestrel
, ServerType.HttpSys) // No pass-through compression for nginx
72
=> TestMatrix.ForServers(ServerType.IISExpress, ServerType.
Kestrel
, ServerType.Nginx, ServerType.HttpSys)
ResponseTests.cs (2)
28
=> TestMatrix.ForServers(/* ServerType.IISExpress, https://github.com/dotnet/aspnetcore/issues/6168, */ ServerType.
Kestrel
, ServerType.Nginx, ServerType.HttpSys)
54
=> TestMatrix.ForServers(ServerType.
Kestrel
, ServerType.HttpSys)