graphql-php/tests/Language/SerializationTest.php

101 lines
4.0 KiB
PHP
Raw Normal View History

<?php
2018-09-01 21:21:08 +03:00
declare(strict_types=1);
namespace GraphQL\Tests\Language;
use GraphQL\Language\AST\Location;
use GraphQL\Language\AST\Node;
use GraphQL\Language\AST\NodeList;
use GraphQL\Language\Parser;
use GraphQL\Utils\AST;
2018-07-29 18:43:10 +03:00
use PHPUnit\Framework\TestCase;
2018-09-01 21:21:08 +03:00
use function array_keys;
use function count;
use function file_get_contents;
use function get_class;
use function get_object_vars;
use function implode;
use function json_decode;
2018-07-29 18:43:10 +03:00
class SerializationTest extends TestCase
{
public function testSerializesAst() : void
{
$kitchenSink = file_get_contents(__DIR__ . '/kitchen-sink.graphql');
2018-09-01 21:21:08 +03:00
$ast = Parser::parse($kitchenSink);
$expectedAst = json_decode(file_get_contents(__DIR__ . '/kitchen-sink.ast'), true);
2018-09-19 18:12:09 +03:00
self::assertEquals($expectedAst, $ast->toArray(true));
}
public function testUnserializesAst() : void
{
2018-09-01 21:21:08 +03:00
$kitchenSink = file_get_contents(__DIR__ . '/kitchen-sink.graphql');
$serializedAst = json_decode(file_get_contents(__DIR__ . '/kitchen-sink.ast'), true);
2018-09-01 21:21:08 +03:00
$actualAst = AST::fromArray($serializedAst);
$parsedAst = Parser::parse($kitchenSink);
2018-09-19 18:12:09 +03:00
self::assertNodesAreEqual($parsedAst, $actualAst);
}
/**
* Compares two nodes by actually iterating over all NodeLists, properly comparing locations (ignoring tokens), etc
*
2018-09-01 21:21:08 +03:00
* @param string[] $path
*/
2018-09-19 18:12:09 +03:00
private static function assertNodesAreEqual(Node $expected, Node $actual, array $path = []) : void
{
2018-09-01 21:21:08 +03:00
$err = 'Mismatch at AST path: ' . implode(', ', $path);
2018-09-19 18:12:09 +03:00
self::assertInstanceOf(Node::class, $actual, $err);
self::assertEquals(get_class($expected), get_class($actual), $err);
$expectedVars = get_object_vars($expected);
2018-09-01 21:21:08 +03:00
$actualVars = get_object_vars($actual);
2018-09-19 18:12:09 +03:00
self::assertCount(count($expectedVars), $actualVars, $err);
self::assertEquals(array_keys($expectedVars), array_keys($actualVars), $err);
foreach ($expectedVars as $name => $expectedValue) {
$actualValue = $actualVars[$name];
2018-09-01 21:21:08 +03:00
$tmpPath = $path;
$tmpPath[] = $name;
$err = 'Mismatch at AST path: ' . implode(', ', $tmpPath);
if ($expectedValue instanceof Node) {
2018-09-19 18:12:09 +03:00
self::assertNodesAreEqual($expectedValue, $actualValue, $tmpPath);
2018-09-01 21:21:08 +03:00
} elseif ($expectedValue instanceof NodeList) {
2018-09-19 18:12:09 +03:00
self::assertEquals(count($expectedValue), count($actualValue), $err);
self::assertInstanceOf(NodeList::class, $actualValue, $err);
foreach ($expectedValue as $index => $listNode) {
2018-09-01 21:21:08 +03:00
$tmpPath2 = $tmpPath;
$tmpPath2[] = $index;
2018-09-19 18:12:09 +03:00
self::assertNodesAreEqual($listNode, $actualValue[$index], $tmpPath2);
}
2018-09-01 21:21:08 +03:00
} elseif ($expectedValue instanceof Location) {
2018-09-19 18:12:09 +03:00
self::assertInstanceOf(Location::class, $actualValue, $err);
self::assertSame($expectedValue->start, $actualValue->start, $err);
self::assertSame($expectedValue->end, $actualValue->end, $err);
} else {
2018-09-19 18:12:09 +03:00
self::assertEquals($expectedValue, $actualValue, $err);
}
}
}
2018-09-01 21:21:08 +03:00
public function testSerializeSupportsNoLocationOption() : void
{
$kitchenSink = file_get_contents(__DIR__ . '/kitchen-sink.graphql');
$ast = Parser::parse($kitchenSink, ['noLocation' => true]);
$expectedAst = json_decode(file_get_contents(__DIR__ . '/kitchen-sink-noloc.ast'), true);
2018-09-19 18:12:09 +03:00
self::assertEquals($expectedAst, $ast->toArray(true));
2018-09-01 21:21:08 +03:00
}
public function testUnserializeSupportsNoLocationOption() : void
{
$kitchenSink = file_get_contents(__DIR__ . '/kitchen-sink.graphql');
$serializedAst = json_decode(file_get_contents(__DIR__ . '/kitchen-sink-noloc.ast'), true);
$actualAst = AST::fromArray($serializedAst);
$parsedAst = Parser::parse($kitchenSink, ['noLocation' => true]);
2018-09-19 18:12:09 +03:00
self::assertNodesAreEqual($parsedAst, $actualAst);
2018-09-01 21:21:08 +03:00
}
}