Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Bunting <6431421+dougbu@users.noreply.github.com>2022-06-04 01:57:07 +0300
committerDoug Bunting <6431421+dougbu@users.noreply.github.com>2022-06-04 01:57:07 +0300
commitfeb022126053630d3aaced53e60e74ce736a4823 (patch)
tree9578181b1e4dafd0e87f4a53048738f85344f6d5
parent5cef883a1ac64622fe801cfffd51f2a631f81378 (diff)
- duplicates part of #41866 - see <https://github.com/dotnet/aspnetcore/pull/41866/commits/6486b5b3f29a5e9aacd5c57af4fa2b702c0a5694>
-rw-r--r--src/Servers/Kestrel/Transport.Quic/test/QuicConnectionListenerTests.cs1
-rw-r--r--src/Servers/Kestrel/test/Interop.FunctionalTests/Http3/Http3TlsTests.cs3
2 files changed, 3 insertions, 1 deletions
diff --git a/src/Servers/Kestrel/Transport.Quic/test/QuicConnectionListenerTests.cs b/src/Servers/Kestrel/Transport.Quic/test/QuicConnectionListenerTests.cs
index 9caf11eafc..71603ee359 100644
--- a/src/Servers/Kestrel/Transport.Quic/test/QuicConnectionListenerTests.cs
+++ b/src/Servers/Kestrel/Transport.Quic/test/QuicConnectionListenerTests.cs
@@ -104,6 +104,7 @@ public class QuicConnectionListenerTests : TestApplicationErrorLoggerLoggedTest
// https://github.com/dotnet/runtime/issues/57308, RemoteCertificateValidationCallback should allow us to accept a null cert,
// but it doesn't right now.
[OSSkipCondition(OperatingSystems.Linux | OperatingSystems.MacOSX)]
+ [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/41894")]
public async Task ClientCertificate_Required_NotSent_ConnectionAborted()
{
await using var connectionListener = await QuicTestHelpers.CreateConnectionListenerFactory(LoggerFactory, clientCertificateRequired: true);
diff --git a/src/Servers/Kestrel/test/Interop.FunctionalTests/Http3/Http3TlsTests.cs b/src/Servers/Kestrel/test/Interop.FunctionalTests/Http3/Http3TlsTests.cs
index 782f647345..e06b938282 100644
--- a/src/Servers/Kestrel/test/Interop.FunctionalTests/Http3/Http3TlsTests.cs
+++ b/src/Servers/Kestrel/test/Interop.FunctionalTests/Http3/Http3TlsTests.cs
@@ -215,6 +215,7 @@ public class Http3TlsTests : LoggedTest
[ConditionalFact]
[MsQuicSupported]
[OSSkipCondition(OperatingSystems.MacOSX | OperatingSystems.Linux, SkipReason = "https://github.com/dotnet/aspnetcore/issues/35800")]
+ [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/41894")]
public async Task ClientCertificate_Allow_NotAvailable_Optional()
{
var builder = CreateHostBuilder(async context =>
@@ -253,7 +254,7 @@ public class Http3TlsTests : LoggedTest
[ConditionalFact]
[MsQuicSupported]
- public async Task OnAuthentice_Available_Throws()
+ public async Task OnAuthenticate_Available_Throws()
{
var builder = CreateHostBuilder(async context =>
{