-
-
Notifications
You must be signed in to change notification settings - Fork 562
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added test to catch regressions in lazy interface declarations (see #38)
- Loading branch information
Showing
1 changed file
with
129 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
<?php | ||
/** | ||
* @author: Ivo Meißner | ||
* Date: 03.05.16 | ||
* Time: 13:14 | ||
*/ | ||
namespace GraphQL\Tests\Executor; | ||
|
||
use GraphQL\Executor\Executor; | ||
use GraphQL\Language\Parser; | ||
use GraphQL\Schema; | ||
use GraphQL\Type\Definition\InterfaceType; | ||
use GraphQL\Type\Definition\ObjectType; | ||
use GraphQL\Type\Definition\Type; | ||
|
||
class LazyInterfaceTest extends \PHPUnit_Framework_TestCase | ||
{ | ||
/** | ||
* @var Schema | ||
*/ | ||
protected $schema; | ||
|
||
/** | ||
* @var InterfaceType | ||
*/ | ||
protected $lazyInterface; | ||
|
||
/** | ||
* @var ObjectType | ||
*/ | ||
protected $testObject; | ||
|
||
/** | ||
* Setup schema | ||
*/ | ||
protected function setUp() | ||
{ | ||
$query = new ObjectType([ | ||
'name' => 'query', | ||
'fields' => function () { | ||
return [ | ||
'lazyInterface' => [ | ||
'type' => $this->getLazyInterfaceType(), | ||
'resolve' => function() { | ||
return []; | ||
} | ||
], | ||
'testObject' => [ | ||
'type' => $this->getTestObjectType() | ||
] | ||
]; | ||
} | ||
]); | ||
|
||
$this->schema = new Schema(['query' => $query]); | ||
} | ||
|
||
/** | ||
* Returns the LazyInterface | ||
* | ||
* @return InterfaceType | ||
*/ | ||
protected function getLazyInterfaceType() | ||
{ | ||
if (!$this->lazyInterface) { | ||
$this->lazyInterface = new InterfaceType([ | ||
'name' => 'LazyInterface', | ||
'resolveType' => function() { | ||
return $this->getTestObjectType(); | ||
}, | ||
'resolve' => function() { | ||
return []; | ||
} | ||
]); | ||
} | ||
|
||
return $this->lazyInterface; | ||
} | ||
|
||
/** | ||
* Returns the test ObjectType | ||
* @return ObjectType | ||
*/ | ||
protected function getTestObjectType() | ||
{ | ||
if (!$this->testObject) { | ||
$this->testObject = new ObjectType([ | ||
'name' => 'TestObject', | ||
'fields' => [ | ||
'name' => [ | ||
'type' => Type::string(), | ||
'resolve' => function() { | ||
return 'testname'; | ||
} | ||
] | ||
], | ||
'interfaces' => [$this->getLazyInterfaceType()] | ||
]); | ||
} | ||
|
||
return $this->testObject; | ||
} | ||
|
||
/** | ||
* Handles execution of a lazily created interface | ||
*/ | ||
public function testReturnsFragmentsWithLazyCreatedInterface() | ||
{ | ||
$request = ' | ||
{ | ||
lazyInterface { | ||
... on TestObject { | ||
name | ||
} | ||
} | ||
} | ||
'; | ||
|
||
$expected = [ | ||
'data' => [ | ||
'lazyInterface' => [ | ||
'name' => 'testname' | ||
] | ||
] | ||
]; | ||
|
||
$this->assertEquals($expected, Executor::execute($this->schema, Parser::parse($request))->toArray()); | ||
} | ||
} |