2017-08-20 21:16:55 +03:00
|
|
|
<?php
|
|
|
|
namespace GraphQL\Tests\Server;
|
|
|
|
|
|
|
|
|
|
|
|
use GraphQL\Deferred;
|
|
|
|
use GraphQL\Error\UserError;
|
|
|
|
use GraphQL\Type\Definition\ObjectType;
|
|
|
|
use GraphQL\Type\Definition\Type;
|
|
|
|
use GraphQL\Type\Schema;
|
2018-07-29 18:43:10 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2017-08-20 21:16:55 +03:00
|
|
|
|
2018-07-29 18:43:10 +03:00
|
|
|
abstract class ServerTestCase extends TestCase
|
2017-08-20 21:16:55 +03:00
|
|
|
{
|
|
|
|
protected function buildSchema()
|
|
|
|
{
|
|
|
|
$schema = new Schema([
|
|
|
|
'query' => new ObjectType([
|
|
|
|
'name' => 'Query',
|
|
|
|
'fields' => [
|
|
|
|
'f1' => [
|
|
|
|
'type' => Type::string(),
|
|
|
|
'resolve' => function($root, $args, $context, $info) {
|
|
|
|
return $info->fieldName;
|
|
|
|
}
|
|
|
|
],
|
|
|
|
'fieldWithPhpError' => [
|
|
|
|
'type' => Type::string(),
|
|
|
|
'resolve' => function($root, $args, $context, $info) {
|
|
|
|
trigger_error('deprecated', E_USER_DEPRECATED);
|
|
|
|
trigger_error('notice', E_USER_NOTICE);
|
|
|
|
trigger_error('warning', E_USER_WARNING);
|
|
|
|
$a = [];
|
|
|
|
$a['test']; // should produce PHP notice
|
|
|
|
return $info->fieldName;
|
|
|
|
}
|
|
|
|
],
|
|
|
|
'fieldWithException' => [
|
|
|
|
'type' => Type::string(),
|
|
|
|
'resolve' => function($root, $args, $context, $info) {
|
|
|
|
throw new UserError("This is the exception we want");
|
|
|
|
}
|
|
|
|
],
|
|
|
|
'testContextAndRootValue' => [
|
|
|
|
'type' => Type::string(),
|
|
|
|
'resolve' => function($root, $args, $context, $info) {
|
|
|
|
$context->testedRootValue = $root;
|
|
|
|
return $info->fieldName;
|
|
|
|
}
|
|
|
|
],
|
|
|
|
'fieldWithArg' => [
|
|
|
|
'type' => Type::string(),
|
|
|
|
'args' => [
|
|
|
|
'arg' => [
|
|
|
|
'type' => Type::nonNull(Type::string())
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'resolve' => function($root, $args) {
|
|
|
|
return $args['arg'];
|
|
|
|
}
|
|
|
|
],
|
|
|
|
'dfd' => [
|
|
|
|
'type' => Type::string(),
|
|
|
|
'args' => [
|
|
|
|
'num' => [
|
|
|
|
'type' => Type::nonNull(Type::int())
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'resolve' => function($root, $args, $context) {
|
|
|
|
$context['buffer']($args['num']);
|
|
|
|
|
|
|
|
return new Deferred(function() use ($args, $context) {
|
|
|
|
return $context['load']($args['num']);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]),
|
|
|
|
'mutation' => new ObjectType([
|
|
|
|
'name' => 'Mutation',
|
|
|
|
'fields' => [
|
|
|
|
'm1' => [
|
|
|
|
'type' => new ObjectType([
|
|
|
|
'name' => 'TestMutation',
|
|
|
|
'fields' => [
|
|
|
|
'result' => Type::string()
|
|
|
|
]
|
|
|
|
])
|
|
|
|
]
|
|
|
|
]
|
|
|
|
])
|
|
|
|
]);
|
|
|
|
return $schema;
|
|
|
|
}
|
|
|
|
}
|