Skip to content

Commit 3f7b205

Browse files
Unquarantine passed and fixed tests (#29438)
1 parent 4423200 commit 3f7b205

File tree

18 files changed

+1
-23
lines changed

18 files changed

+1
-23
lines changed

src/Components/test/E2ETest/ServerExecutionTests/ServerEventTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ public ServerEventTest(BrowserFixture browserFixture, ToggleExecutionModeServerF
1919
}
2020

2121
[Fact]
22-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/24688")]
2322
public override void EventDuringBatchRendering_CanTriggerDOMEvents()
2423
{
2524
base.EventDuringBatchRendering_CanTriggerDOMEvents();

src/Components/test/E2ETest/ServerExecutionTests/ServerGlobalizationTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ protected override void InitializeAsyncCore()
3535
}
3636

3737
[Theory]
38-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27556")]
38+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27155")]
3939
[InlineData("en-US")]
4040
[InlineData("fr-FR")]
4141
public override void CanSetCultureAndParseCultureSensitiveNumbersAndDates(string culture)

src/Components/test/E2ETest/Tests/BinaryHttpClientTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ protected override void InitializeAsyncCore()
4343
}
4444

4545
[Fact]
46-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23366")]
4746
public void CanSendAndReceiveBytes()
4847
{
4948
IssueRequest("/subdir/api/data");

src/Components/test/E2ETest/Tests/ComponentRenderingTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ public void BasicTestAppCanBeServed()
4242
}
4343

4444
[Fact]
45-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23366")]
4645
public void CanRenderTextOnlyComponent()
4746
{
4847
var appElement = Browser.MountTestComponent<TextOnlyComponent>();

src/Components/test/E2ETest/Tests/EventBubblingTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ public void BubblingStandardEvent_FiredOnElementWithHandler()
4848
}
4949

5050
[Fact]
51-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23366")]
5251
public void BubblingStandardEvent_FiredOnElementWithoutHandler()
5352
{
5453
Browser.Exists(By.Id("button-without-onclick")).Click();

src/Components/test/E2ETest/Tests/EventTest.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@ public void PreventDefault_AppliesToFormOnSubmitHandlers()
177177
}
178178

179179
[Fact]
180-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/25929")]
181180
public void PreventDefault_DotNotApplyByDefault()
182181
{
183182
var appElement = Browser.MountTestComponent<EventPreventDefaultComponent>();
@@ -204,7 +203,6 @@ public void InputEvent_RespondsOnKeystrokes()
204203
}
205204

206205
[Fact]
207-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23757")]
208206
public void InputEvent_RespondsOnKeystrokes_EvenIfUpdatesAreLaggy()
209207
{
210208
// This test doesn't mean much on WebAssembly - it just shows that even if the CPU is locked

src/Components/test/E2ETest/Tests/FormsTest.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@ public void InputTextAreaInteractsWithEditContext()
195195
}
196196

197197
[Fact]
198-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27398")]
199198
public void InputDateInteractsWithEditContext_NonNullableDateTime()
200199
{
201200
var appElement = MountTypicalValidationComponent();
@@ -304,7 +303,6 @@ public void InputCheckboxInteractsWithEditContext()
304303
}
305304

306305
[Fact]
307-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/24850")]
308306
public void InputRadioGroupWithoutNameInteractsWithEditContext()
309307
{
310308
var appElement = MountTypicalValidationComponent();
@@ -344,7 +342,6 @@ IWebElement FindBestAirlineInput()
344342
}
345343

346344
[Fact]
347-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/24850")]
348345
public void InputRadioGroupsWithNamesNestedInteractWithEditContext()
349346
{
350347
var appElement = MountTypicalValidationComponent();

src/Components/test/E2ETest/Tests/InputFileTest.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ public void CanUploadSingleSmallFile()
6666
}
6767

6868
[Fact]
69-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/26331")]
7069
public void CanUploadSingleLargeFile()
7170
{
7271
// Create a large text file
@@ -131,7 +130,6 @@ public void CanUploadMultipleFiles()
131130
}
132131

