-
Notifications
You must be signed in to change notification settings - Fork 201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example for doing a full schema unit test #1154
base: 8.x-4.x
Are you sure you want to change the base?
Changes from 6 commits
6d3965f
5d4771c
4bee230
105fe96
6806b4e
4b2948a
1c03fea
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,88 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<?php | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
namespace Drupal\Tests\graphql_example\Kernel; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use Drupal\node\Entity\Node; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use Drupal\node\Entity\NodeType; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use Drupal\Tests\graphql\Kernel\GraphQLTestBase; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use Drupal\user\Entity\User; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* Runs unit tests agains the `example` schema defined in `graphql_examples`. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* @group graphql | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
class ExampleSchemaTest extends GraphQLTestBase { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* {@inheritdoc} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
public static $modules = ['graphql_examples']; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* {@inheritdoc} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
protected function setUp() :void { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
parent::setUp(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Create the "article" node type since the schema relies on it. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
NodeType::create([ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'type' => 'article', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'name' => 'Article', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
]); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Create a test-server that uses the schema plugin defined in this module. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$this->createTestServer('example', '/graphql'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* Test the example schema for article listing. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
public function testExampleSchema() : void { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Create two authors. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$userA = User::create([ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'name' => 'A', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
]); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$userA->save(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$userB = User::create([ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'name' => 'B', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
]); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$userB->save(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Create three articles. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Node::create([ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'type' => 'article', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'title' => 'One', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'uid' => $userA->id(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
])->save(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Node::create([ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'type' => 'article', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'title' => 'Two', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'uid' => $userB->id(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
])->save(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Node::create([ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'type' => 'article', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'title' => 'Three', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'uid' => $userA->id(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
])->save(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Execute the query and run assertions against its response content. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$response = $this->query('{ articles { total, items { title, author } } }'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$content = json_decode($response->getContent(), TRUE); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$this->assertEquals([ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'data' => [ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'articles' => [ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'total' => 3, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
'items' => [ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
['title' => 'ONE', 'author' => 'A'], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
['title' => 'TWO', 'author' => 'B'], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
['title' => 'THREE', 'author' => 'A'], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
], $content); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Instead of The benefits are that it bypasses the HTTP stack which is slightly faster. It also handles the response decoding for you and allows you to test for caching metadata.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You are right @Kingdutch ! 🤦 Thanks for the input. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} |
This comment was marked as resolved.
Sorry, something went wrong.