mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 12:56:05 +03:00
174 lines
3.5 KiB
PHP
174 lines
3.5 KiB
PHP
<?php
|
|
namespace GraphQL\Tests\Validator;
|
|
|
|
use GraphQL\Error\FormattedError;
|
|
use GraphQL\Language\SourceLocation;
|
|
use GraphQL\Validator\Rules\NoUnusedFragments;
|
|
|
|
class NoUnusedFragmentsTest extends TestCase
|
|
{
|
|
// Validate: No unused fragments
|
|
|
|
/**
|
|
* @it all fragment names are used
|
|
*/
|
|
public function testAllFragmentNamesAreUsed()
|
|
{
|
|
$this->expectPassesRule(new NoUnusedFragments(), '
|
|
{
|
|
human(id: 4) {
|
|
...HumanFields1
|
|
... on Human {
|
|
...HumanFields2
|
|
}
|
|
}
|
|
}
|
|
fragment HumanFields1 on Human {
|
|
name
|
|
...HumanFields3
|
|
}
|
|
fragment HumanFields2 on Human {
|
|
name
|
|
}
|
|
fragment HumanFields3 on Human {
|
|
name
|
|
}
|
|
');
|
|
}
|
|
|
|
/**
|
|
* @it all fragment names are used by multiple operations
|
|
*/
|
|
public function testAllFragmentNamesAreUsedByMultipleOperations()
|
|
{
|
|
$this->expectPassesRule(new NoUnusedFragments, '
|
|
query Foo {
|
|
human(id: 4) {
|
|
...HumanFields1
|
|
}
|
|
}
|
|
query Bar {
|
|
human(id: 4) {
|
|
...HumanFields2
|
|
}
|
|
}
|
|
fragment HumanFields1 on Human {
|
|
name
|
|
...HumanFields3
|
|
}
|
|
fragment HumanFields2 on Human {
|
|
name
|
|
}
|
|
fragment HumanFields3 on Human {
|
|
name
|
|
}
|
|
');
|
|
}
|
|
|
|
/**
|
|
* @it contains unknown fragments
|
|
*/
|
|
public function testContainsUnknownFragments()
|
|
{
|
|
$this->expectFailsRule(new NoUnusedFragments, '
|
|
query Foo {
|
|
human(id: 4) {
|
|
...HumanFields1
|
|
}
|
|
}
|
|
query Bar {
|
|
human(id: 4) {
|
|
...HumanFields2
|
|
}
|
|
}
|
|
fragment HumanFields1 on Human {
|
|
name
|
|
...HumanFields3
|
|
}
|
|
fragment HumanFields2 on Human {
|
|
name
|
|
}
|
|
fragment HumanFields3 on Human {
|
|
name
|
|
}
|
|
fragment Unused1 on Human {
|
|
name
|
|
}
|
|
fragment Unused2 on Human {
|
|
name
|
|
}
|
|
', [
|
|
$this->unusedFrag('Unused1', 22, 7),
|
|
$this->unusedFrag('Unused2', 25, 7),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @it contains unknown fragments with ref cycle
|
|
*/
|
|
public function testContainsUnknownFragmentsWithRefCycle()
|
|
{
|
|
$this->expectFailsRule(new NoUnusedFragments, '
|
|
query Foo {
|
|
human(id: 4) {
|
|
...HumanFields1
|
|
}
|
|
}
|
|
query Bar {
|
|
human(id: 4) {
|
|
...HumanFields2
|
|
}
|
|
}
|
|
fragment HumanFields1 on Human {
|
|
name
|
|
...HumanFields3
|
|
}
|
|
fragment HumanFields2 on Human {
|
|
name
|
|
}
|
|
fragment HumanFields3 on Human {
|
|
name
|
|
}
|
|
fragment Unused1 on Human {
|
|
name
|
|
...Unused2
|
|
}
|
|
fragment Unused2 on Human {
|
|
name
|
|
...Unused1
|
|
}
|
|
', [
|
|
$this->unusedFrag('Unused1', 22, 7),
|
|
$this->unusedFrag('Unused2', 26, 7),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @it contains unknown and undef fragments
|
|
*/
|
|
public function testContainsUnknownAndUndefFragments()
|
|
{
|
|
|
|
$this->expectFailsRule(new NoUnusedFragments, '
|
|
query Foo {
|
|
human(id: 4) {
|
|
...bar
|
|
}
|
|
}
|
|
fragment foo on Human {
|
|
name
|
|
}
|
|
', [
|
|
$this->unusedFrag('foo', 7, 7),
|
|
]);
|
|
}
|
|
|
|
private function unusedFrag($fragName, $line, $column)
|
|
{
|
|
return FormattedError::create(
|
|
NoUnusedFragments::unusedFragMessage($fragName),
|
|
[new SourceLocation($line, $column)]
|
|
);
|
|
}
|
|
}
|