From 8e02fdc5377f754c763775fce5e3dcc099201bfe Mon Sep 17 00:00:00 2001 From: Vladimir Razuvaev Date: Wed, 8 Aug 2018 00:41:20 +0700 Subject: [PATCH] Parser: allowLegacySDLEmptyFields option + minor naming tweaks --- src/Language/Parser.php | 62 ++++++++++++++++++++--------- tests/Language/SchemaParserTest.php | 23 +++++++++++ 2 files changed, 67 insertions(+), 18 deletions(-) diff --git a/src/Language/Parser.php b/src/Language/Parser.php index 08481b6..98546f6 100644 --- a/src/Language/Parser.php +++ b/src/Language/Parser.php @@ -62,23 +62,32 @@ class Parser * Available options: * * noLocation: boolean, - * (By default, the parser creates AST nodes that know the location - * in the source that they correspond to. This configuration flag - * disables that behavior for performance or testing.) + * (By default, the parser creates AST nodes that know the location + * in the source that they correspond to. This configuration flag + * disables that behavior for performance or testing.) + * + * + * allowLegacySDLEmptyFields: boolean + * If enabled, the parser will parse empty fields sets in the Schema + * Definition Language. Otherwise, the parser will follow the current + * specification. + * + * This option is provided to ease adoption of the final SDL specification + * and will be removed in a future major release. * * experimentalFragmentVariables: boolean, - * (If enabled, the parser will understand and parse variable definitions - * contained in a fragment definition. They'll be represented in the - * `variableDefinitions` field of the FragmentDefinitionNode. + * (If enabled, the parser will understand and parse variable definitions + * contained in a fragment definition. They'll be represented in the + * `variableDefinitions` field of the FragmentDefinitionNode. * - * The syntax is identical to normal, query-defined variables. For example: + * The syntax is identical to normal, query-defined variables. For example: * - * fragment A($var: Boolean = false) on T { - * ... - * } + * fragment A($var: Boolean = false) on T { + * ... + * } * - * Note: this feature is experimental and may change or be removed in the - * future.) + * Note: this feature is experimental and may change or be removed in the + * future.) * * @api * @param Source|string $source @@ -1083,6 +1092,16 @@ class Parser */ function parseFieldsDefinition() { + // Legacy support for the SDL? + if ( + !empty($this->lexer->options['allowLegacySDLEmptyFields']) && + $this->peek(Token::BRACE_L) && + $this->lexer->lookahead()->kind === Token::BRACE_R + ) { + $this->lexer->advance(); + $this->lexer->advance(); + return []; + } return $this->peek(Token::BRACE_L) ? $this->many( Token::BRACE_L, @@ -1177,6 +1196,9 @@ class Parser } /** + * UnionTypeDefinition : + * - Description? union Name Directives[Const]? UnionMemberTypes? + * * @return UnionTypeDefinitionNode * @throws SyntaxError */ @@ -1187,7 +1209,7 @@ class Parser $this->expectKeyword('union'); $name = $this->parseName(); $directives = $this->parseDirectives(true); - $types = $this->parseMemberTypesDefinition(); + $types = $this->parseUnionMemberTypes(); return new UnionTypeDefinitionNode([ 'name' => $name, @@ -1199,13 +1221,13 @@ class Parser } /** - * MemberTypes : - * - `|`? NamedType - * - MemberTypes | NamedType + * UnionMemberTypes : + * - = `|`? NamedType + * - UnionMemberTypes | NamedType * * @return NamedTypeNode[] */ - function parseMemberTypesDefinition() + function parseUnionMemberTypes() { $types = []; if ($this->skip(Token::EQUALS)) { @@ -1424,6 +1446,10 @@ class Parser } /** + * UnionTypeExtension : + * - extend union Name Directives[Const]? UnionMemberTypes + * - extend union Name Directives[Const] + * * @return UnionTypeExtensionNode * @throws SyntaxError */ @@ -1433,7 +1459,7 @@ class Parser $this->expectKeyword('union'); $name = $this->parseName(); $directives = $this->parseDirectives(true); - $types = $this->parseMemberTypesDefinition(); + $types = $this->parseUnionMemberTypes(); if ( count($directives) === 0 && !$types diff --git a/tests/Language/SchemaParserTest.php b/tests/Language/SchemaParserTest.php index c916add..a0a2b1f 100644 --- a/tests/Language/SchemaParserTest.php +++ b/tests/Language/SchemaParserTest.php @@ -861,6 +861,29 @@ input Hello { ); } + public function testDoesNotAllowEmptyFields() + { + $body = 'type Hello { }'; + $this->expectSyntaxError($body, 'Syntax Error: Expected Name, found }', new SourceLocation(1, 14)); + } + + /** + * @it Option: allowLegacySDLEmptyFields supports type with empty fields + */ + public function testAllowLegacySDLEmptyFieldsOption() + { + $body = 'type Hello { }'; + $doc = Parser::parse($body, ['allowLegacySDLEmptyFields' => true]); + $expected = [ + 'definitions' => [ + [ + 'fields' => [], + ], + ], + ]; + $this->assertArraySubset($expected, $doc->toArray(true)); + } + private function typeNode($name, $loc) { return [