Skip to content

Commit d3674ec

Browse files
committed
!temporary! Remove [QuarantinedTest] attributes
- might as well run _all_ template tests in a single pipeline
1 parent 77adbbb commit d3674ec

File tree

5 files changed

+0
-13
lines changed

5 files changed

+0
-13
lines changed

src/ProjectTemplates/BlazorTemplates.Tests/BlazorServerTemplateTest.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ public BlazorServerTemplateTest(ProjectFactoryFixture projectFactory)
2727

2828
[Theory]
2929
[InlineData(BrowserKind.Chromium)]
30-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/30761")]
3130
public async Task BlazorServerTemplateWorks_NoAuth(BrowserKind browserKind)
3231
{
3332
var project = await CreateBuildPublishAsync("blazorservernoauth" + browserKind);
@@ -83,7 +82,6 @@ await BrowserManager.GetBrowserInstance(browserKind, BrowserContextInfo) :
8382

8483
[Theory]
8584
[MemberData(nameof(BlazorServerTemplateWorks_IndividualAuthData))]
86-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/30882")]
8785
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/30825", Queues = "All.OSX")]
8886
public async Task BlazorServerTemplateWorks_IndividualAuth(BrowserKind browserKind, bool useLocalDB)
8987
{
@@ -177,7 +175,6 @@ private async Task TestBasicNavigation(Project project, IPage page)
177175
[InlineData("SingleOrg", null)]
178176
[InlineData("SingleOrg", new string[] { "--called-api-url \"https://graph.microsoft.com\"", "--called-api-scopes user.readwrite" })]
179177
[InlineData("SingleOrg", new string[] { "--calls-graph" })]
180-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/30882")]
181178
public Task BlazorServerTemplate_IdentityWeb_BuildAndPublish(string auth, string[] args)
182179
=> CreateBuildPublishAsync("blazorserveridweb" + Guid.NewGuid().ToString().Substring(0, 10).ToLowerInvariant(), auth, args);
183180

src/ProjectTemplates/BlazorTemplates.Tests/BlazorWasmTemplateTest.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ public BlazorWasmTemplateTest(ProjectFactoryFixture projectFactory)
3232

3333
[Theory]
3434
[InlineData(BrowserKind.Chromium)]
35-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/30882")]
3635
public async Task BlazorWasmStandaloneTemplate_Works(BrowserKind browserKind)
3736
{
3837
var project = await CreateBuildPublishAsync("blazorstandalone" + browserKind);
@@ -69,7 +68,6 @@ private async Task<IPage> NavigateToPage(IBrowserContext browser, string listeni
6968

7069
[Theory]
7170
[InlineData(BrowserKind.Chromium)]
72-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/30882")]
7371
public async Task BlazorWasmHostedTemplate_Works(BrowserKind browserKind)
7472
{
7573
var project = await CreateBuildPublishAsync("blazorhosted" + BrowserKind.Chromium, args: new[] { "--hosted" }, serverProject: true);
@@ -118,7 +116,6 @@ private static async Task AssertCompressionFormat(AspNetProcess aspNetProcess, s
118116

119117
[Theory]
120118
[InlineData(BrowserKind.Chromium)]
121-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/30882")]
122119
public async Task BlazorWasmStandalonePwaTemplate_Works(BrowserKind browserKind)
123120
{
124121
var project = await CreateBuildPublishAsync("blazorstandalonepwa", args: new[] { "--pwa" });
@@ -154,7 +151,6 @@ public async Task BlazorWasmStandalonePwaTemplate_Works(BrowserKind browserKind)
154151

155152
[Theory]
156153
[InlineData(BrowserKind.Chromium)]
157-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/30882")]
158154
public async Task BlazorWasmHostedPwaTemplate_Works(BrowserKind browserKind)
159155
{
160156
var project = await CreateBuildPublishAsync("blazorhostedpwa", args: new[] { "--hosted", "--pwa" }, serverProject: true);
@@ -227,15 +223,13 @@ private void ValidatePublishedServiceWorker(Project project)
227223
[InlineData(BrowserKind.Chromium)]
228224
// LocalDB doesn't work on non Windows platforms
229225
[OSSkipCondition(OperatingSystems.Linux | OperatingSystems.MacOSX)]
230-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/30882")]
231226
public Task BlazorWasmHostedTemplate_IndividualAuth_Works_WithLocalDB(BrowserKind browserKind)
232227
=> BlazorWasmHostedTemplate_IndividualAuth_Works(browserKind, true);
233228

234229

235230
// This test depends on BlazorWasmTemplate_CreateBuildPublish_IndividualAuthNoLocalDb running first
236231
[Theory]
237232
[InlineData(BrowserKind.Chromium)]
238-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/30882")]
239233
[SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/30825", Queues = "All.OSX")]
240234
public Task BlazorWasmHostedTemplate_IndividualAuth_Works_WithOutLocalDB(BrowserKind browserKind)
241235
=> BlazorWasmHostedTemplate_IndividualAuth_Works(browserKind, false);
@@ -419,7 +413,6 @@ public TemplateInstance(string name, params string[] arguments)
419413

420414
[Theory]
421415
[MemberData(nameof(TemplateData))]
422-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/30851")]
423416
public Task BlazorWasmHostedTemplate_AzureActiveDirectoryTemplate_Works(TemplateInstance instance)
424417
=> CreateBuildPublishAsync(instance.Name, args: instance.Arguments, targetFramework: "netstandard2.1");
425418

src/ProjectTemplates/test/BaselineTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ public ITestOutputHelper Output
8080
}
8181

8282
[Theory]
83-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/32406")]
8483
[MemberData(nameof(TemplateBaselines))]
8584
public async Task Template_Produces_The_Right_Set_Of_FilesAsync(string arguments, string[] expectedFiles)
8685
{

src/ProjectTemplates/test/RazorPagesTemplateTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,6 @@ public async Task RazorPagesTemplate_RazorRuntimeCompilation_BuildsAndPublishes(
245245

246246
[ConditionalTheory]
247247
[InlineData("SingleOrg", new string[] { "--calls-graph" })]
248-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31729")]
249248
public Task RazorPagesTemplate_IdentityWeb_BuildsAndPublishes_WithSingleOrg(string auth, string[] args) => BuildAndPublishRazorPagesTemplate(auth: auth, args: args);
250249

251250
private async Task<Project> BuildAndPublishRazorPagesTemplate(string auth, string[] args)

src/ProjectTemplates/test/WorkerTemplateTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ public ITestOutputHelper Output
3434
[OSSkipCondition(OperatingSystems.Linux, SkipReason = "https://github.com/dotnet/sdk/issues/12831")]
3535
[InlineData("C#")]
3636
[InlineData("F#")]
37-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/25404")]
3837
public async Task WorkerTemplateAsync(string language)
3938
{
4039
var project = await ProjectFactory.GetOrCreateProject(

0 commit comments

Comments
 (0)