133132
[Fact]
134-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/25929")]
135133
public void CanUploadAndConvertImageFile()
136134
{
137135
var sourceImageId = "image-source";

src/Components/test/E2ETest/Tests/InteropTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ protected override void InitializeAsyncCore()
3333
}
3434

3535
[Fact]
36-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/26288")]
3736
public void CanInvokeDotNetMethods()
3837
{
3938
// Arrange

src/Components/test/E2ETest/Tests/PerformanceTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ public void HasTitle()
3636
}
3737

3838
[Fact]
39-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23366")]
4039
public void BenchmarksRunWithoutError()
4140
{
4241
// In CI, we only verify that the benchmarks run without throwing any

src/Components/test/E2ETest/Tests/VirtualizationTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@ public void CancelsOutdatedRefreshes_Async()
195195
}
196196

197197
[Fact]
198-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/24922")]
199198
public void CanUseViewportAsContainer()
200199
{
201200
Browser.MountTestComponent<VirtualizationComponent>();

src/Components/test/E2ETest/Tests/WebAssemblyLazyLoadTest.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ protected override void InitializeAsyncCore()
3636
}
3737

3838
[Fact]
39-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23856")]
4039
public void CanLazyLoadOnRouteChange()
4140
{
4241
// Navigate to a page without any lazy-loaded dependencies
@@ -61,7 +60,6 @@ public void CanLazyLoadOnRouteChange()
6160
}
6261

6362
[Fact]
64-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23856")]
6563
public void CanLazyLoadOnFirstVisit()
6664
{
6765
// Navigate to a page with lazy loaded assemblies for the first time

src/Hosting/test/FunctionalTests/ShutdownTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ public class ShutdownTests : LoggedTest
2626
public ShutdownTests(ITestOutputHelper output) : base(output) { }
2727

2828
[ConditionalFact]
29-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23610")]
3029
[OSSkipCondition(OperatingSystems.Windows)]
3130
[OSSkipCondition(OperatingSystems.MacOSX)]
3231
public async Task ShutdownTestRun()

src/Hosting/test/FunctionalTests/WebHostBuilderTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ public WebHostBuilderTests(ITestOutputHelper output) : base(output) { }
2222

2323
[ConditionalTheory]
2424
[MemberData(nameof(TestVariants))]
25-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27557")]
2625
public async Task InjectedStartup_DefaultApplicationNameIsEntryAssembly(TestVariant variant)
2726
{
2827
using (StartLog(out var loggerFactory))

src/Mvc/test/Mvc.FunctionalTests/HtmlGenerationTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ public Task HtmlGenerationWebSite_GeneratesExpectedResultsNotReadyForHelix(strin
143143
=> HtmlGenerationWebSite_GeneratesExpectedResults(action, antiforgeryPath);
144144

145145
[Fact]
146-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/25206")]
147146
public async Task HtmlGenerationWebSite_GeneratesExpectedResults_WithImageData()
148147
{
149148
await HtmlGenerationWebSite_GeneratesExpectedResults("Image", antiforgeryPath: null);

src/Razor/Microsoft.NET.Sdk.Razor/test/ConcatenateFilesTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,6 @@ public void BundlesScopedCssFiles_DoesNotOverrideBundleForSameContents()
324324
}
325325

326326
[Fact]
327-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/25623")]
328327
public async System.Threading.Tasks.Task BundlesScopedCssFiles_UpdatesBundleWhenContentsChange()
329328
{
330329
// Arrange

src/Servers/IIS/IIS/test/Common.FunctionalTests/Http2Tests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ public Http2Tests(IISTestSiteFixture fixture)
3838

3939
public IISTestSiteFixture Fixture { get; }
4040

41-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/28265")]
4241
[ConditionalTheory]
4342
[InlineData("GET")]
4443
[InlineData("HEAD")]

src/Servers/IIS/IIS/test/IIS.Tests/ClientDisconnectTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,6 @@ public async Task WriterThrowsCanceledException()
179179

180180
[ConditionalFact]
181181
[Repeat]
182-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/26330")]
183182
public async Task ReaderThrowsCanceledException()
184183
{
185184
var readIsAsyncCompletionSource = CreateTaskCompletionSource();

0 commit comments

Comments
 (0)