Reference InprocessTestSite in CreateDefaultBuilderApp and Disable Failing Tests (#6318)
This commit is contained in:
parent
afb92018f0
commit
910e5ad7e5
|
|
@ -6,6 +6,7 @@
|
|||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||
<UserSecretsId>aspnetcore-CreateDefaultBuilder-20170424224131</UserSecretsId>
|
||||
<InProcessTestSite>true</InProcessTestSite>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
|
|||
|
|
@ -151,7 +151,7 @@ namespace Microsoft.AspNetCore.Http.Tests
|
|||
Assert.NotEqual(readResult, readResult2);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
[Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/4621")]
|
||||
public async Task ReadCanBeCancelledViaProvidedCancellationToken()
|
||||
{
|
||||
var pipeReader = new StreamPipeReader(new HangingStream());
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ namespace E2ETests
|
|||
public class NtlmAuthenticationTests : LoggedTest
|
||||
{
|
||||
public static TestMatrix TestVariants
|
||||
=> TestMatrix.ForServers(ServerType.IISExpress, ServerType.HttpSys)
|
||||
=> TestMatrix.ForServers(/*ServerType.IISExpress https://github.com/aspnet/AspNetCore/issues/6170*/ ServerType.HttpSys)
|
||||
.WithTfms(Tfm.NetCoreApp30)
|
||||
.WithAllApplicationTypes()
|
||||
.WithAllArchitectures();
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ namespace E2ETests
|
|||
public class OpenIdConnectTests : LoggedTest
|
||||
{
|
||||
public static TestMatrix TestVariants
|
||||
=> TestMatrix.ForServers(ServerType.IISExpress, ServerType.Kestrel)
|
||||
=> TestMatrix.ForServers(/* ServerType.IISExpress https://github.com/aspnet/AspNetCore/issues/6170 */ ServerType.Kestrel)
|
||||
.WithTfms(Tfm.NetCoreApp30);
|
||||
|
||||
[ConditionalTheory]
|
||||
|
|
|
|||
|
|
@ -16,24 +16,14 @@ namespace E2ETests
|
|||
public class SmokeTests : LoggedTest
|
||||
{
|
||||
public static TestMatrix TestVariants
|
||||
=> TestMatrix.ForServers(ServerType.IISExpress, ServerType.Kestrel, ServerType.HttpSys)
|
||||
=> TestMatrix.ForServers(/* ServerType.IISExpress, https://github.com/aspnet/AspNetCore/issues/6170*/ ServerType.Kestrel, ServerType.HttpSys)
|
||||
.WithTfms(Tfm.NetCoreApp30)
|
||||
.WithAllApplicationTypes()
|
||||
.WithAllAncmVersions()
|
||||
.WithAllHostingModels();
|
||||
|
||||
// ANCM In-process cannot run on netcoreapp2.1 and below
|
||||
public static TestMatrix TestVariantsWithoutInproc
|
||||
=> TestMatrix.ForServers(ServerType.IISExpress, ServerType.Kestrel, ServerType.HttpSys)
|
||||
.WithTfms(Tfm.NetCoreApp30)
|
||||
.WithAllApplicationTypes()
|
||||
.WithAllAncmVersions()
|
||||
.WithHostingModels(HostingModel.OutOfProcess)
|
||||
.WithAllArchitectures();
|
||||
|
||||
[ConditionalTheory]
|
||||
[MemberData(nameof(TestVariants))]
|
||||
[MemberData(nameof(TestVariantsWithoutInproc))]
|
||||
public async Task Smoke_Tests(TestVariant variant)
|
||||
{
|
||||
var testName = $"SmokeTestSuite_{variant}";
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ namespace ServerComparison.FunctionalTests
|
|||
}
|
||||
|
||||
public static TestMatrix TestVariants
|
||||
=> TestMatrix.ForServers(ServerType.IISExpress, ServerType.Kestrel, /* ServerType.Nginx, https://github.com/aspnet/AspNetCore-Internal/issues/1525 */ ServerType.HttpSys)
|
||||
=> TestMatrix.ForServers(/* ServerType.IISExpress, https://github.com/aspnet/AspNetCore/issues/6168, */ ServerType.Kestrel, /* ServerType.Nginx, https://github.com/aspnet/AspNetCore-Internal/issues/1525 */ ServerType.HttpSys)
|
||||
.WithTfms(Tfm.NetCoreApp30)
|
||||
.WithAllAncmVersions()
|
||||
.WithAllHostingModels();
|
||||
|
|
|
|||
Loading…
Reference in New Issue