mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 12:56:05 +03:00
80 lines
1.7 KiB
PHP
80 lines
1.7 KiB
PHP
<?php
|
|
namespace GraphQL\Tests\Validator;
|
|
|
|
use GraphQL\Error\FormattedError;
|
|
use GraphQL\Language\SourceLocation;
|
|
use GraphQL\Validator\Rules\ExecutableDefinitions;
|
|
use GraphQL\Validator\Rules\KnownDirectives;
|
|
|
|
class ExecutableDefinitionsTest extends ValidatorTestCase
|
|
{
|
|
// Validate: Executable definitions
|
|
|
|
/**
|
|
* @see it('with only operation')
|
|
*/
|
|
public function testWithOnlyOperation() : void
|
|
{
|
|
$this->expectPassesRule(new ExecutableDefinitions, '
|
|
query Foo {
|
|
dog {
|
|
name
|
|
}
|
|
}
|
|
');
|
|
}
|
|
|
|
/**
|
|
* @see it('with operation and fragment')
|
|
*/
|
|
public function testWithOperationAndFragment() : void
|
|
{
|
|
$this->expectPassesRule(new ExecutableDefinitions, '
|
|
query Foo {
|
|
dog {
|
|
name
|
|
...Frag
|
|
}
|
|
}
|
|
|
|
fragment Frag on Dog {
|
|
name
|
|
}
|
|
');
|
|
}
|
|
|
|
/**
|
|
* @see it('with typeDefinition')
|
|
*/
|
|
public function testWithTypeDefinition() : void
|
|
{
|
|
$this->expectFailsRule(new ExecutableDefinitions, '
|
|
query Foo {
|
|
dog {
|
|
name
|
|
}
|
|
}
|
|
|
|
type Cow {
|
|
name: String
|
|
}
|
|
|
|
extend type Dog {
|
|
color: String
|
|
}
|
|
',
|
|
[
|
|
$this->nonExecutableDefinition('Cow', 8, 12),
|
|
$this->nonExecutableDefinition('Dog', 12, 19),
|
|
]);
|
|
}
|
|
|
|
private function nonExecutableDefinition($defName, $line, $column)
|
|
{
|
|
return FormattedError::create(
|
|
ExecutableDefinitions::nonExecutableDefinitionMessage($defName),
|
|
[ new SourceLocation($line, $column) ]
|
|
);
|
|
}
|
|
}
|