Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ namespace Microsoft.AspNetCore.Server.HttpSys.Listener;
public class RequestBodyTests
{
[ConditionalFact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27399")]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this test an un-quarantine candidate❔ There's no record of a fix.

public async Task RequestBody_SyncReadDisabledByDefault_WorksWhenEnabled()
{
string address;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,12 +156,10 @@ public async Task PassesThroughCompressionInProcess()
}

[ConditionalFact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/26294")]
[SkipNonHelix("This test takes 5 minutes to run")]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Running successfully 💯% of the time isn't sufficient reason to un-quarantine. Does the following apply (from the doc)❔

Find the set of tests that were supposedly fixed at least 30 days ago.

public async Task ReadAndWriteSynchronously()
{
var content = new StringContent(new string('a', 100000));
for (int i = 0; i < 500; i++)
for (int i = 0; i < 50; i++)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why fewer iterations?

{
var response = await _fixture.Client.PostAsync("ReadAndWriteSynchronously", content);
var responseText = await response.Content.ReadAsStringAsync();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ public async Task ReaderThrowsCanceledException()
}

[ConditionalFact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27400")]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This issue was also never marked as test-fixed

public async Task ReaderThrowsResetExceptionOnInvalidBody()
{
var requestStartedCompletionSource = CreateTaskCompletionSource();
Expand Down