Skip to content

Commit 25a869a

Browse files
authored
Unquarantine (most) HTTP3 tests (#37756)
1 parent d66da1f commit 25a869a

File tree

7 files changed

+4
-7
lines changed

7 files changed

+4
-7
lines changed

src/Servers/Kestrel/Transport.Quic/test/QuicConnectionContextTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests
1515
{
16-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
1716
public class QuicConnectionContextTests : TestApplicationErrorLoggerLoggedTest
1817
{
1918
private static readonly byte[] TestData = Encoding.UTF8.GetBytes("Hello world");

src/Servers/Kestrel/Transport.Quic/test/QuicConnectionListenerTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests
1616
{
17-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
1817
public class QuicConnectionListenerTests : TestApplicationErrorLoggerLoggedTest
1918
{
2019
private static readonly byte[] TestData = Encoding.UTF8.GetBytes("Hello world");

src/Servers/Kestrel/Transport.Quic/test/QuicStreamContextTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests
2121
{
22-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
2322
public class QuicStreamContextTests : TestApplicationErrorLoggerLoggedTest
2423
{
2524
private static readonly byte[] TestData = Encoding.UTF8.GetBytes("Hello world");

src/Servers/Kestrel/Transport.Quic/test/QuicTransportFactoryTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests
1818
{
19-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
2019
public class QuicTransportFactoryTests : TestApplicationErrorLoggerLoggedTest
2120
{
2221
[ConditionalFact]

src/Servers/Kestrel/Transport.Quic/test/WebHostTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests
1515
{
16-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
1716
public class WebHostTests : LoggedTest
1817
{
1918
[ConditionalFact]

src/Servers/Kestrel/test/Interop.FunctionalTests/Http3/Http3RequestTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222

2323
namespace Interop.FunctionalTests.Http3
2424
{
25-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
2625
public class Http3RequestTests : LoggedTest
2726
{
2827
private class StreamingHttpContent : HttpContent
@@ -394,6 +393,7 @@ public async Task POST_ClientCancellationUpload_RequestAbortRaised(HttpProtocols
394393
[MsQuicSupported]
395394
[InlineData(HttpProtocols.Http3)]
396395
[InlineData(HttpProtocols.Http2)]
396+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
397397
public async Task POST_ServerAbort_ClientReceivesAbort(HttpProtocols protocol)
398398
{
399399
// Arrange
@@ -1472,6 +1472,7 @@ public async Task GET_ConnectionInfo_PropertiesSet()
14721472
[MsQuicSupported]
14731473
[InlineData(HttpProtocols.Http3)]
14741474
[InlineData(HttpProtocols.Http2)]
1475+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
14751476
public async Task GET_GracefulServerShutdown_AbortRequestsAfterHostTimeout(HttpProtocols protocol)
14761477
{
14771478
// Arrange

src/Servers/Kestrel/test/Interop.FunctionalTests/Http3/Http3TlsTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
namespace Interop.FunctionalTests.Http3
1717
{
18-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
1918
public class Http3TlsTests : LoggedTest
2019
{
2120
[ConditionalFact]
@@ -156,6 +155,7 @@ public async Task ClientCertificate_NoOrDelayed_Available_Ignored(ClientCertific
156155
[InlineData(ClientCertificateMode.AllowCertificate, true)]
157156
[MsQuicSupported]
158157
[OSSkipCondition(OperatingSystems.MacOSX | OperatingSystems.Linux, SkipReason = "https://github.com/dotnet/aspnetcore/issues/35800")]
158+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
159159
public async Task ClientCertificate_AllowOrRequire_Available_Invalid_Refused(ClientCertificateMode mode, bool serverAllowInvalid)
160160
{
161161
var builder = CreateHostBuilder(async context =>
@@ -212,6 +212,7 @@ public async Task ClientCertificate_AllowOrRequire_Available_Invalid_Refused(Cli
212212
[ConditionalFact]
213213
[MsQuicSupported]
214214
[OSSkipCondition(OperatingSystems.MacOSX | OperatingSystems.Linux, SkipReason = "https://github.com/dotnet/aspnetcore/issues/35800")]
215+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
215216
public async Task ClientCertificate_Allow_NotAvailable_Optional()
216217
{
217218
var builder = CreateHostBuilder(async context =>

0 commit comments

Comments
 (0)