Skip to content

Commit

Permalink
Merge pull request #1538 from michalvavrik/feature/add-tags-3-2-9-cov…
Browse files Browse the repository at this point in the history
…eregate

Add tag with JIRA ticket to 3.2.9 test coverage
  • Loading branch information
jedla97 authored Nov 22, 2023
2 parents 65089ef + 92cac52 commit 22c83cc
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ public void constraintsExist() throws JsonProcessingException {
}

@Test
@Tag("https://github.com/quarkusio/quarkus/pull/36664")
@Tag("QUARKUS-3672")
public void interceptedTest() {
// make server to generate a response so interceptors might intercept it
// ignore response, we will read interceptors result later
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ public void keepRequestScopeValuesAfterEventPropagation() {
}

@Test
@Tag("https://github.com/quarkusio/quarkus/issues/36402")
@Tag("QUARKUS-3685")
public void sseConnectionTest() {
String response = getApp().given().get("/api/sse/client").thenReturn().body().asString();

Expand All @@ -265,7 +265,7 @@ public void sseConnectionTest() {
}

@Test
@Tag("https://github.com/quarkusio/quarkus/pull/36664")
@Tag("QUARKUS-3672")
public void interceptedTest() {
// make server to generate a response so interceptors might intercept it
// ignore response, we will read interceptors result later
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;

import io.quarkus.test.junit.QuarkusTest;

@Tag("QUARKUS-3674")
@QuarkusTest
public class TestSecurityDisabledTest extends AbstractSecurityCallbackTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;

import io.quarkus.test.junit.QuarkusTest;
import io.quarkus.test.security.TestSecurity;

@Tag("QUARKUS-3674")
@QuarkusTest
public class TestSecurityEnabledTest extends AbstractSecurityCallbackTest {
@BeforeAll
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@
import static org.hamcrest.CoreMatchers.containsString;

import org.apache.http.HttpStatus;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;

import io.quarkus.test.scenarios.QuarkusScenario;

@Tag("QUARKUS-3680")
@QuarkusScenario
public class TokenPropagationFilterIT extends BaseOidcIT {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@
import static org.hamcrest.CoreMatchers.containsString;

import org.apache.http.HttpStatus;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;

import io.quarkus.test.scenarios.QuarkusScenario;

@Tag("QUARKUS-3680")
@QuarkusScenario
public class TokenPropagationFilterIT extends BaseOidcIT {

Expand Down

0 comments on commit 22c83cc

Please sign in to comment.