Skip to content

Commit

Permalink
Add tags to RH Quarkus jira
Browse files Browse the repository at this point in the history
  • Loading branch information
jedla97 authored and michalvavrik committed Nov 21, 2023
1 parent e01f37c commit 98ebcab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import static org.junit.jupiter.api.Assertions.assertNotEquals;

import org.apache.http.HttpStatus;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.ValueSource;
Expand Down Expand Up @@ -147,6 +148,7 @@ public void shouldGetDifferentValueWhenInvalidateAllTheCacheFromPath(String path
* Check if the usage of Qute and redis throw expected error
*/
@Test
@Tag("QUARKUS-3715")
public void quteShouldThrowError() {
assertThat(getFromPath("/template/error"), containsString("not supported for remote caches"));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.is;

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

import io.quarkus.test.bootstrap.RestService;
Expand Down Expand Up @@ -53,6 +54,7 @@ void testSameSiteAttributeAddedByVertxHttpExt() {
}

@Test
@Tag("QUARKUS-3736")
void testNewCookiesSerialization() {
given()
.get("/cookie/newcookie-serialization")
Expand All @@ -63,6 +65,7 @@ void testNewCookiesSerialization() {
}

@Test
@Tag("QUARKUS-3736")
void testCookiesSerialization() {
given().cookie(String.format("%s=\"test-cookie-value\";", TEST_COOKIE))
.get("/cookie/cookie-serialization")
Expand Down

0 comments on commit 98ebcab

Please sign in to comment.