mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-26 14:56:03 +03:00
127 lines
2.4 KiB
PHP
127 lines
2.4 KiB
PHP
|
<?php
|
||
|
namespace GraphQL\Tests\Validator;
|
||
|
|
||
|
use GraphQL\FormattedError;
|
||
|
use GraphQL\Language\SourceLocation;
|
||
|
use GraphQL\Validator\Rules\LoneAnonymousOperation;
|
||
|
|
||
|
class LoneAnonymousOperationTest extends TestCase
|
||
|
{
|
||
|
// Validate: Anonymous operation must be alone
|
||
|
|
||
|
/**
|
||
|
* @it no operations
|
||
|
*/
|
||
|
public function testNoOperations()
|
||
|
{
|
||
|
$this->expectPassesRule(new LoneAnonymousOperation, '
|
||
|
fragment fragA on Type {
|
||
|
field
|
||
|
}
|
||
|
');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @it one anon operation
|
||
|
*/
|
||
|
public function testOneAnonOperation()
|
||
|
{
|
||
|
$this->expectPassesRule(new LoneAnonymousOperation, '
|
||
|
{
|
||
|
field
|
||
|
}
|
||
|
');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @it multiple named operations
|
||
|
*/
|
||
|
public function testMultipleNamedOperations()
|
||
|
{
|
||
|
$this->expectPassesRule(new LoneAnonymousOperation, '
|
||
|
query Foo {
|
||
|
field
|
||
|
}
|
||
|
|
||
|
query Bar {
|
||
|
field
|
||
|
}
|
||
|
');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @it anon operation with fragment
|
||
|
*/
|
||
|
public function testAnonOperationWithFragment()
|
||
|
{
|
||
|
$this->expectPassesRule(new LoneAnonymousOperation, '
|
||
|
{
|
||
|
...Foo
|
||
|
}
|
||
|
fragment Foo on Type {
|
||
|
field
|
||
|
}
|
||
|
');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @it multiple anon operations
|
||
|
*/
|
||
|
public function testMultipleAnonOperations()
|
||
|
{
|
||
|
$this->expectFailsRule(new LoneAnonymousOperation, '
|
||
|
{
|
||
|
fieldA
|
||
|
}
|
||
|
{
|
||
|
fieldB
|
||
|
}
|
||
|
', [
|
||
|
$this->anonNotAlone(2, 7),
|
||
|
$this->anonNotAlone(5, 7)
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @it anon operation with a mutation
|
||
|
*/
|
||
|
public function testAnonOperationWithMutation()
|
||
|
{
|
||
|
$this->expectFailsRule(new LoneAnonymousOperation, '
|
||
|
{
|
||
|
fieldA
|
||
|
}
|
||
|
mutation Foo {
|
||
|
fieldB
|
||
|
}
|
||
|
', [
|
||
|
$this->anonNotAlone(2, 7)
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @it anon operation with a subscription
|
||
|
*/
|
||
|
public function testAnonOperationWithSubscription()
|
||
|
{
|
||
|
$this->expectFailsRule(new LoneAnonymousOperation, '
|
||
|
{
|
||
|
fieldA
|
||
|
}
|
||
|
subscription Foo {
|
||
|
fieldB
|
||
|
}
|
||
|
', [
|
||
|
$this->anonNotAlone(2, 7)
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
private function anonNotAlone($line, $column)
|
||
|
{
|
||
|
return FormattedError::create(
|
||
|
LoneAnonymousOperation::anonOperationNotAloneMessage(),
|
||
|
[new SourceLocation($line, $column)]
|
||
|
);
|
||
|
|
||
|
}
|
||
|
}
|