Unquarantine (most) HTTP3 tests (#37756)

This commit is contained in:
William Godbe 2021-10-23 12:14:26 -07:00 коммит произвёл GitHub
Родитель d66da1f560
Коммит 25a869a394
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
7 изменённых файлов: 4 добавлений и 7 удалений

Просмотреть файл

@ -13,7 +13,6 @@ using Xunit;
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests
{
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public class QuicConnectionContextTests : TestApplicationErrorLoggerLoggedTest
{
private static readonly byte[] TestData = Encoding.UTF8.GetBytes("Hello world");

Просмотреть файл

@ -14,7 +14,6 @@ using Xunit;
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests
{
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public class QuicConnectionListenerTests : TestApplicationErrorLoggerLoggedTest
{
private static readonly byte[] TestData = Encoding.UTF8.GetBytes("Hello world");

Просмотреть файл

@ -19,7 +19,6 @@ using Xunit;
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests
{
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public class QuicStreamContextTests : TestApplicationErrorLoggerLoggedTest
{
private static readonly byte[] TestData = Encoding.UTF8.GetBytes("Hello world");

Просмотреть файл

@ -16,7 +16,6 @@ using Xunit;
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests
{
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public class QuicTransportFactoryTests : TestApplicationErrorLoggerLoggedTest
{
[ConditionalFact]

Просмотреть файл

@ -13,7 +13,6 @@ using Xunit;
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests
{
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public class WebHostTests : LoggedTest
{
[ConditionalFact]

Просмотреть файл

@ -22,7 +22,6 @@ using Xunit;
namespace Interop.FunctionalTests.Http3
{
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public class Http3RequestTests : LoggedTest
{
private class StreamingHttpContent : HttpContent
@ -394,6 +393,7 @@ namespace Interop.FunctionalTests.Http3
[MsQuicSupported]
[InlineData(HttpProtocols.Http3)]
[InlineData(HttpProtocols.Http2)]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public async Task POST_ServerAbort_ClientReceivesAbort(HttpProtocols protocol)
{
// Arrange
@ -1472,6 +1472,7 @@ namespace Interop.FunctionalTests.Http3
[MsQuicSupported]
[InlineData(HttpProtocols.Http3)]
[InlineData(HttpProtocols.Http2)]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public async Task GET_GracefulServerShutdown_AbortRequestsAfterHostTimeout(HttpProtocols protocol)
{
// Arrange

Просмотреть файл

@ -15,7 +15,6 @@ using Xunit;
namespace Interop.FunctionalTests.Http3
{
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public class Http3TlsTests : LoggedTest
{
[ConditionalFact]
@ -156,6 +155,7 @@ namespace Interop.FunctionalTests.Http3
[InlineData(ClientCertificateMode.AllowCertificate, true)]
[MsQuicSupported]
[OSSkipCondition(OperatingSystems.MacOSX | OperatingSystems.Linux, SkipReason = "https://github.com/dotnet/aspnetcore/issues/35800")]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public async Task ClientCertificate_AllowOrRequire_Available_Invalid_Refused(ClientCertificateMode mode, bool serverAllowInvalid)
{
var builder = CreateHostBuilder(async context =>
@ -212,6 +212,7 @@ namespace Interop.FunctionalTests.Http3
[ConditionalFact]
[MsQuicSupported]
[OSSkipCondition(OperatingSystems.MacOSX | OperatingSystems.Linux, SkipReason = "https://github.com/dotnet/aspnetcore/issues/35800")]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public async Task ClientCertificate_Allow_NotAvailable_Optional()
{
var builder = CreateHostBuilder(async context =>