2015-07-15 20:05:46 +03:00
|
|
|
<?php
|
2016-04-09 10:36:53 +03:00
|
|
|
namespace GraphQL\Tests\Validator;
|
2015-07-15 20:05:46 +03:00
|
|
|
|
2016-10-21 12:39:57 +03:00
|
|
|
use GraphQL\Error\FormattedError;
|
2015-07-15 20:05:46 +03:00
|
|
|
use GraphQL\Language\SourceLocation;
|
|
|
|
use GraphQL\Validator\Rules\NoUnusedFragments;
|
|
|
|
|
|
|
|
class NoUnusedFragmentsTest extends TestCase
|
|
|
|
{
|
|
|
|
// Validate: No unused fragments
|
2016-04-25 00:57:09 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @it all fragment names are used
|
|
|
|
*/
|
2015-07-15 20:05:46 +03:00
|
|
|
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
|
|
|
|
}
|
|
|
|
');
|
|
|
|
}
|
|
|
|
|
2016-04-25 00:57:09 +03:00
|
|
|
/**
|
|
|
|
* @it all fragment names are used by multiple operations
|
|
|
|
*/
|
2015-07-15 20:05:46 +03:00
|
|
|
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
|
|
|
|
}
|
|
|
|
');
|
|
|
|
}
|
|
|
|
|
2016-04-25 00:57:09 +03:00
|
|
|
/**
|
|
|
|
* @it contains unknown fragments
|
|
|
|
*/
|
2015-07-15 20:05:46 +03:00
|
|
|
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),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2016-04-25 00:57:09 +03:00
|
|
|
/**
|
|
|
|
* @it contains unknown fragments with ref cycle
|
|
|
|
*/
|
2015-07-15 20:05:46 +03:00
|
|
|
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),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2016-04-25 00:57:09 +03:00
|
|
|
/**
|
|
|
|
* @it contains unknown and undef fragments
|
|
|
|
*/
|
2015-08-17 17:01:55 +03:00
|
|
|
public function testContainsUnknownAndUndefFragments()
|
|
|
|
{
|
|
|
|
|
|
|
|
$this->expectFailsRule(new NoUnusedFragments, '
|
|
|
|
query Foo {
|
|
|
|
human(id: 4) {
|
|
|
|
...bar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fragment foo on Human {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
', [
|
|
|
|
$this->unusedFrag('foo', 7, 7),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2015-07-15 20:05:46 +03:00
|
|
|
private function unusedFrag($fragName, $line, $column)
|
|
|
|
{
|
2015-08-17 17:01:55 +03:00
|
|
|
return FormattedError::create(
|
|
|
|
NoUnusedFragments::unusedFragMessage($fragName),
|
2015-07-15 20:05:46 +03:00
|
|
|
[new SourceLocation($line, $column)]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|