Skip to content

Skip consistently failing Components.E2ETests.ServerTransportsTests #35484

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
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
1 change: 0 additions & 1 deletion .azure/pipelines/components-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ stages:
cancelTimeoutInMinutes: 30
buildArgs: -all -test /p:SkipHelixReadyTests=true /p:SkipIISNewHandlerTests=true /p:SkipIISTests=true
/p:SkipIISExpressTests=true /p:SkipIISNewShimTests=true /p:RunTemplateTests=false
/p:RunQuarantinedTests=true
beforeBuild:
- powershell: "& ./src/Servers/IIS/tools/UpdateIISExpressCertificate.ps1; & ./src/Servers/IIS/tools/update_schema.ps1"
displayName: Setup IISExpress test certificates and schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure;
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
using Microsoft.AspNetCore.E2ETesting;
using Microsoft.AspNetCore.Testing;
using OpenQA.Selenium;
using TestServer;
using Xunit;
Expand All @@ -26,6 +27,7 @@ public ServerTransportsTest(
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35481")]
public void DefaultTransportsWorksWithWebSockets()
{
Navigate("/defaultTransport/Transports");
Expand All @@ -44,6 +46,7 @@ public void DefaultTransportsWorksWithWebSockets()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35481")]
public void ErrorIfClientAttemptsLongPollingWithServerOnWebSockets()
{
Navigate("/defaultTransport/Transports");
Expand All @@ -65,6 +68,7 @@ public void ErrorIfClientAttemptsLongPollingWithServerOnWebSockets()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35481")]
public void ErrorIfWebSocketsConnectionIsRejected()
{
Navigate("/defaultTransport/Transports");
Expand All @@ -89,6 +93,7 @@ public void ErrorIfWebSocketsConnectionIsRejected()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35481")]
public void ErrorIfClientAttemptsWebSocketsWithServerOnLongPolling()
{
Navigate("/longPolling/Transports");
Expand Down