mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 12:56:05 +03:00
228 lines
4.8 KiB
PHP
228 lines
4.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace GraphQL\Tests\Validator;
|
|
|
|
use GraphQL\Error\FormattedError;
|
|
use GraphQL\Language\SourceLocation;
|
|
use GraphQL\Validator\Rules\UniqueArgumentNames;
|
|
|
|
class UniqueArgumentNamesTest extends ValidatorTestCase
|
|
{
|
|
// Validate: Unique argument names
|
|
/**
|
|
* @see it('no arguments on field')
|
|
*/
|
|
public function testNoArgumentsOnField() : void
|
|
{
|
|
$this->expectPassesRule(
|
|
new UniqueArgumentNames(),
|
|
'
|
|
{
|
|
field
|
|
}
|
|
'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @see it('no arguments on directive')
|
|
*/
|
|
public function testNoArgumentsOnDirective() : void
|
|
{
|
|
$this->expectPassesRule(
|
|
new UniqueArgumentNames(),
|
|
'
|
|
{
|
|
field @directive
|
|
}
|
|
'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @see it('argument on field')
|
|
*/
|
|
public function testArgumentOnField() : void
|
|
{
|
|
$this->expectPassesRule(
|
|
new UniqueArgumentNames(),
|
|
'
|
|
{
|
|
field(arg: "value")
|
|
}
|
|
'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @see it('argument on directive')
|
|
*/
|
|
public function testArgumentOnDirective() : void
|
|
{
|
|
$this->expectPassesRule(
|
|
new UniqueArgumentNames(),
|
|
'
|
|
{
|
|
field @directive(arg: "value")
|
|
}
|
|
'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @see it('same argument on two fields')
|
|
*/
|
|
public function testSameArgumentOnTwoFields() : void
|
|
{
|
|
$this->expectPassesRule(
|
|
new UniqueArgumentNames(),
|
|
'
|
|
{
|
|
one: field(arg: "value")
|
|
two: field(arg: "value")
|
|
}
|
|
'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @see it('same argument on field and directive')
|
|
*/
|
|
public function testSameArgumentOnFieldAndDirective() : void
|
|
{
|
|
$this->expectPassesRule(
|
|
new UniqueArgumentNames(),
|
|
'
|
|
{
|
|
field(arg: "value") @directive(arg: "value")
|
|
}
|
|
'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @see it('same argument on two directives')
|
|
*/
|
|
public function testSameArgumentOnTwoDirectives() : void
|
|
{
|
|
$this->expectPassesRule(
|
|
new UniqueArgumentNames(),
|
|
'
|
|
{
|
|
field @directive1(arg: "value") @directive2(arg: "value")
|
|
}
|
|
'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @see it('multiple field arguments')
|
|
*/
|
|
public function testMultipleFieldArguments() : void
|
|
{
|
|
$this->expectPassesRule(
|
|
new UniqueArgumentNames(),
|
|
'
|
|
{
|
|
field(arg1: "value", arg2: "value", arg3: "value")
|
|
}
|
|
'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @see it('multiple directive arguments')
|
|
*/
|
|
public function testMultipleDirectiveArguments() : void
|
|
{
|
|
$this->expectPassesRule(
|
|
new UniqueArgumentNames(),
|
|
'
|
|
{
|
|
field @directive(arg1: "value", arg2: "value", arg3: "value")
|
|
}
|
|
'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @see it('duplicate field arguments')
|
|
*/
|
|
public function testDuplicateFieldArguments() : void
|
|
{
|
|
$this->expectFailsRule(
|
|
new UniqueArgumentNames(),
|
|
'
|
|
{
|
|
field(arg1: "value", arg1: "value")
|
|
}
|
|
',
|
|
[$this->duplicateArg('arg1', 3, 15, 3, 30)]
|
|
);
|
|
}
|
|
|
|
private function duplicateArg($argName, $l1, $c1, $l2, $c2)
|
|
{
|
|
return FormattedError::create(
|
|
UniqueArgumentNames::duplicateArgMessage($argName),
|
|
[new SourceLocation($l1, $c1), new SourceLocation($l2, $c2)]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @see it('many duplicate field arguments')
|
|
*/
|
|
public function testManyDuplicateFieldArguments() : void
|
|
{
|
|
$this->expectFailsRule(
|
|
new UniqueArgumentNames(),
|
|
'
|
|
{
|
|
field(arg1: "value", arg1: "value", arg1: "value")
|
|
}
|
|
',
|
|
[
|
|
$this->duplicateArg('arg1', 3, 15, 3, 30),
|
|
$this->duplicateArg('arg1', 3, 15, 3, 45),
|
|
]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @see it('duplicate directive arguments')
|
|
*/
|
|
public function testDuplicateDirectiveArguments() : void
|
|
{
|
|
$this->expectFailsRule(
|
|
new UniqueArgumentNames(),
|
|
'
|
|
{
|
|
field @directive(arg1: "value", arg1: "value")
|
|
}
|
|
',
|
|
[$this->duplicateArg('arg1', 3, 26, 3, 41)]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @see it('many duplicate directive arguments')
|
|
*/
|
|
public function testManyDuplicateDirectiveArguments() : void
|
|
{
|
|
$this->expectFailsRule(
|
|
new UniqueArgumentNames(),
|
|
'
|
|
{
|
|
field @directive(arg1: "value", arg1: "value", arg1: "value")
|
|
}
|
|
',
|
|
[
|
|
$this->duplicateArg('arg1', 3, 26, 3, 41),
|
|
$this->duplicateArg('arg1', 3, 26, 3, 56),
|
|
]
|
|
);
|
|
}
|
|
}
|