graphql-php/tests/Validator/KnownArgumentNamesTest.php

263 lines
6.0 KiB
PHP
Raw Permalink Normal View History

2015-07-15 20:05:46 +03:00
<?php
2018-09-02 14:08:49 +03:00
declare(strict_types=1);
2016-04-09 10:36:53 +03:00
namespace GraphQL\Tests\Validator;
2015-07-15 20:05:46 +03:00
use GraphQL\Error\FormattedError;
2015-07-15 20:05:46 +03:00
use GraphQL\Language\SourceLocation;
use GraphQL\Validator\Rules\KnownArgumentNames;
2018-07-29 18:43:10 +03:00
class KnownArgumentNamesTest extends ValidatorTestCase
2015-07-15 20:05:46 +03:00
{
// Validate: Known argument names:
/**
* @see it('single arg is known')
*/
public function testSingleArgIsKnown() : void
2015-07-15 20:05:46 +03:00
{
2018-09-02 14:08:49 +03:00
$this->expectPassesRule(
new KnownArgumentNames(),
'
2015-07-15 20:05:46 +03:00
fragment argOnRequiredArg on Dog {
doesKnowCommand(dogCommand: SIT)
}
2018-09-02 14:08:49 +03:00
'
);
2015-07-15 20:05:46 +03:00
}
/**
* @see it('multiple args are known')
*/
public function testMultipleArgsAreKnown() : void
2015-07-15 20:05:46 +03:00
{
2018-09-02 14:08:49 +03:00
$this->expectPassesRule(
new KnownArgumentNames(),
'
2015-07-15 20:05:46 +03:00
fragment multipleArgs on ComplicatedArgs {
multipleReqs(req1: 1, req2: 2)
}
2018-09-02 14:08:49 +03:00
'
);
2015-07-15 20:05:46 +03:00
}
/**
* @see it('ignores args of unknown fields')
*/
public function testIgnoresArgsOfUnknownFields() : void
{
2018-09-02 14:08:49 +03:00
$this->expectPassesRule(
new KnownArgumentNames(),
'
fragment argOnUnknownField on Dog {
unknownField(unknownArg: SIT)
}
2018-09-02 14:08:49 +03:00
'
);
}
/**
* @see it('multiple args in reverse order are known')
*/
public function testMultipleArgsInReverseOrderAreKnown() : void
2015-07-15 20:05:46 +03:00
{
2018-09-02 14:08:49 +03:00
$this->expectPassesRule(
new KnownArgumentNames(),
'
2015-07-15 20:05:46 +03:00
fragment multipleArgsReverseOrder on ComplicatedArgs {
multipleReqs(req2: 2, req1: 1)
}
2018-09-02 14:08:49 +03:00
'
);
2015-07-15 20:05:46 +03:00
}
/**
* @see it('no args on optional arg')
*/
public function testNoArgsOnOptionalArg() : void
2015-07-15 20:05:46 +03:00
{
2018-09-02 14:08:49 +03:00
$this->expectPassesRule(
new KnownArgumentNames(),
'
2015-07-15 20:05:46 +03:00
fragment noArgOnOptionalArg on Dog {
isHousetrained
}
2018-09-02 14:08:49 +03:00
'
);
2015-07-15 20:05:46 +03:00
}
/**
* @see it('args are known deeply')
*/
public function testArgsAreKnownDeeply() : void
2015-07-15 20:05:46 +03:00
{
2018-09-02 14:08:49 +03:00
$this->expectPassesRule(
new KnownArgumentNames(),
'
2015-07-15 20:05:46 +03:00
{
dog {
doesKnowCommand(dogCommand: SIT)
}
human {
pet {
... on Dog {
doesKnowCommand(dogCommand: SIT)
}
}
}
}
2018-09-02 14:08:49 +03:00
'
);
2015-07-15 20:05:46 +03:00
}
/**
* @see it('directive args are known')
*/
public function testDirectiveArgsAreKnown() : void
{
2018-09-02 14:08:49 +03:00
$this->expectPassesRule(
new KnownArgumentNames(),
'
{
dog @skip(if: true)
}
2018-09-02 14:08:49 +03:00
'
);
}
/**
* @see it('undirective args are invalid')
*/
public function testUndirectiveArgsAreInvalid() : void
{
2018-09-02 14:08:49 +03:00
$this->expectFailsRule(
new KnownArgumentNames(),
'
{
dog @skip(unless: true)
}
2018-09-02 14:08:49 +03:00
',
[
$this->unknownDirectiveArg('unless', 'skip', [], 3, 19),
]
);
}
private function unknownDirectiveArg($argName, $directiveName, $suggestedArgs, $line, $column)
{
return FormattedError::create(
KnownArgumentNames::unknownDirectiveArgMessage($argName, $directiveName, $suggestedArgs),
[new SourceLocation($line, $column)]
);
}
/**
* @see it('misspelled directive args are reported')
*/
public function testMisspelledDirectiveArgsAreReported() : void
{
2018-09-02 14:08:49 +03:00
$this->expectFailsRule(
new KnownArgumentNames(),
'
{
dog @skip(iff: true)
}
2018-09-02 14:08:49 +03:00
',
[
$this->unknownDirectiveArg('iff', 'skip', ['if'], 3, 19),
]
);
}
/**
* @see it('invalid arg name')
*/
public function testInvalidArgName() : void
2015-07-15 20:05:46 +03:00
{
2018-09-02 14:08:49 +03:00
$this->expectFailsRule(
new KnownArgumentNames(),
'
2015-07-15 20:05:46 +03:00
fragment invalidArgName on Dog {
doesKnowCommand(unknown: true)
}
2018-09-02 14:08:49 +03:00
',
[
$this->unknownArg('unknown', 'doesKnowCommand', 'Dog', [], 3, 25),
]
);
}
private function unknownArg($argName, $fieldName, $typeName, $suggestedArgs, $line, $column)
{
return FormattedError::create(
KnownArgumentNames::unknownArgMessage($argName, $fieldName, $typeName, $suggestedArgs),
[new SourceLocation($line, $column)]
);
}
/**
* @see it('misspelled arg name is reported')
*/
public function testMisspelledArgNameIsReported() : void
{
2018-09-02 14:08:49 +03:00
$this->expectFailsRule(
new KnownArgumentNames(),
'
fragment invalidArgName on Dog {
doesKnowCommand(dogcommand: true)
}
2018-09-02 14:08:49 +03:00
',
[
$this->unknownArg('dogcommand', 'doesKnowCommand', 'Dog', ['dogCommand'], 3, 25),
]
);
2015-07-15 20:05:46 +03:00
}
/**
* @see it('unknown args amongst known args')
*/
public function testUnknownArgsAmongstKnownArgs() : void
2015-07-15 20:05:46 +03:00
{
2018-09-02 14:08:49 +03:00
$this->expectFailsRule(
new KnownArgumentNames(),
'
2015-07-15 20:05:46 +03:00
fragment oneGoodArgOneInvalidArg on Dog {
doesKnowCommand(whoknows: 1, dogCommand: SIT, unknown: true)
}
2018-09-02 14:08:49 +03:00
',
[
$this->unknownArg('whoknows', 'doesKnowCommand', 'Dog', [], 3, 25),
$this->unknownArg('unknown', 'doesKnowCommand', 'Dog', [], 3, 55),
]
);
2015-07-15 20:05:46 +03:00
}
/**
* @see it('unknown args deeply')
*/
public function testUnknownArgsDeeply() : void
2015-07-15 20:05:46 +03:00
{
2018-09-02 14:08:49 +03:00
$this->expectFailsRule(
new KnownArgumentNames(),
'
2015-07-15 20:05:46 +03:00
{
dog {
doesKnowCommand(unknown: true)
}
human {
pet {
... on Dog {
doesKnowCommand(unknown: true)
}
}
}
}
2018-09-02 14:08:49 +03:00
',
[
$this->unknownArg('unknown', 'doesKnowCommand', 'Dog', [], 4, 27),
$this->unknownArg('unknown', 'doesKnowCommand', 'Dog', [], 9, 31),
]
2015-07-15 20:05:46 +03:00
);
}
}