Disable GraphQL tests until we have a compatible release
See gh-45494
This commit is contained in:
parent
e7b4f65c68
commit
1308629ae4
|
@ -22,6 +22,7 @@ import java.util.Map;
|
|||
import java.util.function.Consumer;
|
||||
|
||||
import graphql.schema.idl.TypeRuntimeWiring;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import org.springframework.aot.hint.RuntimeHints;
|
||||
|
@ -78,6 +79,7 @@ import static org.hamcrest.Matchers.containsString;
|
|||
booksOnSale(minPages: Int) : Book!
|
||||
}
|
||||
""")
|
||||
@Disabled("Waiting on compatible release")
|
||||
class GraphQlWebFluxAutoConfigurationTests {
|
||||
|
||||
private static final String BASE_URL = "https://spring.example.org/";
|
||||
|
|
|
@ -20,6 +20,7 @@ import java.util.Collections;
|
|||
import java.util.function.Consumer;
|
||||
|
||||
import graphql.schema.idl.TypeRuntimeWiring;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import reactor.core.publisher.Mono;
|
||||
|
||||
|
@ -80,6 +81,7 @@ import static org.springframework.security.config.Customizer.withDefaults;
|
|||
booksOnSale(minPages: Int) : Book!
|
||||
}
|
||||
""")
|
||||
@Disabled("Waiting on compatible release")
|
||||
class GraphQlWebFluxSecurityAutoConfigurationTests {
|
||||
|
||||
private static final String BASE_URL = "https://spring.example.org/graphql";
|
||||
|
|
|
@ -18,6 +18,7 @@ package org.springframework.boot.autoconfigure.graphql.security;
|
|||
|
||||
import graphql.schema.idl.TypeRuntimeWiring;
|
||||
import org.assertj.core.api.ThrowingConsumer;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import org.springframework.boot.autoconfigure.AutoConfigurations;
|
||||
|
@ -80,6 +81,7 @@ import static org.springframework.test.web.servlet.request.MockMvcRequestBuilder
|
|||
booksOnSale(minPages: Int) : Book!
|
||||
}
|
||||
""")
|
||||
@Disabled("Waiting on compatible release")
|
||||
class GraphQlWebMvcSecurityAutoConfigurationTests {
|
||||
|
||||
private final WebApplicationContextRunner contextRunner = new WebApplicationContextRunner()
|
||||
|
|
|
@ -17,11 +17,11 @@
|
|||
package org.springframework.boot.autoconfigure.graphql.servlet;
|
||||
|
||||
import java.time.Duration;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import graphql.schema.idl.TypeRuntimeWiring;
|
||||
import org.assertj.core.api.ThrowingConsumer;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import org.springframework.aot.hint.RuntimeHints;
|
||||
|
@ -81,6 +81,7 @@ import static org.springframework.test.web.servlet.request.MockMvcRequestBuilder
|
|||
booksOnSale(minPages: Int) : Book!
|
||||
}
|
||||
""")
|
||||
@Disabled("Waiting on compatible release")
|
||||
class GraphQlWebMvcAutoConfigurationTests {
|
||||
|
||||
private final WebApplicationContextRunner contextRunner = new WebApplicationContextRunner()
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2012-2023 the original author or authors.
|
||||
* Copyright 2012-2025 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -16,6 +16,7 @@
|
|||
|
||||
package smoketest.graphql;
|
||||
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
@ -28,6 +29,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
|||
|
||||
@SpringBootTest
|
||||
@AutoConfigureHttpGraphQlTester
|
||||
@Disabled("Waiting on compatible release")
|
||||
class GreetingControllerTests {
|
||||
|
||||
@Autowired
|
||||
|
|
Loading…
Reference in New Issue