2015-07-15 20:05:46 +03:00
|
|
|
<?php
|
2016-04-09 10:36:53 +03:00
|
|
|
namespace GraphQL\Tests\Language;
|
2015-07-15 20:05:46 +03:00
|
|
|
|
2016-11-19 02:12:18 +03:00
|
|
|
use GraphQL\Language\AST\DocumentNode;
|
|
|
|
use GraphQL\Language\AST\EnumValueNode;
|
|
|
|
use GraphQL\Language\AST\FieldNode;
|
|
|
|
use GraphQL\Language\AST\NameNode;
|
|
|
|
use GraphQL\Language\AST\OperationDefinitionNode;
|
|
|
|
use GraphQL\Language\AST\SelectionSetNode;
|
|
|
|
use GraphQL\Language\AST\StringValueNode;
|
|
|
|
use GraphQL\Language\AST\VariableNode;
|
|
|
|
use GraphQL\Language\AST\VariableDefinitionNode;
|
2016-04-09 10:36:53 +03:00
|
|
|
use GraphQL\Language\Parser;
|
|
|
|
use GraphQL\Language\Printer;
|
2015-07-15 20:05:46 +03:00
|
|
|
|
|
|
|
class PrinterTest extends \PHPUnit_Framework_TestCase
|
|
|
|
{
|
2016-04-24 14:01:04 +03:00
|
|
|
/**
|
|
|
|
* @it does not alter ast
|
|
|
|
*/
|
2015-07-15 20:05:46 +03:00
|
|
|
public function testDoesntAlterAST()
|
|
|
|
{
|
|
|
|
$kitchenSink = file_get_contents(__DIR__ . '/kitchen-sink.graphql');
|
|
|
|
$ast = Parser::parse($kitchenSink);
|
|
|
|
|
|
|
|
$astCopy = $ast->cloneDeep();
|
|
|
|
$this->assertEquals($astCopy, $ast);
|
|
|
|
|
2016-11-16 14:37:35 +03:00
|
|
|
Printer::doPrint($ast);
|
2015-07-15 20:05:46 +03:00
|
|
|
$this->assertEquals($astCopy, $ast);
|
|
|
|
}
|
|
|
|
|
2016-04-24 14:01:04 +03:00
|
|
|
/**
|
|
|
|
* @it prints minimal ast
|
|
|
|
*/
|
2015-07-15 20:05:46 +03:00
|
|
|
public function testPrintsMinimalAst()
|
|
|
|
{
|
2016-11-19 02:12:18 +03:00
|
|
|
$ast = new FieldNode(['name' => new NameNode(['value' => 'foo'])]);
|
2016-11-16 14:37:35 +03:00
|
|
|
$this->assertEquals('foo', Printer::doPrint($ast));
|
2015-07-15 20:05:46 +03:00
|
|
|
}
|
|
|
|
|
2016-04-24 14:01:04 +03:00
|
|
|
/**
|
|
|
|
* @it produces helpful error messages
|
|
|
|
*/
|
2015-07-15 20:05:46 +03:00
|
|
|
public function testProducesHelpfulErrorMessages()
|
|
|
|
{
|
2017-12-21 09:52:43 +03:00
|
|
|
$badAst1 = new \ArrayObject(['random' => 'Data']);
|
|
|
|
$this->setExpectedException(\Exception::class, 'Invalid AST Node: {"random":"Data"}');
|
|
|
|
Printer::doPrint($badAst1);
|
2015-07-15 20:05:46 +03:00
|
|
|
}
|
|
|
|
|
2016-04-24 14:01:04 +03:00
|
|
|
/**
|
|
|
|
* @it correctly prints non-query operations without name
|
|
|
|
*/
|
|
|
|
public function testCorrectlyPrintsOpsWithoutName()
|
2015-07-15 20:05:46 +03:00
|
|
|
{
|
2016-04-24 14:01:04 +03:00
|
|
|
$queryAstShorthanded = Parser::parse('query { id, name }');
|
2015-07-15 20:05:46 +03:00
|
|
|
|
2016-04-24 14:01:04 +03:00
|
|
|
$expected = '{
|
|
|
|
id
|
|
|
|
name
|
|
|
|
}
|
|
|
|
';
|
2016-11-16 14:37:35 +03:00
|
|
|
$this->assertEquals($expected, Printer::doPrint($queryAstShorthanded));
|
2015-07-15 20:05:46 +03:00
|
|
|
|
2016-04-24 14:01:04 +03:00
|
|
|
$mutationAst = Parser::parse('mutation { id, name }');
|
|
|
|
$expected = 'mutation {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
}
|
|
|
|
';
|
2016-11-16 14:37:35 +03:00
|
|
|
$this->assertEquals($expected, Printer::doPrint($mutationAst));
|
2016-04-24 14:01:04 +03:00
|
|
|
|
|
|
|
$queryAstWithArtifacts = Parser::parse(
|
|
|
|
'query ($foo: TestType) @testDirective { id, name }'
|
|
|
|
);
|
|
|
|
$expected = 'query ($foo: TestType) @testDirective {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
}
|
|
|
|
';
|
2016-11-16 14:37:35 +03:00
|
|
|
$this->assertEquals($expected, Printer::doPrint($queryAstWithArtifacts));
|
2016-04-24 14:01:04 +03:00
|
|
|
|
|
|
|
$mutationAstWithArtifacts = Parser::parse(
|
|
|
|
'mutation ($foo: TestType) @testDirective { id, name }'
|
|
|
|
);
|
|
|
|
$expected = 'mutation ($foo: TestType) @testDirective {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
}
|
|
|
|
';
|
2016-11-16 14:37:35 +03:00
|
|
|
$this->assertEquals($expected, Printer::doPrint($mutationAstWithArtifacts));
|
2015-07-15 20:05:46 +03:00
|
|
|
}
|
|
|
|
|
2016-04-24 14:01:04 +03:00
|
|
|
/**
|
|
|
|
* @it prints kitchen sink
|
|
|
|
*/
|
2015-07-15 20:05:46 +03:00
|
|
|
public function testPrintsKitchenSink()
|
|
|
|
{
|
|
|
|
$kitchenSink = file_get_contents(__DIR__ . '/kitchen-sink.graphql');
|
|
|
|
$ast = Parser::parse($kitchenSink);
|
|
|
|
|
2016-11-16 14:37:35 +03:00
|
|
|
$printed = Printer::doPrint($ast);
|
2015-07-15 20:05:46 +03:00
|
|
|
|
|
|
|
$expected = <<<'EOT'
|
|
|
|
query queryName($foo: ComplexType, $site: Site = MOBILE) {
|
|
|
|
whoever123is: node(id: [123, 456]) {
|
2016-04-24 14:01:04 +03:00
|
|
|
id
|
2015-07-15 20:05:46 +03:00
|
|
|
... on User @defer {
|
|
|
|
field2 {
|
2016-04-24 14:01:04 +03:00
|
|
|
id
|
2015-08-16 23:53:11 +03:00
|
|
|
alias: field1(first: 10, after: $foo) @include(if: $foo) {
|
2016-04-24 14:01:04 +03:00
|
|
|
id
|
2015-07-15 20:05:46 +03:00
|
|
|
...frag
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-24 14:01:04 +03:00
|
|
|
... @skip(unless: $foo) {
|
|
|
|
id
|
|
|
|
}
|
|
|
|
... {
|
|
|
|
id
|
|
|
|
}
|
2015-07-15 20:05:46 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation likeStory {
|
|
|
|
like(story: 123) @defer {
|
|
|
|
story {
|
|
|
|
id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-24 14:01:04 +03:00
|
|
|
subscription StoryLikeSubscription($input: StoryLikeSubscribeInput) {
|
|
|
|
storyLikeSubscribe(input: $input) {
|
|
|
|
story {
|
|
|
|
likers {
|
|
|
|
count
|
|
|
|
}
|
|
|
|
likeSentence {
|
|
|
|
text
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-15 20:05:46 +03:00
|
|
|
fragment frag on Friend {
|
2018-02-08 16:58:08 +03:00
|
|
|
foo(size: $size, bar: $b, obj: {key: "value", block: """
|
|
|
|
block string uses \"""
|
|
|
|
"""})
|
2015-07-15 20:05:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2016-11-18 19:59:28 +03:00
|
|
|
unnamed(truthy: true, falsey: false, nullish: null)
|
2015-07-15 20:05:46 +03:00
|
|
|
query
|
|
|
|
}
|
|
|
|
|
|
|
|
EOT;
|
|
|
|
$this->assertEquals($expected, $printed);
|
|
|
|
}
|
|
|
|
}
|