2016-04-24 14:01:04 +03:00
|
|
|
<?php
|
2018-09-01 21:21:08 +03:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2018-08-31 12:24:56 +03:00
|
|
|
namespace GraphQL\Tests\Language;
|
2016-04-24 14:01:04 +03:00
|
|
|
|
2016-11-19 02:12:18 +03:00
|
|
|
use GraphQL\Language\AST\NameNode;
|
|
|
|
use GraphQL\Language\AST\ScalarTypeDefinitionNode;
|
2016-04-24 14:01:04 +03:00
|
|
|
use GraphQL\Language\Parser;
|
|
|
|
use GraphQL\Language\Printer;
|
2018-07-29 18:43:10 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
use Throwable;
|
2018-09-01 21:21:08 +03:00
|
|
|
use function file_get_contents;
|
2016-04-24 14:01:04 +03:00
|
|
|
|
2018-07-29 18:43:10 +03:00
|
|
|
class SchemaPrinterTest extends TestCase
|
2016-04-24 14:01:04 +03:00
|
|
|
{
|
|
|
|
/**
|
2018-08-31 11:55:14 +03:00
|
|
|
* @see it('prints minimal ast')
|
2016-04-24 14:01:04 +03:00
|
|
|
*/
|
2018-08-31 12:07:29 +03:00
|
|
|
public function testPrintsMinimalAst() : void
|
2016-04-24 14:01:04 +03:00
|
|
|
{
|
2016-11-19 02:12:18 +03:00
|
|
|
$ast = new ScalarTypeDefinitionNode([
|
2018-09-01 21:21:08 +03:00
|
|
|
'name' => new NameNode(['value' => 'foo']),
|
2016-04-24 14:01:04 +03:00
|
|
|
]);
|
2018-09-19 18:12:09 +03:00
|
|
|
self::assertEquals('scalar foo', Printer::doPrint($ast));
|
2016-04-24 14:01:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-08-31 11:55:14 +03:00
|
|
|
* @see it('produces helpful error messages')
|
2016-04-24 14:01:04 +03:00
|
|
|
*/
|
2018-08-31 12:07:29 +03:00
|
|
|
public function testProducesHelpfulErrorMessages() : void
|
2016-04-24 14:01:04 +03:00
|
|
|
{
|
2018-07-29 18:43:10 +03:00
|
|
|
$this->expectException(Throwable::class);
|
|
|
|
$this->expectExceptionMessage('Invalid AST Node: {"random":"Data"}');
|
|
|
|
|
2016-04-24 14:01:04 +03:00
|
|
|
// $badAst1 = { random: 'Data' };
|
|
|
|
$badAst = (object) ['random' => 'Data'];
|
|
|
|
Printer::doPrint($badAst);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-08-31 11:55:14 +03:00
|
|
|
* @see it('does not alter ast')
|
2016-04-24 14:01:04 +03:00
|
|
|
*/
|
2018-08-31 12:07:29 +03:00
|
|
|
public function testDoesNotAlterAst() : void
|
2016-04-24 14:01:04 +03:00
|
|
|
{
|
|
|
|
$kitchenSink = file_get_contents(__DIR__ . '/schema-kitchen-sink.graphql');
|
|
|
|
|
2018-09-01 21:21:08 +03:00
|
|
|
$ast = Parser::parse($kitchenSink);
|
2016-04-24 14:01:04 +03:00
|
|
|
$astCopy = $ast->cloneDeep();
|
|
|
|
Printer::doPrint($ast);
|
|
|
|
|
2018-09-19 18:12:09 +03:00
|
|
|
self::assertEquals($astCopy, $ast);
|
2016-04-24 14:01:04 +03:00
|
|
|
}
|
|
|
|
|
2018-08-31 12:07:29 +03:00
|
|
|
public function testPrintsKitchenSink() : void
|
2016-04-24 14:01:04 +03:00
|
|
|
{
|
|
|
|
$kitchenSink = file_get_contents(__DIR__ . '/schema-kitchen-sink.graphql');
|
|
|
|
|
2018-09-01 21:21:08 +03:00
|
|
|
$ast = Parser::parse($kitchenSink);
|
2016-04-24 14:01:04 +03:00
|
|
|
$printed = Printer::doPrint($ast);
|
|
|
|
|
|
|
|
$expected = 'schema {
|
|
|
|
query: QueryType
|
|
|
|
mutation: MutationType
|
|
|
|
}
|
|
|
|
|
2018-02-08 21:33:54 +03:00
|
|
|
"""
|
|
|
|
This is a description
|
|
|
|
of the `Foo` type.
|
|
|
|
"""
|
2018-08-07 21:11:47 +03:00
|
|
|
type Foo implements Bar & Baz {
|
2016-04-24 14:01:04 +03:00
|
|
|
one: Type
|
|
|
|
two(argument: InputType!): Type
|
|
|
|
three(argument: InputType, other: String): Int
|
|
|
|
four(argument: String = "string"): String
|
|
|
|
five(argument: [String] = ["string", "string"]): String
|
|
|
|
six(argument: InputType = {key: "value"}): Type
|
2016-11-18 19:59:28 +03:00
|
|
|
seven(argument: Int = null): Type
|
2016-04-24 14:01:04 +03:00
|
|
|
}
|
|
|
|
|
2016-10-16 22:57:24 +03:00
|
|
|
type AnnotatedObject @onObject(arg: "value") {
|
|
|
|
annotatedField(arg: Type = "default" @onArg): Type @onField
|
|
|
|
}
|
|
|
|
|
2018-02-11 23:08:53 +03:00
|
|
|
type UndefinedType
|
|
|
|
|
|
|
|
extend type Foo {
|
|
|
|
seven(argument: [String]): Type
|
|
|
|
}
|
|
|
|
|
|
|
|
extend type Foo @onType
|
|
|
|
|
2016-04-24 14:01:04 +03:00
|
|
|
interface Bar {
|
|
|
|
one: Type
|
|
|
|
four(argument: String = "string"): String
|
|
|
|
}
|
|
|
|
|
2016-10-16 22:57:24 +03:00
|
|
|
interface AnnotatedInterface @onInterface {
|
|
|
|
annotatedField(arg: Type @onArg): Type @onField
|
|
|
|
}
|
|
|
|
|
2018-02-11 23:08:53 +03:00
|
|
|
interface UndefinedInterface
|
|
|
|
|
|
|
|
extend interface Bar {
|
|
|
|
two(argument: InputType!): Type
|
|
|
|
}
|
|
|
|
|
|
|
|
extend interface Bar @onInterface
|
|
|
|
|
2016-04-24 14:01:04 +03:00
|
|
|
union Feed = Story | Article | Advert
|
|
|
|
|
2016-10-16 22:57:24 +03:00
|
|
|
union AnnotatedUnion @onUnion = A | B
|
|
|
|
|
2017-07-05 14:42:27 +03:00
|
|
|
union AnnotatedUnionTwo @onUnion = A | B
|
|
|
|
|
2018-02-11 23:08:53 +03:00
|
|
|
union UndefinedUnion
|
|
|
|
|
|
|
|
extend union Feed = Photo | Video
|
|
|
|
|
|
|
|
extend union Feed @onUnion
|
|
|
|
|
2016-04-24 14:01:04 +03:00
|
|
|
scalar CustomScalar
|
|
|
|
|
2016-10-16 22:57:24 +03:00
|
|
|
scalar AnnotatedScalar @onScalar
|
|
|
|
|
2018-02-11 23:08:53 +03:00
|
|
|
extend scalar CustomScalar @onScalar
|
|
|
|
|
2016-04-24 14:01:04 +03:00
|
|
|
enum Site {
|
|
|
|
DESKTOP
|
|
|
|
MOBILE
|
|
|
|
}
|
|
|
|
|
2016-10-16 22:57:24 +03:00
|
|
|
enum AnnotatedEnum @onEnum {
|
|
|
|
ANNOTATED_VALUE @onEnumValue
|
|
|
|
OTHER_VALUE
|
|
|
|
}
|
|
|
|
|
2018-02-11 23:08:53 +03:00
|
|
|
enum UndefinedEnum
|
|
|
|
|
|
|
|
extend enum Site {
|
|
|
|
VR
|
|
|
|
}
|
|
|
|
|
|
|
|
extend enum Site @onEnum
|
|
|
|
|
2016-04-24 14:01:04 +03:00
|
|
|
input InputType {
|
|
|
|
key: String!
|
|
|
|
answer: Int = 42
|
|
|
|
}
|
|
|
|
|
2018-02-11 23:08:53 +03:00
|
|
|
input AnnotatedInput @onInputObject {
|
2016-10-16 22:57:24 +03:00
|
|
|
annotatedField: Type @onField
|
|
|
|
}
|
|
|
|
|
2018-02-11 23:08:53 +03:00
|
|
|
input UndefinedInput
|
|
|
|
|
|
|
|
extend input InputType {
|
|
|
|
other: Float = 1.23e4
|
2016-04-24 14:01:04 +03:00
|
|
|
}
|
|
|
|
|
2018-02-11 23:08:53 +03:00
|
|
|
extend input InputType @onInputObject
|
2016-10-16 22:57:24 +03:00
|
|
|
|
2016-04-24 14:01:04 +03:00
|
|
|
directive @skip(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
|
|
|
|
|
|
|
|
directive @include(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
|
2017-07-05 14:42:27 +03:00
|
|
|
|
|
|
|
directive @include2(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
|
2016-04-24 14:01:04 +03:00
|
|
|
';
|
2018-09-19 18:12:09 +03:00
|
|
|
self::assertEquals($expected, $printed);
|
2016-04-24 14:01:04 +03:00
|
|
|
}
|
|
|
|
}
|