mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 12:56:05 +03:00
108 lines
4.1 KiB
PHP
108 lines
4.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
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;
|
|
use PHPUnit\Framework\TestCase;
|
|
use function trigger_error;
|
|
use const E_USER_DEPRECATED;
|
|
use const E_USER_NOTICE;
|
|
use const E_USER_WARNING;
|
|
|
|
abstract class ServerTestCase extends TestCase
|
|
{
|
|
protected function buildSchema()
|
|
{
|
|
return new Schema([
|
|
'query' => new ObjectType([
|
|
'name' => 'Query',
|
|
'fields' => [
|
|
'f1' => [
|
|
'type' => Type::string(),
|
|
'resolve' => static function ($rootValue, $args, $context, $info) {
|
|
return $info->fieldName;
|
|
},
|
|
],
|
|
'fieldWithPhpError' => [
|
|
'type' => Type::string(),
|
|
'resolve' => static function ($rootValue, $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;
|
|
},
|
|
],
|
|
'fieldWithSafeException' => [
|
|
'type' => Type::string(),
|
|
'resolve' => static function () {
|
|
throw new UserError('This is the exception we want');
|
|
},
|
|
],
|
|
'fieldWithUnsafeException' => [
|
|
'type' => Type::string(),
|
|
'resolve' => static function () {
|
|
throw new Unsafe('This exception should not be shown to the user');
|
|
},
|
|
],
|
|
'testContextAndRootValue' => [
|
|
'type' => Type::string(),
|
|
'resolve' => static function ($rootValue, $args, $context, $info) {
|
|
$context->testedRootValue = $rootValue;
|
|
|
|
return $info->fieldName;
|
|
},
|
|
],
|
|
'fieldWithArg' => [
|
|
'type' => Type::string(),
|
|
'args' => [
|
|
'arg' => [
|
|
'type' => Type::nonNull(Type::string()),
|
|
],
|
|
],
|
|
'resolve' => static function ($rootValue, $args) {
|
|
return $args['arg'];
|
|
},
|
|
],
|
|
'dfd' => [
|
|
'type' => Type::string(),
|
|
'args' => [
|
|
'num' => [
|
|
'type' => Type::nonNull(Type::int()),
|
|
],
|
|
],
|
|
'resolve' => static function ($rootValue, $args, $context) {
|
|
$context['buffer']($args['num']);
|
|
|
|
return new Deferred(static 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(),
|
|
],
|
|
]),
|
|
],
|
|
],
|
|
]),
|
|
]);
|
|
}
|
|
}
|