graphql-php/tests/Executor/ExecutorLazySchemaTest.php

447 lines
14 KiB
PHP
Raw Normal View History

<?php
2018-09-01 18:07:06 +03:00
declare(strict_types=1);
namespace GraphQL\Tests\Executor;
use GraphQL\Error\InvariantViolation;
use GraphQL\Error\Warning;
use GraphQL\Executor\ExecutionResult;
use GraphQL\Executor\Executor;
use GraphQL\Language\Parser;
2018-09-01 18:07:06 +03:00
use GraphQL\Tests\Executor\TestClasses\Cat;
use GraphQL\Tests\Executor\TestClasses\Dog;
use GraphQL\Type\Definition\CustomScalarType;
2018-09-01 18:07:06 +03:00
use GraphQL\Type\Definition\EnumType;
use GraphQL\Type\Definition\InputObjectType;
use GraphQL\Type\Definition\InterfaceType;
use GraphQL\Type\Definition\ObjectType;
2018-09-01 18:07:06 +03:00
use GraphQL\Type\Definition\ScalarType;
use GraphQL\Type\Definition\Type;
use GraphQL\Type\Definition\UnionType;
use GraphQL\Type\Schema;
2018-07-29 18:43:10 +03:00
use PHPUnit\Framework\Error\Error;
use PHPUnit\Framework\TestCase;
2018-09-01 18:07:06 +03:00
use function count;
2018-07-29 18:43:10 +03:00
class ExecutorLazySchemaTest extends TestCase
{
2018-09-01 18:07:06 +03:00
/** @var ScalarType */
public $someScalarType;
2018-09-01 18:07:06 +03:00
/** @var ObjectType */
public $someObjectType;
2018-09-01 18:07:06 +03:00
/** @var ObjectType */
public $otherObjectType;
2018-09-01 18:07:06 +03:00
/** @var ObjectType */
public $deeperObjectType;
2018-09-01 18:07:06 +03:00
/** @var UnionType */
public $someUnionType;
2018-09-01 18:07:06 +03:00
/** @var InterfaceType */
public $someInterfaceType;
2018-09-01 18:07:06 +03:00
/** @var EnumType */
public $someEnumType;
2018-09-01 18:07:06 +03:00
/** @var InputObjectType */
public $someInputObjectType;
2018-09-01 18:07:06 +03:00
/** @var ObjectType */
public $queryType;
2018-09-01 18:07:06 +03:00
/** @var string[] */
public $calls = [];
2018-09-01 18:07:06 +03:00
/** @var bool[] */
public $loadedTypes = [];
public function testWarnsAboutSlowIsTypeOfForLazySchema() : void
{
// isTypeOf used to resolve runtime type for Interface
$petType = new InterfaceType([
2018-09-01 18:07:06 +03:00
'name' => 'Pet',
'fields' => function () {
return [
2018-09-01 18:07:06 +03:00
'name' => ['type' => Type::string()],
];
2018-09-01 18:07:06 +03:00
},
]);
// Added to interface type when defined
$dogType = new ObjectType([
2018-09-01 18:07:06 +03:00
'name' => 'Dog',
'interfaces' => [$petType],
2018-09-01 18:07:06 +03:00
'isTypeOf' => function ($obj) {
return $obj instanceof Dog;
},
'fields' => function () {
return [
2018-09-01 18:07:06 +03:00
'name' => ['type' => Type::string()],
'woofs' => ['type' => Type::boolean()],
];
2018-09-01 18:07:06 +03:00
},
]);
$catType = new ObjectType([
2018-09-01 18:07:06 +03:00
'name' => 'Cat',
'interfaces' => [$petType],
2018-09-01 18:07:06 +03:00
'isTypeOf' => function ($obj) {
return $obj instanceof Cat;
},
2018-09-01 18:07:06 +03:00
'fields' => function () {
return [
2018-09-01 18:07:06 +03:00
'name' => ['type' => Type::string()],
'meows' => ['type' => Type::boolean()],
];
2018-09-01 18:07:06 +03:00
},
]);
$schema = new Schema([
2018-09-01 18:07:06 +03:00
'query' => new ObjectType([
'name' => 'Query',
'fields' => [
'pets' => [
2018-09-01 18:07:06 +03:00
'type' => Type::listOf($petType),
'resolve' => function () {
return [new Dog('Odie', true), new Cat('Garfield', false)];
2018-09-01 18:07:06 +03:00
},
],
],
]),
2018-09-01 18:07:06 +03:00
'types' => [$catType, $dogType],
'typeLoader' => function ($name) use ($dogType, $petType, $catType) {
switch ($name) {
case 'Dog':
return $dogType;
case 'Pet':
return $petType;
case 'Cat':
return $catType;
}
2018-09-01 18:07:06 +03:00
},
]);
$query = '{
pets {
name
... on Dog {
woofs
}
... on Cat {
meows
}
}
}';
$expected = new ExecutionResult([
'pets' => [
['name' => 'Odie', 'woofs' => true],
2018-09-01 18:07:06 +03:00
['name' => 'Garfield', 'meows' => false],
],
]);
Warning::suppress(Warning::WARNING_FULL_SCHEMA_SCAN);
$result = Executor::execute($schema, Parser::parse($query));
$this->assertEquals($expected, $result);
Warning::enable(Warning::WARNING_FULL_SCHEMA_SCAN);
$result = Executor::execute($schema, Parser::parse($query));
$this->assertEquals(1, count($result->errors));
2018-07-29 18:43:10 +03:00
$this->assertInstanceOf(Error::class, $result->errors[0]->getPrevious());
$this->assertEquals(
2018-09-01 18:07:06 +03:00
'GraphQL Interface Type `Pet` returned `null` from it`s `resolveType` function for value: instance of ' .
'GraphQL\Tests\Executor\TestClasses\Dog. Switching to slow resolution method using `isTypeOf` of all possible ' .
'implementations. It requires full schema scan and degrades query performance significantly. ' .
'Make sure your `resolveType` always returns valid implementation or throws.',
2018-09-01 18:07:06 +03:00
$result->errors[0]->getMessage()
);
}
public function testHintsOnConflictingTypeInstancesInDefinitions() : void
{
2018-09-01 18:07:06 +03:00
$calls = [];
$typeLoader = function ($name) use (&$calls) {
$calls[] = $name;
switch ($name) {
case 'Test':
return new ObjectType([
2018-09-01 18:07:06 +03:00
'name' => 'Test',
'fields' => function () {
return [
'test' => Type::string(),
];
2018-09-01 18:07:06 +03:00
},
]);
default:
return null;
}
};
2018-09-01 18:07:06 +03:00
$query = new ObjectType([
2018-09-01 18:07:06 +03:00
'name' => 'Query',
'fields' => function () use ($typeLoader) {
return [
2018-09-01 18:07:06 +03:00
'test' => $typeLoader('Test'),
];
2018-09-01 18:07:06 +03:00
},
]);
2018-09-01 18:07:06 +03:00
$schema = new Schema([
2018-09-01 18:07:06 +03:00
'query' => $query,
'typeLoader' => $typeLoader,
]);
$query = '
{
test {
test
}
}
';
$this->assertEquals([], $calls);
$result = Executor::execute($schema, Parser::parse($query), ['test' => ['test' => 'value']]);
$this->assertEquals(['Test', 'Test'], $calls);
$this->assertEquals(
2018-09-01 18:07:06 +03:00
'Schema must contain unique named types but contains multiple types named "Test". ' .
'Make sure that type loader returns the same instance as defined in Query.test ' .
'(see http://webonyx.github.io/graphql-php/type-system/#type-registry).',
$result->errors[0]->getMessage()
);
$this->assertInstanceOf(
InvariantViolation::class,
$result->errors[0]->getPrevious()
);
}
public function testSimpleQuery() : void
{
$schema = new Schema([
2018-09-01 18:07:06 +03:00
'query' => $this->loadType('Query'),
'typeLoader' => function ($name) {
return $this->loadType($name, true);
2018-09-01 18:07:06 +03:00
},
]);
2018-09-01 18:07:06 +03:00
$query = '{ object { string } }';
$result = Executor::execute(
$schema,
Parser::parse($query),
['object' => ['string' => 'test']]
);
2018-09-01 18:07:06 +03:00
$expected = [
'data' => ['object' => ['string' => 'test']],
];
$expectedExecutorCalls = [
'Query.fields',
'SomeObject',
2018-09-01 18:07:06 +03:00
'SomeObject.fields',
];
$this->assertEquals($expected, $result->toArray(true));
$this->assertEquals($expectedExecutorCalls, $this->calls);
}
2018-09-01 18:07:06 +03:00
public function loadType($name, $isExecutorCall = false)
{
if ($isExecutorCall) {
$this->calls[] = $name;
}
$this->loadedTypes[$name] = true;
switch ($name) {
case 'Query':
return $this->queryType ?: $this->queryType = new ObjectType([
'name' => 'Query',
'fields' => function () {
$this->calls[] = 'Query.fields';
return [
'object' => ['type' => $this->loadType('SomeObject')],
'other' => ['type' => $this->loadType('OtherObject')],
];
},
]);
case 'SomeObject':
return $this->someObjectType ?: $this->someObjectType = new ObjectType([
'name' => 'SomeObject',
'fields' => function () {
$this->calls[] = 'SomeObject.fields';
return [
'string' => ['type' => Type::string()],
'object' => ['type' => $this->someObjectType],
];
},
'interfaces' => function () {
$this->calls[] = 'SomeObject.interfaces';
return [
$this->loadType('SomeInterface'),
];
},
]);
case 'OtherObject':
return $this->otherObjectType ?: $this->otherObjectType = new ObjectType([
'name' => 'OtherObject',
'fields' => function () {
$this->calls[] = 'OtherObject.fields';
return [
'union' => ['type' => $this->loadType('SomeUnion')],
'iface' => ['type' => Type::nonNull($this->loadType('SomeInterface'))],
];
},
]);
case 'DeeperObject':
return $this->deeperObjectType ?: $this->deeperObjectType = new ObjectType([
'name' => 'DeeperObject',
'fields' => function () {
return [
'scalar' => ['type' => $this->loadType('SomeScalar')],
];
},
]);
case 'SomeScalar':
return $this->someScalarType ?: $this->someScalarType = new CustomScalarType([
'name' => 'SomeScalar',
'serialize' => function ($value) {
return $value;
},
'parseValue' => function ($value) {
return $value;
},
'parseLiteral' => function () {
},
]);
case 'SomeUnion':
return $this->someUnionType ?: $this->someUnionType = new UnionType([
'name' => 'SomeUnion',
'resolveType' => function () {
$this->calls[] = 'SomeUnion.resolveType';
return $this->loadType('DeeperObject');
},
'types' => function () {
$this->calls[] = 'SomeUnion.types';
return [$this->loadType('DeeperObject')];
},
]);
case 'SomeInterface':
return $this->someInterfaceType ?: $this->someInterfaceType = new InterfaceType([
'name' => 'SomeInterface',
'resolveType' => function () {
$this->calls[] = 'SomeInterface.resolveType';
return $this->loadType('SomeObject');
},
'fields' => function () {
$this->calls[] = 'SomeInterface.fields';
return [
'string' => ['type' => Type::string()],
];
},
]);
default:
return null;
}
}
public function testDeepQuery() : void
{
$schema = new Schema([
2018-09-01 18:07:06 +03:00
'query' => $this->loadType('Query'),
'typeLoader' => function ($name) {
return $this->loadType($name, true);
2018-09-01 18:07:06 +03:00
},
]);
2018-09-01 18:07:06 +03:00
$query = '{ object { object { object { string } } } }';
$result = Executor::execute(
$schema,
Parser::parse($query),
['object' => ['object' => ['object' => ['string' => 'test']]]]
);
2018-09-01 18:07:06 +03:00
$expected = [
'data' => ['object' => ['object' => ['object' => ['string' => 'test']]]],
];
$expectedLoadedTypes = [
2018-09-01 18:07:06 +03:00
'Query' => true,
'SomeObject' => true,
'OtherObject' => true,
];
$this->assertEquals($expected, $result->toArray(true));
$this->assertEquals($expectedLoadedTypes, $this->loadedTypes);
$expectedExecutorCalls = [
'Query.fields',
'SomeObject',
2018-09-01 18:07:06 +03:00
'SomeObject.fields',
];
$this->assertEquals($expectedExecutorCalls, $this->calls);
}
public function testResolveUnion() : void
{
$schema = new Schema([
2018-09-01 18:07:06 +03:00
'query' => $this->loadType('Query'),
'typeLoader' => function ($name) {
return $this->loadType($name, true);
2018-09-01 18:07:06 +03:00
},
]);
2018-09-01 18:07:06 +03:00
$query = '
{
other {
union {
scalar
}
}
}
';
$result = Executor::execute(
$schema,
Parser::parse($query),
['other' => ['union' => ['scalar' => 'test']]]
);
2018-09-01 18:07:06 +03:00
$expected = [
'data' => ['other' => ['union' => ['scalar' => 'test']]],
];
$expectedLoadedTypes = [
2018-09-01 18:07:06 +03:00
'Query' => true,
'SomeObject' => true,
'OtherObject' => true,
'SomeUnion' => true,
'SomeInterface' => true,
2018-09-01 18:07:06 +03:00
'DeeperObject' => true,
'SomeScalar' => true,
];
$this->assertEquals($expected, $result->toArray(true));
$this->assertEquals($expectedLoadedTypes, $this->loadedTypes);
$expectedCalls = [
'Query.fields',
'OtherObject',
'OtherObject.fields',
'SomeUnion',
'SomeUnion.resolveType',
'SomeUnion.types',
'DeeperObject',
'SomeScalar',
];
$this->assertEquals($expectedCalls, $this->calls);
}
}