Skip to content

Commit

Permalink
Ignoring testNestedRecordWithListWithMissingFieldInQuery due to JDK (…
Browse files Browse the repository at this point in the history
…21, 22) bug
  • Loading branch information
mskacelik committed Dec 11, 2024
1 parent 7b32640 commit f52cdd6
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import static io.smallrye.graphql.client.core.Operation.operation;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import static org.junit.Assume.assumeFalse;

import java.net.URL;
import java.util.List;
Expand All @@ -25,7 +26,6 @@
import org.jboss.arquillian.test.api.ArquillianResource;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;

Expand Down Expand Up @@ -69,9 +69,12 @@ public void testNestedRecordWithMissingFieldInQuery() throws Exception {
}
}

@Ignore("In Java 21 this test fails due to a bug (presumably) in the JSON-B implementation – Yasson)")
@Test
public void testNestedRecordWithListWithMissingFieldInQuery() throws Exception {
int major = Integer.parseInt(System.getProperty("java.version").split("\\.")[0]);
assumeFalse(
"Skipping testNestedRecordWithListWithMissingFieldInQuery because of bug in JDK 21 and 22, see https://bugs.openjdk.org/browse/JDK-8320575",
major == 21 || major == 22);
try (DynamicGraphQLClient client = new VertxDynamicGraphQLClientBuilder()
.url(testingURL.toString() + "graphql").build()) {
Document query = document(operation(
Expand Down

0 comments on commit f52cdd6

Please sign in to comment.