graphql-php/tests/Validator/KnownFragmentNamesTest.php
2018-09-02 13:08:49 +02:00

81 lines
1.8 KiB
PHP

<?php
declare(strict_types=1);
namespace GraphQL\Tests\Validator;
use GraphQL\Error\FormattedError;
use GraphQL\Language\SourceLocation;
use GraphQL\Validator\Rules\KnownFragmentNames;
class KnownFragmentNamesTest extends ValidatorTestCase
{
// Validate: Known fragment names
/**
* @see it('known fragment names are valid')
*/
public function testKnownFragmentNamesAreValid() : void
{
$this->expectPassesRule(
new KnownFragmentNames(),
'
{
human(id: 4) {
...HumanFields1
... on Human {
...HumanFields2
}
}
}
fragment HumanFields1 on Human {
name
...HumanFields3
}
fragment HumanFields2 on Human {
name
}
fragment HumanFields3 on Human {
name
}
'
);
}
/**
* @see it('unknown fragment names are invalid')
*/
public function testUnknownFragmentNamesAreInvalid() : void
{
$this->expectFailsRule(
new KnownFragmentNames(),
'
{
human(id: 4) {
...UnknownFragment1
... on Human {
...UnknownFragment2
}
}
}
fragment HumanFields on Human {
name
...UnknownFragment3
}
',
[
$this->undefFrag('UnknownFragment1', 4, 14),
$this->undefFrag('UnknownFragment2', 6, 16),
$this->undefFrag('UnknownFragment3', 12, 12),
]
);
}
private function undefFrag($fragName, $line, $column)
{
return FormattedError::create(
KnownFragmentNames::unknownFragmentMessage($fragName),
[new SourceLocation($line, $column)]
);
}
}