mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 21:06:05 +03:00
90 lines
1.7 KiB
PHP
90 lines
1.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace GraphQL\Tests\Validator;
|
|
|
|
use GraphQL\Error\FormattedError;
|
|
use GraphQL\Language\SourceLocation;
|
|
use GraphQL\Validator\Rules\ExecutableDefinitions;
|
|
|
|
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)]
|
|
);
|
|
}
|
|
}
|