Unquarantine tests (#21895)
* Unquarantine tests * Update ShutdownTests.cs * Update ShutdownTests.cs * Update HubConnectionHandlerTests.cs * Update src/SignalR/server/SignalR/test/HubConnectionHandlerTests.cs Co-authored-by: Brennan <brecon@microsoft.com> * Update HubConnectionTests.cs Co-authored-by: Sébastien Ros <sebastienros@gmail.com> Co-authored-by: Brennan <brecon@microsoft.com>
This commit is contained in:
parent
dad96ff373
commit
41eb22a0ac
|
|
@ -433,7 +433,6 @@ namespace Microsoft.AspNetCore.TestHost
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/20164")]
|
|
||||||
public async Task ClientStreaming_ResponseCompletesWithoutResponseBodyWrite()
|
public async Task ClientStreaming_ResponseCompletesWithoutResponseBodyWrite()
|
||||||
{
|
{
|
||||||
// Arrange
|
// Arrange
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,6 @@ namespace Microsoft.AspNetCore.Identity.Test
|
||||||
|
|
||||||
[Theory]
|
[Theory]
|
||||||
[MemberData(nameof(ScriptWithIntegrityData))]
|
[MemberData(nameof(ScriptWithIntegrityData))]
|
||||||
[QuarantinedTest]
|
|
||||||
public async Task IdentityUI_ScriptTags_SubresourceIntegrityCheck(ScriptTag scriptTag)
|
public async Task IdentityUI_ScriptTags_SubresourceIntegrityCheck(ScriptTag scriptTag)
|
||||||
{
|
{
|
||||||
var integrity = await GetShaIntegrity(scriptTag);
|
var integrity = await GetShaIntegrity(scriptTag);
|
||||||
|
|
@ -80,7 +79,6 @@ namespace Microsoft.AspNetCore.Identity.Test
|
||||||
|
|
||||||
[Theory]
|
[Theory]
|
||||||
[MemberData(nameof(ScriptWithFallbackSrcData))]
|
[MemberData(nameof(ScriptWithFallbackSrcData))]
|
||||||
[QuarantinedTest("https://github.com/dotnet/aspnetcore-internal/issues/2267")]
|
|
||||||
public async Task IdentityUI_ScriptTags_FallbackSourceContent_Matches_CDNContent(ScriptTag scriptTag)
|
public async Task IdentityUI_ScriptTags_FallbackSourceContent_Matches_CDNContent(ScriptTag scriptTag)
|
||||||
{
|
{
|
||||||
var wwwrootDir = Path.Combine(GetProjectBasePath(), "wwwroot", scriptTag.Version);
|
var wwwrootDir = Path.Combine(GetProjectBasePath(), "wwwroot", scriptTag.Version);
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,6 @@ namespace Microsoft.AspNetCore.Authentication.DataHandler
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
[QuarantinedTest]
|
|
||||||
public void UnprotectWithDifferentPurposeFails()
|
public void UnprotectWithDifferentPurposeFails()
|
||||||
{
|
{
|
||||||
var provider = ServiceProvider.GetRequiredService<IDataProtectionProvider>();
|
var provider = ServiceProvider.GetRequiredService<IDataProtectionProvider>();
|
||||||
|
|
|
||||||
|
|
@ -100,7 +100,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests.Http2
|
||||||
}
|
}
|
||||||
|
|
||||||
[ConditionalFact]
|
[ConditionalFact]
|
||||||
[QuarantinedTest]
|
[QuarantinedTest] // Test still quarantined due to Sockets.Functional tests.
|
||||||
public async Task GracefulTurnsAbortiveIfRequestsDoNotFinish()
|
public async Task GracefulTurnsAbortiveIfRequestsDoNotFinish()
|
||||||
{
|
{
|
||||||
var requestStarted = new TaskCompletionSource<object>(TaskCreationOptions.RunContinuationsAsynchronously);
|
var requestStarted = new TaskCompletionSource<object>(TaskCreationOptions.RunContinuationsAsynchronously);
|
||||||
|
|
|
||||||
|
|
@ -108,7 +108,6 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
[Theory]
|
[Theory]
|
||||||
[QuarantinedTest("https://github.com/dotnet/aspnetcore-internal/issues/2489")]
|
|
||||||
[MemberData(nameof(LargeUploadData))]
|
[MemberData(nameof(LargeUploadData))]
|
||||||
public async Task LargeUpload(long? maxRequestBufferSize, bool connectionAdapter, bool expectPause)
|
public async Task LargeUpload(long? maxRequestBufferSize, bool connectionAdapter, bool expectPause)
|
||||||
{
|
{
|
||||||
|
|
@ -203,7 +202,6 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
[QuarantinedTest]
|
|
||||||
public async Task ServerShutsDownGracefullyWhenMaxRequestBufferSizeExceeded()
|
public async Task ServerShutsDownGracefullyWhenMaxRequestBufferSizeExceeded()
|
||||||
{
|
{
|
||||||
// Parameters
|
// Parameters
|
||||||
|
|
|
||||||
|
|
@ -500,7 +500,6 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
|
||||||
|
|
||||||
[Theory]
|
[Theory]
|
||||||
[MemberData(nameof(ConnectionMiddlewareData))]
|
[MemberData(nameof(ConnectionMiddlewareData))]
|
||||||
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/20163")]
|
|
||||||
public async Task ConnectionClosedTokenFiresOnClientFIN(ListenOptions listenOptions)
|
public async Task ConnectionClosedTokenFiresOnClientFIN(ListenOptions listenOptions)
|
||||||
{
|
{
|
||||||
var testContext = new TestServiceContext(LoggerFactory);
|
var testContext = new TestServiceContext(LoggerFactory);
|
||||||
|
|
|
||||||
|
|
@ -812,7 +812,6 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
[CollectDump]
|
[CollectDump]
|
||||||
[QuarantinedTest]
|
|
||||||
public async Task ConnectionNotClosedWhenClientSatisfiesMinimumDataRateGivenLargeResponseHeaders()
|
public async Task ConnectionNotClosedWhenClientSatisfiesMinimumDataRateGivenLargeResponseHeaders()
|
||||||
{
|
{
|
||||||
var headerSize = 1024 * 1024; // 1 MB for each header value
|
var headerSize = 1024 * 1024; // 1 MB for each header value
|
||||||
|
|
|
||||||
|
|
@ -1336,7 +1336,6 @@ namespace Microsoft.AspNetCore.SignalR.Client.FunctionalTests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Theory]
|
[Theory]
|
||||||
[QuarantinedTest]
|
|
||||||
[MemberData(nameof(HubProtocolsList))]
|
[MemberData(nameof(HubProtocolsList))]
|
||||||
public async Task ServerLogsErrorIfClientInvokeCannotBeSerialized(string protocolName)
|
public async Task ServerLogsErrorIfClientInvokeCannotBeSerialized(string protocolName)
|
||||||
{
|
{
|
||||||
|
|
@ -1384,7 +1383,6 @@ namespace Microsoft.AspNetCore.SignalR.Client.FunctionalTests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Theory]
|
[Theory]
|
||||||
[QuarantinedTest]
|
|
||||||
[MemberData(nameof(HubProtocolsList))]
|
[MemberData(nameof(HubProtocolsList))]
|
||||||
public async Task ServerLogsErrorIfReturnValueCannotBeSerialized(string protocolName)
|
public async Task ServerLogsErrorIfReturnValueCannotBeSerialized(string protocolName)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2782,7 +2782,6 @@ namespace Microsoft.AspNetCore.SignalR.Tests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
[QuarantinedTest]
|
|
||||||
public async Task ReceivingMessagesPreventsConnectionTimeoutFromOccuring()
|
public async Task ReceivingMessagesPreventsConnectionTimeoutFromOccuring()
|
||||||
{
|
{
|
||||||
using (StartVerifiableLog())
|
using (StartVerifiableLog())
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ namespace Microsoft.Extensions.Logging.Testing.Tests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
|
// Keep this test in quarantine, it verifies that quarantined test logs are preserved
|
||||||
[QuarantinedTest]
|
[QuarantinedTest]
|
||||||
public void FunctionalLogs_LogsPreservedFromQuarantinedTest()
|
public void FunctionalLogs_LogsPreservedFromQuarantinedTest()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -420,7 +420,6 @@ namespace Microsoft.DotNet.OpenApi.Add.Tests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
[QuarantinedTest]
|
|
||||||
public async Task OpenAPi_Add_URL_InvalidUrl()
|
public async Task OpenAPi_Add_URL_InvalidUrl()
|
||||||
{
|
{
|
||||||
var project = CreateBasicProject(withOpenApi: false);
|
var project = CreateBasicProject(withOpenApi: false);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue