graphql-php/tests/Validator/KnownFragmentNamesTest.php
2018-07-29 19:01:39 +02:00

72 lines
1.6 KiB
PHP

<?php
namespace GraphQL\Tests\Validator;
use GraphQL\Validator\Rules\KnownFragmentNames;
use GraphQL\Error\FormattedError;
use GraphQL\Language\SourceLocation;
class KnownFragmentNamesTest extends ValidatorTestCase
{
// Validate: Known fragment names
/**
* @it known fragment names are valid
*/
public function testKnownFragmentNamesAreValid()
{
$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
}
');
}
/**
* @it unknown fragment names are invalid
*/
public function testUnknownFragmentNamesAreInvalid()
{
$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)]
);
}
}