forked from quarkusio/quarkus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add tests for federation batch resolving
- Loading branch information
Robert Pospisil
committed
Sep 7, 2023
1 parent
edd9d72
commit 159e391
Showing
10 changed files
with
394 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
...deployment/src/test/java/io/quarkus/smallrye/graphql/deployment/federation/batch/Foo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package io.quarkus.smallrye.graphql.deployment.federation.batch; | ||
|
||
import io.smallrye.graphql.api.federation.Extends; | ||
import io.smallrye.graphql.api.federation.External; | ||
import io.smallrye.graphql.api.federation.Key; | ||
|
||
@Key(fields = "id") | ||
@Extends | ||
public class Foo { | ||
|
||
@External | ||
public int id; | ||
|
||
public String name; | ||
|
||
} |
22 changes: 22 additions & 0 deletions
22
...loyment/src/test/java/io/quarkus/smallrye/graphql/deployment/federation/batch/FooApi.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package io.quarkus.smallrye.graphql.deployment.federation.batch; | ||
|
||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
|
||
import org.eclipse.microprofile.graphql.GraphQLApi; | ||
import org.eclipse.microprofile.graphql.Query; | ||
|
||
@GraphQLApi | ||
public class FooApi { | ||
@Query | ||
public List<Foo> foos(List<Integer> id) { | ||
return id.stream().map(this::foo).collect(Collectors.toList()); | ||
} | ||
|
||
private Foo foo(int id) { | ||
var foo = new Foo(); | ||
foo.id = id; | ||
foo.name = "Name of " + id; | ||
return foo; | ||
} | ||
} |
80 changes: 80 additions & 0 deletions
80
...a/io/quarkus/smallrye/graphql/deployment/federation/batch/GraphQLFederationBatchTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
package io.quarkus.smallrye.graphql.deployment.federation.batch; | ||
|
||
import static org.hamcrest.Matchers.containsString; | ||
|
||
import org.hamcrest.CoreMatchers; | ||
import org.jboss.shrinkwrap.api.asset.EmptyAsset; | ||
import org.jboss.shrinkwrap.api.asset.StringAsset; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
|
||
import io.quarkus.smallrye.graphql.deployment.AbstractGraphQLTest; | ||
import io.quarkus.test.QuarkusUnitTest; | ||
import io.restassured.RestAssured; | ||
|
||
public class GraphQLFederationBatchTest extends AbstractGraphQLTest { | ||
|
||
@RegisterExtension | ||
static QuarkusUnitTest test = new QuarkusUnitTest() | ||
.withApplicationRoot((jar) -> jar | ||
.addClasses(FooApi.class, Foo.class) | ||
.addAsResource(new StringAsset("quarkus.smallrye-graphql.schema-include-directives=true\n" + | ||
"smallrye.graphql.federation.batchResolving.enabled=true"), | ||
"application.properties") | ||
.addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml")); | ||
|
||
@Test | ||
public void checkServiceDeclarationInSchema() { | ||
RestAssured.given() | ||
.get("/graphql/schema.graphql") | ||
.then() | ||
.body(containsString("type _Service {")); | ||
} | ||
|
||
@Test | ||
public void checkFederationDirectivesInSchema() { | ||
RestAssured.given() | ||
.get("/graphql/schema.graphql") | ||
.then() | ||
.body(containsString("id: Int! @external")) | ||
.body(containsString("type Foo @extends @key(fields : \"id\")")); | ||
; | ||
} | ||
|
||
@Test | ||
public void resolvePerFederation() { | ||
String query = "query federation($representations: [_Any!]!) {\n" + | ||
" _entities(representations: $representations) {\n" + | ||
" ... on Foo {\n" + | ||
" id\n" + | ||
" name\n" + | ||
" }\n" + | ||
" }\n" + | ||
"}"; | ||
String variables = "{\n" + | ||
" \"representations\": [\n" + | ||
" {\n" + | ||
" \"__typename\": \"Foo\",\n" + | ||
" \"id\": 1\n" + | ||
" },\n" + | ||
" {\n" + | ||
" \"__typename\": \"Foo\",\n" + | ||
" \"id\": 2\n" + | ||
" }\n" + | ||
" ]\n" + | ||
"}"; | ||
|
||
String request = getPayload(query, variables); | ||
RestAssured.given().when() | ||
.accept(MEDIATYPE_JSON) | ||
.contentType(MEDIATYPE_JSON) | ||
.body(request) | ||
.post("/graphql") | ||
.then() | ||
.assertThat() | ||
.statusCode(200) | ||
.and() | ||
.body(CoreMatchers.is( | ||
"{\"data\":{\"_entities\":[{\"id\":1,\"name\":\"Name of 1\"},{\"id\":2,\"name\":\"Name of 2\"}]}}")); | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
.../src/test/java/io/quarkus/smallrye/graphql/deployment/federation/batch/uni/FooApiUni.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package io.quarkus.smallrye.graphql.deployment.federation.batch.uni; | ||
|
||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
|
||
import org.eclipse.microprofile.graphql.GraphQLApi; | ||
import org.eclipse.microprofile.graphql.Query; | ||
|
||
import io.quarkus.smallrye.graphql.deployment.federation.base.Foo; | ||
import io.smallrye.mutiny.Uni; | ||
|
||
@GraphQLApi | ||
public class FooApiUni { | ||
|
||
@Query | ||
public Uni<List<Foo>> foos(List<Integer> id) { | ||
return Uni.join().all(id.stream().map(this::foo).collect(Collectors.toList())).andFailFast(); | ||
} | ||
|
||
private Uni<Foo> foo(int id) { | ||
var foo = new Foo(); | ||
foo.id = id; | ||
foo.name = "Name of " + id; | ||
return Uni.createFrom().item(foo); | ||
} | ||
} |
81 changes: 81 additions & 0 deletions
81
...arkus/smallrye/graphql/deployment/federation/batch/uni/GraphQLFederationBatchUniTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
package io.quarkus.smallrye.graphql.deployment.federation.batch.uni; | ||
|
||
import static org.hamcrest.Matchers.containsString; | ||
|
||
import org.hamcrest.CoreMatchers; | ||
import org.jboss.shrinkwrap.api.asset.EmptyAsset; | ||
import org.jboss.shrinkwrap.api.asset.StringAsset; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
|
||
import io.quarkus.smallrye.graphql.deployment.AbstractGraphQLTest; | ||
import io.quarkus.smallrye.graphql.deployment.federation.batch.Foo; | ||
import io.quarkus.test.QuarkusUnitTest; | ||
import io.restassured.RestAssured; | ||
|
||
public class GraphQLFederationBatchUniTest extends AbstractGraphQLTest { | ||
|
||
@RegisterExtension | ||
static QuarkusUnitTest test = new QuarkusUnitTest() | ||
.withApplicationRoot((jar) -> jar | ||
.addClasses(FooApiUni.class, Foo.class) | ||
.addAsResource(new StringAsset("quarkus.smallrye-graphql.schema-include-directives=true\n" + | ||
"smallrye.graphql.federation.batchResolving.enabled=true"), | ||
"application.properties") | ||
.addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml")); | ||
|
||
@Test | ||
public void checkServiceDeclarationInSchema() { | ||
RestAssured.given() | ||
.get("/graphql/schema.graphql") | ||
.then() | ||
.body(containsString("type _Service {")); | ||
} | ||
|
||
@Test | ||
public void checkFederationDirectivesInSchema() { | ||
RestAssured.given() | ||
.get("/graphql/schema.graphql") | ||
.then() | ||
.body(containsString("id: Int! @external")) | ||
.body(containsString("type Foo @extends @key(fields : \"id\")")); | ||
; | ||
} | ||
|
||
@Test | ||
public void resolvePerFederation() { | ||
String query = "query federation($representations: [_Any!]!) {\n" + | ||
" _entities(representations: $representations) {\n" + | ||
" ... on Foo {\n" + | ||
" id\n" + | ||
" name\n" + | ||
" }\n" + | ||
" }\n" + | ||
"}"; | ||
String variables = "{\n" + | ||
" \"representations\": [\n" + | ||
" {\n" + | ||
" \"__typename\": \"Foo\",\n" + | ||
" \"id\": 1\n" + | ||
" },\n" + | ||
" {\n" + | ||
" \"__typename\": \"Foo\",\n" + | ||
" \"id\": 2\n" + | ||
" }\n" + | ||
" ]\n" + | ||
"}"; | ||
|
||
String request = getPayload(query, variables); | ||
RestAssured.given().when() | ||
.accept(MEDIATYPE_JSON) | ||
.contentType(MEDIATYPE_JSON) | ||
.body(request) | ||
.post("/graphql") | ||
.then() | ||
.assertThat() | ||
.statusCode(200) | ||
.and() | ||
.body(CoreMatchers.is( | ||
"{\"data\":{\"_entities\":[{\"id\":1,\"name\":\"Name of 1\"},{\"id\":2,\"name\":\"Name of 2\"}]}}")); | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
...ployment/src/test/java/io/quarkus/smallrye/graphql/deployment/federation/complex/Bar.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package io.quarkus.smallrye.graphql.deployment.federation.complex; | ||
|
||
import io.smallrye.graphql.api.federation.Extends; | ||
import io.smallrye.graphql.api.federation.External; | ||
import io.smallrye.graphql.api.federation.Key; | ||
|
||
@Key(fields = "id") | ||
@Key(fields = "otherId") | ||
@Extends | ||
public class Bar { | ||
|
||
@External | ||
public int id; | ||
@External | ||
public String otherId; | ||
|
||
public String name; | ||
|
||
} |
16 changes: 16 additions & 0 deletions
16
...ployment/src/test/java/io/quarkus/smallrye/graphql/deployment/federation/complex/Foo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package io.quarkus.smallrye.graphql.deployment.federation.complex; | ||
|
||
import io.smallrye.graphql.api.federation.Extends; | ||
import io.smallrye.graphql.api.federation.External; | ||
import io.smallrye.graphql.api.federation.Key; | ||
|
||
@Key(fields = "id") | ||
@Extends | ||
public class Foo { | ||
|
||
@External | ||
public int id; | ||
|
||
public String name; | ||
|
||
} |
36 changes: 36 additions & 0 deletions
36
...yment/src/test/java/io/quarkus/smallrye/graphql/deployment/federation/complex/FooApi.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
package io.quarkus.smallrye.graphql.deployment.federation.complex; | ||
|
||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
import java.util.stream.IntStream; | ||
|
||
import org.eclipse.microprofile.graphql.GraphQLApi; | ||
import org.eclipse.microprofile.graphql.Query; | ||
|
||
import io.smallrye.mutiny.Uni; | ||
|
||
@GraphQLApi | ||
public class FooApi { | ||
@Query | ||
public Foo foo(int id) { | ||
var foo = new Foo(); | ||
foo.id = id; | ||
foo.name = "Name of " + id; | ||
return foo; | ||
} | ||
|
||
@Query | ||
public Uni<List<Bar>> bars(List<Integer> id, List<String> otherId) { | ||
return Uni.join().all( | ||
IntStream.range(0, id.size()).boxed().map(i -> bar(id.get(i), otherId.get(i))).collect(Collectors.toList())) | ||
.andFailFast(); | ||
} | ||
|
||
private Uni<Bar> bar(int id, String otherId) { | ||
var bar = new Bar(); | ||
bar.id = id; | ||
bar.otherId = otherId; | ||
bar.name = id + otherId; | ||
return Uni.createFrom().item(bar); | ||
} | ||
} |
Oops, something went wrong.