mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 21:06:05 +03:00
172 lines
3.5 KiB
PHP
172 lines
3.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace GraphQL\Tests\Language;
|
|
|
|
use GraphQL\Language\AST\NameNode;
|
|
use GraphQL\Language\AST\ScalarTypeDefinitionNode;
|
|
use GraphQL\Language\Parser;
|
|
use GraphQL\Language\Printer;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Throwable;
|
|
use function file_get_contents;
|
|
|
|
class SchemaPrinterTest extends TestCase
|
|
{
|
|
/**
|
|
* @see it('prints minimal ast')
|
|
*/
|
|
public function testPrintsMinimalAst() : void
|
|
{
|
|
$ast = new ScalarTypeDefinitionNode([
|
|
'name' => new NameNode(['value' => 'foo']),
|
|
]);
|
|
$this->assertEquals('scalar foo', Printer::doPrint($ast));
|
|
}
|
|
|
|
/**
|
|
* @see it('produces helpful error messages')
|
|
*/
|
|
public function testProducesHelpfulErrorMessages() : void
|
|
{
|
|
$this->expectException(Throwable::class);
|
|
$this->expectExceptionMessage('Invalid AST Node: {"random":"Data"}');
|
|
|
|
// $badAst1 = { random: 'Data' };
|
|
$badAst = (object) ['random' => 'Data'];
|
|
Printer::doPrint($badAst);
|
|
}
|
|
|
|
/**
|
|
* @see it('does not alter ast')
|
|
*/
|
|
public function testDoesNotAlterAst() : void
|
|
{
|
|
$kitchenSink = file_get_contents(__DIR__ . '/schema-kitchen-sink.graphql');
|
|
|
|
$ast = Parser::parse($kitchenSink);
|
|
$astCopy = $ast->cloneDeep();
|
|
Printer::doPrint($ast);
|
|
|
|
$this->assertEquals($astCopy, $ast);
|
|
}
|
|
|
|
public function testPrintsKitchenSink() : void
|
|
{
|
|
$kitchenSink = file_get_contents(__DIR__ . '/schema-kitchen-sink.graphql');
|
|
|
|
$ast = Parser::parse($kitchenSink);
|
|
$printed = Printer::doPrint($ast);
|
|
|
|
$expected = 'schema {
|
|
query: QueryType
|
|
mutation: MutationType
|
|
}
|
|
|
|
"""
|
|
This is a description
|
|
of the `Foo` type.
|
|
"""
|
|
type Foo implements Bar & Baz {
|
|
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
|
|
seven(argument: Int = null): Type
|
|
}
|
|
|
|
type AnnotatedObject @onObject(arg: "value") {
|
|
annotatedField(arg: Type = "default" @onArg): Type @onField
|
|
}
|
|
|
|
type UndefinedType
|
|
|
|
extend type Foo {
|
|
seven(argument: [String]): Type
|
|
}
|
|
|
|
extend type Foo @onType
|
|
|
|
interface Bar {
|
|
one: Type
|
|
four(argument: String = "string"): String
|
|
}
|
|
|
|
interface AnnotatedInterface @onInterface {
|
|
annotatedField(arg: Type @onArg): Type @onField
|
|
}
|
|
|
|
interface UndefinedInterface
|
|
|
|
extend interface Bar {
|
|
two(argument: InputType!): Type
|
|
}
|
|
|
|
extend interface Bar @onInterface
|
|
|
|
union Feed = Story | Article | Advert
|
|
|
|
union AnnotatedUnion @onUnion = A | B
|
|
|
|
union AnnotatedUnionTwo @onUnion = A | B
|
|
|
|
union UndefinedUnion
|
|
|
|
extend union Feed = Photo | Video
|
|
|
|
extend union Feed @onUnion
|
|
|
|
scalar CustomScalar
|
|
|
|
scalar AnnotatedScalar @onScalar
|
|
|
|
extend scalar CustomScalar @onScalar
|
|
|
|
enum Site {
|
|
DESKTOP
|
|
MOBILE
|
|
}
|
|
|
|
enum AnnotatedEnum @onEnum {
|
|
ANNOTATED_VALUE @onEnumValue
|
|
OTHER_VALUE
|
|
}
|
|
|
|
enum UndefinedEnum
|
|
|
|
extend enum Site {
|
|
VR
|
|
}
|
|
|
|
extend enum Site @onEnum
|
|
|
|
input InputType {
|
|
key: String!
|
|
answer: Int = 42
|
|
}
|
|
|
|
input AnnotatedInput @onInputObject {
|
|
annotatedField: Type @onField
|
|
}
|
|
|
|
input UndefinedInput
|
|
|
|
extend input InputType {
|
|
other: Float = 1.23e4
|
|
}
|
|
|
|
extend input InputType @onInputObject
|
|
|
|
directive @skip(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
|
|
|
|
directive @include(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
|
|
|
|
directive @include2(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
|
|
';
|
|
$this->assertEquals($expected, $printed);
|
|
}
|
|
}
|