@@ -393,7 +393,7 @@ static async Task<HttpResponseMessage> SendRequestAsync(HttpProtocols protocol,
393
393
394
394
[ ConditionalFact ]
395
395
[ MsQuicSupported ]
396
- [ SkipOnCI ( "https://github.com/dotnet/aspnetcore/issues/50833" ) ]
396
+ [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/50833" ) ]
397
397
public async Task POST_ServerCompletesWithoutReadingRequestBody_ClientGetsResponse ( )
398
398
{
399
399
// Arrange
@@ -430,6 +430,8 @@ public async Task POST_ServerCompletesWithoutReadingRequestBody_ClientGetsRespon
430
430
431
431
var response = await responseTask . DefaultTimeout ( ) ;
432
432
433
+ requestContent . CompleteStream ( ) ;
434
+
433
435
// Assert
434
436
response . EnsureSuccessStatusCode ( ) ;
435
437
Assert . Equal ( HttpVersion . Version30 , response . Version ) ;
@@ -698,7 +700,7 @@ public async Task GET_ServerAbort_ClientReceivesAbort(HttpProtocols protocol)
698
700
699
701
[ ConditionalFact ]
700
702
[ MsQuicSupported ]
701
- [ SkipOnCI ( "https://github.com/dotnet/aspnetcore/issues/50833" ) ]
703
+ [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/50833" ) ]
702
704
public async Task POST_Expect100Continue_Get100Continue ( )
703
705
{
704
706
// Arrange
@@ -726,7 +728,7 @@ public async Task POST_Expect100Continue_Get100Continue()
726
728
727
729
// Act
728
730
using var cts = new CancellationTokenSource ( ) ;
729
- cts . CancelAfter ( TimeSpan . FromSeconds ( 1 ) ) ;
731
+ cts . CancelAfter ( TimeSpan . FromSeconds ( 30 ) ) ;
730
732
var responseTask = client . SendAsync ( request , cts . Token ) ;
731
733
732
734
var response = await responseTask . DefaultTimeout ( ) ;
@@ -958,7 +960,7 @@ await ServerRetryHelper.BindPortsWithRetry(async port =>
958
960
[ ConditionalTheory ]
959
961
[ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/38008" ) ]
960
962
[ MsQuicSupported ]
961
- // [InlineData(HttpProtocols.Http3)] Skip: see https://github.com/dotnet/aspnetcore/issues/50833
963
+ [ InlineData ( HttpProtocols . Http3 ) ]
962
964
[ InlineData ( HttpProtocols . Http2 ) ]
963
965
public async Task POST_ClientCancellationBidirectional_RequestAbortRaised ( HttpProtocols protocol )
964
966
{
@@ -1059,7 +1061,8 @@ public async Task POST_ClientCancellationBidirectional_RequestAbortRaised(HttpPr
1059
1061
// Verify HTTP/2 and HTTP/3 match behavior
1060
1062
[ ConditionalTheory ]
1061
1063
[ MsQuicSupported ]
1062
- //[InlineData(HttpProtocols.Http3)] Skip: see https://github.com/dotnet/aspnetcore/issues/50833
1064
+ [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/50833" ) ]
1065
+ [ InlineData ( HttpProtocols . Http3 ) ]
1063
1066
[ InlineData ( HttpProtocols . Http2 ) ]
1064
1067
public async Task POST_Bidirectional_LargeData_Cancellation_Error ( HttpProtocols protocol )
1065
1068
{
0 commit comments