mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-21 20:36:05 +03:00
48 lines
1.6 KiB
PHP
48 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace GraphQL\Tests;
|
|
|
|
use GraphQL\Executor\Promise\Adapter\SyncPromiseAdapter;
|
|
use GraphQL\GraphQL;
|
|
use GraphQL\Type\Definition\ObjectType;
|
|
use GraphQL\Type\Definition\Type;
|
|
use GraphQL\Type\Schema;
|
|
use PHPUnit\Framework\TestCase;
|
|
use function sprintf;
|
|
|
|
class GraphQLTest extends TestCase
|
|
{
|
|
public function testPromiseToExecute() : void
|
|
{
|
|
$promiseAdapter = new SyncPromiseAdapter();
|
|
$schema = new Schema(
|
|
[
|
|
'query' => new ObjectType(
|
|
[
|
|
'name' => 'Query',
|
|
'fields' => [
|
|
'sayHi' => [
|
|
'type' => Type::nonNull(Type::string()),
|
|
'args' => [
|
|
'name' => [
|
|
'type' => Type::nonNull(Type::string()),
|
|
],
|
|
],
|
|
'resolve' => static function ($rootValue, $args) use ($promiseAdapter) {
|
|
return $promiseAdapter->createFulfilled(sprintf('Hi %s!', $args['name']));
|
|
},
|
|
],
|
|
],
|
|
]
|
|
),
|
|
]
|
|
);
|
|
|
|
$promise = GraphQL::promiseToExecute($promiseAdapter, $schema, '{ sayHi(name: "John") }');
|
|
$result = $promiseAdapter->wait($promise);
|
|
self::assertSame(['data' => ['sayHi' => 'Hi John!']], $result->toArray());
|
|
}
|
|
}
|