Skip to content

Commit

Permalink
Disable oidc-token-propagation-reactive test
Browse files Browse the repository at this point in the history
  • Loading branch information
sberyozkin authored and igorregis committed Oct 16, 2022
1 parent 2e56619 commit 465c8e2
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import static org.junit.jupiter.api.Assertions.assertEquals;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import com.gargoylesoftware.htmlunit.SilentCssErrorHandler;
Expand All @@ -17,6 +18,8 @@
public class OidcTokenReactivePropagationTest {

@Test
// See https://github.com/quarkusio/quarkus/issues/27900
@Disabled("flaky")
public void testGetUserNameWithAccessTokenPropagation() throws Exception {
try (final WebClient webClient = createWebClient()) {
HtmlPage page = webClient.getPage("http://localhost:8081/frontend/access-token-propagation");
Expand All @@ -36,6 +39,8 @@ public void testGetUserNameWithAccessTokenPropagation() throws Exception {
}

@Test
// See https://github.com/quarkusio/quarkus/issues/27900
@Disabled("flaky")
public void testNoToken() {
RestAssured.given().when().redirects().follow(false)
.get("/frontend/access-token-propagation")
Expand Down

0 comments on commit 465c8e2

Please sign in to comment.