Browse Source

Unquarantine some IIS tests (#42932)

Hao Kung 3 years ago
parent
commit
e1f9fcc88f

+ 0 - 1
src/Servers/IIS/IIS/test/Common.FunctionalTests/MaxRequestBodySizeTests.cs

@@ -91,7 +91,6 @@ public class MaxRequestBodySizeTests : IISFunctionalTestBase
 
     [ConditionalFact]
     [RequiresNewHandler]
-    [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/41845")]
     public async Task SetIISLimitMaxRequestBodySizeE2EWorksWithIntMaxValue()
     {
         var deploymentParameters = Fixture.GetBaseDeploymentParameters();

+ 0 - 5
src/Servers/IIS/IIS/test/Common.LongTests/ShutdownTests.cs

@@ -34,7 +34,6 @@ public class ShutdownTests : IISFunctionalTestBase
     }
 
     [ConditionalFact]
-    [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/38995")]
     public async Task ShutdownTimeoutIsApplied()
     {
         var deploymentParameters = Fixture.GetBaseDeploymentParameters(Fixture.InProcessTestSite);
@@ -190,7 +189,6 @@ public class ShutdownTests : IISFunctionalTestBase
     }
 
     [ConditionalFact]
-    [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/38951")]
     public async Task GracefulShutdownWorksWithMultipleRequestsInFlight_InProcess()
     {
         // The goal of this test is to have multiple requests currently in progress
@@ -370,7 +368,6 @@ public class ShutdownTests : IISFunctionalTestBase
     }
 
     [ConditionalFact]
-    [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/40628")]
     public async Task ConfigurationChangeStopsInProcess()
     {
         var deploymentParameters = Fixture.GetBaseDeploymentParameters(HostingModel.InProcess);
@@ -405,7 +402,6 @@ public class ShutdownTests : IISFunctionalTestBase
     }
 
     [ConditionalFact]
-    [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/41207")]
     public async Task ConfigurationChangeCanBeIgnoredInProcess()
     {
         var deploymentParameters = Fixture.GetBaseDeploymentParameters(HostingModel.InProcess);
@@ -486,7 +482,6 @@ public class ShutdownTests : IISFunctionalTestBase
     }
 
     [ConditionalFact]
-    [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/38951")]
     public async Task ConfigurationTouchedStress_InProcess()
     {
         await ConfigurationTouchedStress(HostingModel.InProcess);

+ 0 - 1
src/Servers/IIS/IIS/test/Common.LongTests/StartupTests.cs

@@ -56,7 +56,6 @@ public class StartupTests : IISFunctionalTestBase
     [InlineData(".\\dotnet.exe", "something.dll", @"Could not find dotnet.exe at '.*?\\.\\dotnet.exe'")]
     [InlineData("dotnet.exe", "", @"Application arguments are empty.")]
     [InlineData("dotnet.zip", "", @"Process path 'dotnet.zip' doesn't have '.exe' extension.")]
-    [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/41856")]
     public async Task InvalidProcessPath_ExpectServerError(string path, string arguments, string subError)
     {
         var deploymentParameters = Fixture.GetBaseDeploymentParameters();

+ 0 - 3
src/Servers/IIS/IIS/test/IIS.ShadowCopy.Tests/ShadowCopyTests.cs

@@ -74,7 +74,6 @@ public class ShadowCopyTests : IISFunctionalTestBase
     }
 
     [ConditionalFact]
-    [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/40628")]
     public async Task ShadowCopyRelativeOutsideDirectoryWorks()
     {
         using var directory = TempDirectory.Create();
@@ -169,7 +168,6 @@ public class ShadowCopyTests : IISFunctionalTestBase
     }
 
     [ConditionalFact]
-    [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/40619")]
     public async Task ShadowCopyE2EWorksWithOldFoldersPresent()
     {
         using var directory = TempDirectory.Create();
@@ -254,7 +252,6 @@ public class ShadowCopyTests : IISFunctionalTestBase
     }
 
     [ConditionalFact]
-    [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/40059")]
     public async Task ShadowCopyIgnoresItsOwnDirectoryWithRelativePathSegmentWhenCopying()
     {
         using var directory = TempDirectory.Create();

+ 0 - 1
src/Servers/IIS/IIS/test/IIS.Tests/ClientDisconnectTests.cs

@@ -225,7 +225,6 @@ public class ClientDisconnectTests : StrictTestServerTests
     }
 
     [ConditionalFact]
-    [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/41812")]
     public async Task ReaderThrowsResetExceptionOnInvalidBody()
     {
         var requestStartedCompletionSource = CreateTaskCompletionSource();