Skip to content

Commit

Permalink
Merge pull request #28228 from sberyozkin/disable_oidc_token_reactive…
Browse files Browse the repository at this point in the history
…_propagation_test

Disable oidc-token-propagation-reactive test
  • Loading branch information
geoand authored Sep 28, 2022
2 parents 4ca774e + cf5a277 commit f8fd30c
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 f8fd30c

Please sign in to comment.