mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 12:56:05 +03:00
145 lines
4.7 KiB
PHP
145 lines
4.7 KiB
PHP
|
<?php
|
||
|
namespace GraphQL\Tests\Server;
|
||
|
|
||
|
use GraphQL\Error\FormattedError;
|
||
|
use GraphQL\Executor\Promise\Adapter\SyncPromiseAdapter;
|
||
|
use GraphQL\Schema;
|
||
|
use GraphQL\Server\ServerConfig;
|
||
|
use GraphQL\Type\Definition\ObjectType;
|
||
|
|
||
|
class ServerConfigTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
public function testDefaults()
|
||
|
{
|
||
|
$config = ServerConfig::create();
|
||
|
$this->assertEquals(null, $config->getSchema());
|
||
|
$this->assertEquals(null, $config->getContext());
|
||
|
$this->assertEquals(null, $config->getRootValue());
|
||
|
$this->assertEquals([FormattedError::class, 'createFromException'], $config->getErrorFormatter());
|
||
|
$this->assertEquals(null, $config->getPromiseAdapter());
|
||
|
$this->assertEquals(null, $config->getValidationRules());
|
||
|
$this->assertEquals(null, $config->getDefaultFieldResolver());
|
||
|
$this->assertEquals(null, $config->getPersistentQueryLoader());
|
||
|
$this->assertEquals(false, $config->getDebug());
|
||
|
}
|
||
|
|
||
|
public function testAllowsSettingSchema()
|
||
|
{
|
||
|
$schema = new Schema(['query' => new ObjectType(['name' => 'a', 'fields' => []])]);
|
||
|
$config = ServerConfig::create()
|
||
|
->setSchema($schema);
|
||
|
|
||
|
$this->assertSame($schema, $config->getSchema());
|
||
|
|
||
|
$schema2 = new Schema(['query' => new ObjectType(['name' => 'a', 'fields' => []])]);
|
||
|
$config->setSchema($schema2);
|
||
|
$this->assertSame($schema2, $config->getSchema());
|
||
|
}
|
||
|
|
||
|
public function testAllowsSettingContext()
|
||
|
{
|
||
|
$config = ServerConfig::create();
|
||
|
|
||
|
$context = [];
|
||
|
$config->setContext($context);
|
||
|
$this->assertSame($context, $config->getContext());
|
||
|
|
||
|
$context2 = new \stdClass();
|
||
|
$config->setContext($context2);
|
||
|
$this->assertSame($context2, $config->getContext());
|
||
|
}
|
||
|
|
||
|
public function testAllowsSettingRootValue()
|
||
|
{
|
||
|
$config = ServerConfig::create();
|
||
|
|
||
|
$rootValue = [];
|
||
|
$config->setRootValue($rootValue);
|
||
|
$this->assertSame($rootValue, $config->getRootValue());
|
||
|
|
||
|
$context2 = new \stdClass();
|
||
|
$config->setRootValue($context2);
|
||
|
$this->assertSame($context2, $config->getRootValue());
|
||
|
}
|
||
|
|
||
|
public function testAllowsSettingErrorFormatter()
|
||
|
{
|
||
|
$config = ServerConfig::create();
|
||
|
|
||
|
$formatter = function() {};
|
||
|
$config->setErrorFormatter($formatter);
|
||
|
$this->assertSame($formatter, $config->getErrorFormatter());
|
||
|
|
||
|
$formatter = 'date'; // test for callable
|
||
|
$config->setErrorFormatter($formatter);
|
||
|
$this->assertSame($formatter, $config->getErrorFormatter());
|
||
|
}
|
||
|
|
||
|
public function testAllowsSettingPromiseAdapter()
|
||
|
{
|
||
|
$config = ServerConfig::create();
|
||
|
|
||
|
$adapter1 = new SyncPromiseAdapter();
|
||
|
$config->setPromiseAdapter($adapter1);
|
||
|
$this->assertSame($adapter1, $config->getPromiseAdapter());
|
||
|
|
||
|
$adapter2 = new SyncPromiseAdapter();
|
||
|
$config->setPromiseAdapter($adapter2);
|
||
|
$this->assertSame($adapter2, $config->getPromiseAdapter());
|
||
|
}
|
||
|
|
||
|
public function testAllowsSettingValidationRules()
|
||
|
{
|
||
|
$config = ServerConfig::create();
|
||
|
|
||
|
$rules = [];
|
||
|
$config->setValidationRules($rules);
|
||
|
$this->assertSame($rules, $config->getValidationRules());
|
||
|
|
||
|
$rules = [function() {}];
|
||
|
$config->setValidationRules($rules);
|
||
|
$this->assertSame($rules, $config->getValidationRules());
|
||
|
|
||
|
$rules = function() {return [function() {}];};
|
||
|
$config->setValidationRules($rules);
|
||
|
$this->assertSame($rules, $config->getValidationRules());
|
||
|
}
|
||
|
|
||
|
public function testAllowsSettingDefaultFieldResolver()
|
||
|
{
|
||
|
$config = ServerConfig::create();
|
||
|
|
||
|
$resolver = function() {};
|
||
|
$config->setDefaultFieldResolver($resolver);
|
||
|
$this->assertSame($resolver, $config->getDefaultFieldResolver());
|
||
|
|
||
|
$resolver = 'date'; // test for callable
|
||
|
$config->setDefaultFieldResolver($resolver);
|
||
|
$this->assertSame($resolver, $config->getDefaultFieldResolver());
|
||
|
}
|
||
|
|
||
|
public function testAllowsSettingPersistedQueryLoader()
|
||
|
{
|
||
|
$config = ServerConfig::create();
|
||
|
|
||
|
$loader = function() {};
|
||
|
$config->setPersistentQueryLoader($loader);
|
||
|
$this->assertSame($loader, $config->getPersistentQueryLoader());
|
||
|
|
||
|
$loader = 'date'; // test for callable
|
||
|
$config->setPersistentQueryLoader($loader);
|
||
|
$this->assertSame($loader, $config->getPersistentQueryLoader());
|
||
|
}
|
||
|
|
||
|
public function testAllowsSettingCatchPhpErrors()
|
||
|
{
|
||
|
$config = ServerConfig::create();
|
||
|
|
||
|
$config->setDebug(true);
|
||
|
$this->assertSame(true, $config->getDebug());
|
||
|
|
||
|
$config->setDebug(false);
|
||
|
$this->assertSame(false, $config->getDebug());
|
||
|
}
|
||
|
}
|