graphql-php/tests/Language/ParserTest.php

720 lines
24 KiB
PHP
Raw Normal View History

2015-07-15 20:05:46 +03:00
<?php
2018-09-01 21:21:08 +03:00
declare(strict_types=1);
2016-04-09 10:36:53 +03:00
namespace GraphQL\Tests\Language;
2015-07-15 20:05:46 +03:00
use GraphQL\Error\InvariantViolation;
2018-09-01 21:21:08 +03:00
use GraphQL\Error\SyntaxError;
use GraphQL\Language\AST\ArgumentNode;
use GraphQL\Language\AST\FieldNode;
use GraphQL\Language\AST\NameNode;
use GraphQL\Language\AST\Node;
use GraphQL\Language\AST\NodeKind;
use GraphQL\Language\AST\NodeList;
use GraphQL\Language\AST\SelectionSetNode;
use GraphQL\Language\AST\StringValueNode;
2016-04-09 10:36:53 +03:00
use GraphQL\Language\Parser;
use GraphQL\Language\Source;
use GraphQL\Language\SourceLocation;
use GraphQL\Utils\Utils;
2018-07-29 18:43:10 +03:00
use PHPUnit\Framework\TestCase;
2018-09-26 12:07:23 +03:00
use stdClass;
2018-09-01 21:21:08 +03:00
use function file_get_contents;
use function sprintf;
2015-07-15 20:05:46 +03:00
2018-07-29 18:43:10 +03:00
class ParserTest extends TestCase
2015-07-15 20:05:46 +03:00
{
public function testAssertsThatASourceToParseIsNotNull() : void
{
2018-07-29 18:43:10 +03:00
$this->expectException(InvariantViolation::class);
$this->expectExceptionMessage('GraphQL query body is expected to be string, but got NULL');
Parser::parse(null);
}
public function testAssertsThatASourceToParseIsNotArray() : void
{
2018-07-29 18:43:10 +03:00
$this->expectException(InvariantViolation::class);
$this->expectExceptionMessage('GraphQL query body is expected to be string, but got array');
Parser::parse(['a' => 'b']);
}
public function testAssertsThatASourceToParseIsNotObject() : void
{
2018-07-29 18:43:10 +03:00
$this->expectException(InvariantViolation::class);
$this->expectExceptionMessage('GraphQL query body is expected to be string, but got stdClass');
2018-09-26 12:07:23 +03:00
Parser::parse(new stdClass());
}
public function parseProvidesUsefulErrors()
{
return [
2018-09-01 21:21:08 +03:00
[
'{',
'Syntax Error: Expected Name, found <EOF>',
"Syntax Error: Expected Name, found <EOF>\n\nGraphQL request (1:2)\n1: {\n ^\n",
[1],
[new SourceLocation(
1,
2
),
],
],
[
'{ ...MissingOn }
fragment MissingOn Type
2018-09-01 21:21:08 +03:00
', 'Syntax Error: Expected "on", found Name "Type"',
"Syntax Error: Expected \"on\", found Name \"Type\"\n\nGraphQL request (2:20)\n1: { ...MissingOn }\n2: fragment MissingOn Type\n ^\n3: \n",
],
['{ field: {} }', 'Syntax Error: Expected Name, found {', "Syntax Error: Expected Name, found {\n\nGraphQL request (1:10)\n1: { field: {} }\n ^\n"],
['notanoperation Foo { field }', 'Syntax Error: Unexpected Name "notanoperation"', "Syntax Error: Unexpected Name \"notanoperation\"\n\nGraphQL request (1:1)\n1: notanoperation Foo { field }\n ^\n"],
['...', 'Syntax Error: Unexpected ...', "Syntax Error: Unexpected ...\n\nGraphQL request (1:1)\n1: ...\n ^\n"],
];
}
/**
2018-09-01 21:21:08 +03:00
* @see it('parse provides useful errors')
2018-09-26 12:07:23 +03:00
*
* @dataProvider parseProvidesUsefulErrors
*/
2018-09-01 21:21:08 +03:00
public function testParseProvidesUsefulErrors(
$str,
$expectedMessage,
$stringRepresentation,
$expectedPositions = null,
$expectedLocations = null
) : void {
try {
Parser::parse($str);
self::fail('Expected exception not thrown');
} catch (SyntaxError $e) {
2018-09-19 18:12:09 +03:00
self::assertEquals($expectedMessage, $e->getMessage());
self::assertEquals($stringRepresentation, (string) $e);
if ($expectedPositions) {
2018-09-19 18:12:09 +03:00
self::assertEquals($expectedPositions, $e->getPositions());
2015-07-15 20:05:46 +03:00
}
if ($expectedLocations) {
2018-09-19 18:12:09 +03:00
self::assertEquals($expectedLocations, $e->getLocations());
}
}
2015-07-15 20:05:46 +03:00
}
/**
* @see it('parse provides useful error when using source')
*/
public function testParseProvidesUsefulErrorWhenUsingSource() : void
2015-07-15 20:05:46 +03:00
{
try {
Parser::parse(new Source('query', 'MyQuery.graphql'));
self::fail('Expected exception not thrown');
} catch (SyntaxError $error) {
2018-09-19 18:12:09 +03:00
self::assertEquals(
"Syntax Error: Expected {, found <EOF>\n\nMyQuery.graphql (1:6)\n1: query\n ^\n",
(string) $error
);
}
2015-07-15 20:05:46 +03:00
}
/**
* @see it('parses variable inline values')
*/
public function testParsesVariableInlineValues() : void
2015-07-15 20:05:46 +03:00
{
2018-08-07 19:59:48 +03:00
$this->expectNotToPerformAssertions();
2015-07-15 20:05:46 +03:00
// Following line should not throw:
Parser::parse('{ field(complex: { a: { b: [ $var ] } }) }');
}
/**
* @see it('parses constant default values')
*/
public function testParsesConstantDefaultValues() : void
2015-07-15 20:05:46 +03:00
{
$this->expectSyntaxError(
'query Foo($x: Complex = { a: { b: [ $var ] } }) { field }',
'Unexpected $',
2018-09-01 21:21:08 +03:00
$this->loc(1, 37)
);
2015-07-15 20:05:46 +03:00
}
2018-09-01 21:21:08 +03:00
private function expectSyntaxError($text, $message, $location)
{
$this->expectException(SyntaxError::class);
$this->expectExceptionMessage($message);
try {
Parser::parse($text);
} catch (SyntaxError $error) {
2018-09-19 18:12:09 +03:00
self::assertEquals([$location], $error->getLocations());
2018-09-01 21:21:08 +03:00
throw $error;
}
}
private function loc($line, $column)
{
return new SourceLocation($line, $column);
}
/**
* @see it('does not accept fragments spread of "on"')
*/
public function testDoesNotAcceptFragmentsNamedOn() : void
{
$this->expectSyntaxError(
'fragment on on on { on }',
'Unexpected Name "on"',
2018-09-01 21:21:08 +03:00
$this->loc(1, 10)
);
}
/**
* @see it('does not accept fragments spread of "on"')
*/
public function testDoesNotAcceptFragmentSpreadOfOn() : void
{
$this->expectSyntaxError(
'{ ...on }',
'Expected Name, found }',
2018-09-01 21:21:08 +03:00
$this->loc(1, 9)
);
}
/**
* @see it('parses multi-byte characters')
*/
public function testParsesMultiByteCharacters() : void
{
// Note: \u0A0A could be naively interpretted as two line-feed chars.
2018-09-01 21:21:08 +03:00
$char = Utils::chr(0x0A0A);
$query = <<<HEREDOC
# This comment has a $char multi-byte character.
{ field(arg: "Has a $char multi-byte character.") }
HEREDOC;
$result = Parser::parse($query, ['noLocation' => true]);
$expected = new SelectionSetNode([
'selections' => new NodeList([
new FieldNode([
2018-09-01 21:21:08 +03:00
'name' => new NameNode(['value' => 'field']),
'arguments' => new NodeList([
new ArgumentNode([
2018-09-01 21:21:08 +03:00
'name' => new NameNode(['value' => 'arg']),
'value' => new StringValueNode(
['value' => sprintf('Has a %s multi-byte character.', $char)]
),
]),
]),
2018-09-01 21:21:08 +03:00
'directives' => new NodeList([]),
]),
]),
]);
2018-09-19 18:12:09 +03:00
self::assertEquals($expected, $result->definitions[0]->selectionSet);
}
/**
* @see it('parses kitchen sink')
*/
public function testParsesKitchenSink() : void
2015-07-15 20:05:46 +03:00
{
// Following should not throw:
$kitchenSink = file_get_contents(__DIR__ . '/kitchen-sink.graphql');
2018-09-01 21:21:08 +03:00
$result = Parser::parse($kitchenSink);
2018-09-19 18:12:09 +03:00
self::assertNotEmpty($result);
}
/**
* allows non-keywords anywhere a Name is allowed
*/
public function testAllowsNonKeywordsAnywhereANameIsAllowed() : void
{
$nonKeywords = [
'on',
'fragment',
'query',
'mutation',
'subscription',
'true',
2018-09-01 21:21:08 +03:00
'false',
];
foreach ($nonKeywords as $keyword) {
$fragmentName = $keyword;
if ($keyword === 'on') {
$fragmentName = 'a';
}
// Expected not to throw:
2018-09-01 21:21:08 +03:00
$result = Parser::parse(<<<GRAPHQL
query $keyword {
... $fragmentName
... on $keyword { field }
}
fragment $fragmentName on Type {
$keyword($keyword: \$$keyword) @$keyword($keyword: $keyword)
}
fragment $fragmentName on Type {
2018-09-01 21:21:08 +03:00
$keyword($keyword: \$$keyword) @$keyword($keyword: $keyword)
}
2018-09-01 21:21:08 +03:00
GRAPHQL
);
2018-09-19 18:12:09 +03:00
self::assertNotEmpty($result);
}
2015-07-15 20:05:46 +03:00
}
/**
* @see it('parses anonymous mutation operations')
*/
public function testParsessAnonymousMutationOperations() : void
{
2018-08-07 19:59:48 +03:00
$this->expectNotToPerformAssertions();
// Should not throw:
Parser::parse('
mutation {
mutationField
}
');
}
/**
* @see it('parses anonymous subscription operations')
*/
public function testParsesAnonymousSubscriptionOperations() : void
{
2018-08-07 19:59:48 +03:00
$this->expectNotToPerformAssertions();
// Should not throw:
Parser::parse('
subscription {
subscriptionField
}
');
}
/**
* @see it('parses named mutation operations')
*/
public function testParsesNamedMutationOperations() : void
{
2018-08-07 19:59:48 +03:00
$this->expectNotToPerformAssertions();
// Should not throw:
Parser::parse('
mutation Foo {
mutationField
}
');
}
/**
* @see it('parses named subscription operations')
*/
public function testParsesNamedSubscriptionOperations() : void
{
2018-08-07 19:59:48 +03:00
$this->expectNotToPerformAssertions();
Parser::parse('
subscription Foo {
subscriptionField
}
');
}
/**
* @see it('creates ast')
*/
public function testParseCreatesAst() : void
2015-07-15 20:05:46 +03:00
{
$source = new Source('{
node(id: 4) {
id,
name
}
}
');
$result = Parser::parse($source);
2018-09-26 12:07:23 +03:00
$loc = static function ($start, $end) {
return [
'start' => $start,
2018-09-01 21:21:08 +03:00
'end' => $end,
];
};
$expected = [
2018-09-01 21:21:08 +03:00
'kind' => NodeKind::DOCUMENT,
'loc' => $loc(0, 41),
'definitions' => [
[
2018-09-01 21:21:08 +03:00
'kind' => NodeKind::OPERATION_DEFINITION,
'loc' => $loc(0, 40),
'operation' => 'query',
'name' => null,
'variableDefinitions' => [],
2018-09-01 21:21:08 +03:00
'directives' => [],
'selectionSet' => [
'kind' => NodeKind::SELECTION_SET,
'loc' => $loc(0, 40),
'selections' => [
[
2018-09-01 21:21:08 +03:00
'kind' => NodeKind::FIELD,
'loc' => $loc(4, 38),
'alias' => null,
'name' => [
'kind' => NodeKind::NAME,
'loc' => $loc(4, 8),
'value' => 'node',
],
2018-09-01 21:21:08 +03:00
'arguments' => [
[
2018-09-01 21:21:08 +03:00
'kind' => NodeKind::ARGUMENT,
'name' => [
'kind' => NodeKind::NAME,
'loc' => $loc(9, 11),
'value' => 'id',
],
'value' => [
2018-09-01 21:21:08 +03:00
'kind' => NodeKind::INT,
'loc' => $loc(13, 14),
'value' => '4',
],
2018-09-01 21:21:08 +03:00
'loc' => $loc(9, 14, $source),
],
],
2018-09-01 21:21:08 +03:00
'directives' => [],
'selectionSet' => [
2018-09-01 21:21:08 +03:00
'kind' => NodeKind::SELECTION_SET,
'loc' => $loc(16, 38),
'selections' => [
[
2018-09-01 21:21:08 +03:00
'kind' => NodeKind::FIELD,
'loc' => $loc(22, 24),
'alias' => null,
'name' => [
'kind' => NodeKind::NAME,
'loc' => $loc(22, 24),
'value' => 'id',
],
2018-09-01 21:21:08 +03:00
'arguments' => [],
'directives' => [],
'selectionSet' => null,
],
[
2018-09-01 21:21:08 +03:00
'kind' => NodeKind::FIELD,
'loc' => $loc(30, 34),
'alias' => null,
'name' => [
'kind' => NodeKind::NAME,
'loc' => $loc(30, 34),
'value' => 'name',
],
2018-09-01 21:21:08 +03:00
'arguments' => [],
'directives' => [],
'selectionSet' => null,
],
],
],
],
],
],
],
],
];
2018-09-19 18:12:09 +03:00
self::assertEquals($expected, self::nodeToArray($result));
2018-09-01 21:21:08 +03:00
}
/**
* @return mixed[]
*/
public static function nodeToArray(Node $node) : array
{
return TestUtils::nodeToArray($node);
}
/**
* @see it('creates ast from nameless query without variables')
*/
public function testParseCreatesAstFromNamelessQueryWithoutVariables() : void
{
$source = new Source('query {
node {
id
}
}
');
$result = Parser::parse($source);
2018-09-26 12:07:23 +03:00
$loc = static function ($start, $end) {
return [
'start' => $start,
2018-09-01 21:21:08 +03:00
'end' => $end,
];
};
$expected = [
2018-09-01 21:21:08 +03:00
'kind' => NodeKind::DOCUMENT,
'loc' => $loc(0, 30),
'definitions' => [
[
2018-09-01 21:21:08 +03:00
'kind' => NodeKind::OPERATION_DEFINITION,
'loc' => $loc(0, 29),
'operation' => 'query',
'name' => null,
'variableDefinitions' => [],
2018-09-01 21:21:08 +03:00
'directives' => [],
'selectionSet' => [
'kind' => NodeKind::SELECTION_SET,
'loc' => $loc(6, 29),
'selections' => [
[
2018-09-01 21:21:08 +03:00
'kind' => NodeKind::FIELD,
'loc' => $loc(10, 27),
'alias' => null,
'name' => [
'kind' => NodeKind::NAME,
'loc' => $loc(10, 14),
'value' => 'node',
],
2018-09-01 21:21:08 +03:00
'arguments' => [],
'directives' => [],
'selectionSet' => [
2018-09-01 21:21:08 +03:00
'kind' => NodeKind::SELECTION_SET,
'loc' => $loc(15, 27),
'selections' => [
[
2018-09-01 21:21:08 +03:00
'kind' => NodeKind::FIELD,
'loc' => $loc(21, 23),
'alias' => null,
'name' => [
'kind' => NodeKind::NAME,
'loc' => $loc(21, 23),
'value' => 'id',
],
2018-09-01 21:21:08 +03:00
'arguments' => [],
'directives' => [],
'selectionSet' => null,
],
],
],
],
],
],
],
],
];
self::assertEquals($expected, self::nodeToArray($result));
}
/**
* @see it('allows parsing without source location information')
*/
public function testAllowsParsingWithoutSourceLocationInformation() : void
{
$source = new Source('{ id }');
$result = Parser::parse($source, ['noLocation' => true]);
2018-09-19 18:12:09 +03:00
self::assertEquals(null, $result->loc);
}
/**
* @see it('Experimental: allows parsing fragment defined variables')
*/
public function testExperimentalAllowsParsingFragmentDefinedVariables() : void
{
$source = new Source('fragment a($v: Boolean = false) on t { f(v: $v) }');
// not throw
Parser::parse($source, ['experimentalFragmentVariables' => true]);
2018-07-29 18:43:10 +03:00
$this->expectException(SyntaxError::class);
Parser::parse($source);
}
2018-09-01 21:21:08 +03:00
// Describe: parseValue
/**
* @see it('contains location information that only stringifys start/end')
*/
public function testContainsLocationInformationThatOnlyStringifysStartEnd() : void
{
$source = new Source('{ id }');
$result = Parser::parse($source);
2018-09-19 18:12:09 +03:00
self::assertEquals(['start' => 0, 'end' => '6'], TestUtils::locationToArray($result->loc));
}
/**
* @see it('contains references to source')
*/
public function testContainsReferencesToSource() : void
{
$source = new Source('{ id }');
$result = Parser::parse($source);
2018-09-19 18:12:09 +03:00
self::assertEquals($source, $result->loc->source);
}
2018-09-01 21:21:08 +03:00
// Describe: parseType
/**
* @see it('contains references to start and end tokens')
*/
public function testContainsReferencesToStartAndEndTokens() : void
{
$source = new Source('{ id }');
$result = Parser::parse($source);
2018-09-19 18:12:09 +03:00
self::assertEquals('<SOF>', $result->loc->startToken->kind);
self::assertEquals('<EOF>', $result->loc->endToken->kind);
}
2016-11-18 19:59:28 +03:00
/**
* @see it('parses null value')
2016-11-18 19:59:28 +03:00
*/
public function testParsesNullValues() : void
2016-11-18 19:59:28 +03:00
{
2018-09-19 18:12:09 +03:00
self::assertEquals(
2018-09-01 21:21:08 +03:00
[
'kind' => NodeKind::NULL,
'loc' => ['start' => 0, 'end' => 4],
],
self::nodeToArray(Parser::parseValue('null'))
2018-09-01 21:21:08 +03:00
);
2016-11-18 19:59:28 +03:00
}
/**
* @see it('parses list values')
*/
public function testParsesListValues() : void
{
2018-09-19 18:12:09 +03:00
self::assertEquals(
2018-09-01 21:21:08 +03:00
[
'kind' => NodeKind::LST,
'loc' => ['start' => 0, 'end' => 11],
'values' => [
[
'kind' => NodeKind::INT,
'loc' => ['start' => 1, 'end' => 4],
'value' => '123',
],
[
'kind' => NodeKind::STRING,
'loc' => ['start' => 5, 'end' => 10],
'value' => 'abc',
'block' => false,
],
],
2018-09-01 21:21:08 +03:00
],
self::nodeToArray(Parser::parseValue('[123 "abc"]'))
2018-09-01 21:21:08 +03:00
);
}
/**
* @see it('parses well known types')
*/
public function testParsesWellKnownTypes() : void
{
2018-09-19 18:12:09 +03:00
self::assertEquals(
2018-09-01 21:21:08 +03:00
[
'kind' => NodeKind::NAMED_TYPE,
'loc' => ['start' => 0, 'end' => 6],
'name' => [
'kind' => NodeKind::NAME,
'loc' => ['start' => 0, 'end' => 6],
'value' => 'String',
],
],
self::nodeToArray(Parser::parseType('String'))
2018-09-01 21:21:08 +03:00
);
}
/**
* @see it('parses custom types')
*/
public function testParsesCustomTypes() : void
{
2018-09-19 18:12:09 +03:00
self::assertEquals(
2018-09-01 21:21:08 +03:00
[
'kind' => NodeKind::NAMED_TYPE,
'loc' => ['start' => 0, 'end' => 6],
'name' => [
'kind' => NodeKind::NAME,
'loc' => ['start' => 0, 'end' => 6],
'value' => 'MyType',
],
],
self::nodeToArray(Parser::parseType('MyType'))
2018-09-01 21:21:08 +03:00
);
}
/**
* @see it('parses list types')
*/
public function testParsesListTypes() : void
{
2018-09-19 18:12:09 +03:00
self::assertEquals(
2018-09-01 21:21:08 +03:00
[
'kind' => NodeKind::LIST_TYPE,
'loc' => ['start' => 0, 'end' => 8],
'type' => [
'kind' => NodeKind::NAMED_TYPE,
'loc' => ['start' => 1, 'end' => 7],
'name' => [
'kind' => NodeKind::NAME,
'loc' => ['start' => 1, 'end' => 7],
'value' => 'MyType',
],
],
],
self::nodeToArray(Parser::parseType('[MyType]'))
2018-09-01 21:21:08 +03:00
);
}
/**
* @see it('parses non-null types')
*/
public function testParsesNonNullTypes() : void
{
2018-09-19 18:12:09 +03:00
self::assertEquals(
2018-09-01 21:21:08 +03:00
[
'kind' => NodeKind::NON_NULL_TYPE,
2018-09-01 21:21:08 +03:00
'loc' => ['start' => 0, 'end' => 7],
'type' => [
'kind' => NodeKind::NAMED_TYPE,
2018-09-01 21:21:08 +03:00
'loc' => ['start' => 0, 'end' => 6],
'name' => [
2018-09-01 21:21:08 +03:00
'kind' => NodeKind::NAME,
'loc' => ['start' => 0, 'end' => 6],
'value' => 'MyType',
],
],
],
self::nodeToArray(Parser::parseType('MyType!'))
2018-09-01 21:21:08 +03:00
);
}
/**
2018-09-01 21:21:08 +03:00
* @see it('parses nested types')
*/
2018-09-01 21:21:08 +03:00
public function testParsesNestedTypes() : void
{
2018-09-19 18:12:09 +03:00
self::assertEquals(
2018-09-01 21:21:08 +03:00
[
'kind' => NodeKind::LIST_TYPE,
'loc' => ['start' => 0, 'end' => 9],
'type' => [
'kind' => NodeKind::NON_NULL_TYPE,
'loc' => ['start' => 1, 'end' => 8],
'type' => [
'kind' => NodeKind::NAMED_TYPE,
'loc' => ['start' => 1, 'end' => 7],
'name' => [
'kind' => NodeKind::NAME,
'loc' => ['start' => 1, 'end' => 7],
'value' => 'MyType',
],
],
],
],
self::nodeToArray(Parser::parseType('[MyType!]'))
2018-09-01 21:21:08 +03:00
);
}
2015-07-15 20:05:46 +03:00
}