Added dependency plugins
This commit is contained in:
48
wordpress/wp-content/plugins/wp-graphql/tests/wpunit/ViewerQueryTest.php
Executable file
48
wordpress/wp-content/plugins/wp-graphql/tests/wpunit/ViewerQueryTest.php
Executable file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
class ViewerQueryTest extends \Codeception\TestCase\WPTestCase {
|
||||
|
||||
public function setUp() {
|
||||
parent::setUp();
|
||||
}
|
||||
|
||||
public function tearDown() {
|
||||
parent::tearDown();
|
||||
}
|
||||
|
||||
public function testViewerQuery() {
|
||||
|
||||
$user_id = $this->factory->user->create( [
|
||||
'role' => 'administrator',
|
||||
] );
|
||||
|
||||
$query = '
|
||||
{
|
||||
viewer{
|
||||
userId
|
||||
roles
|
||||
}
|
||||
}
|
||||
';
|
||||
|
||||
$actual = do_graphql_request( $query );
|
||||
|
||||
/**
|
||||
* We should get an error because no user is logged in right now
|
||||
*/
|
||||
$this->assertArrayHasKey( 'errors', $actual );
|
||||
|
||||
/**
|
||||
* Set the current user so we can properly test the viewer query
|
||||
*/
|
||||
wp_set_current_user( $user_id );
|
||||
$actual = do_graphql_request( $query );
|
||||
|
||||
$this->assertNotEmpty( $actual );
|
||||
$this->assertArrayNotHasKey( 'errors', $actual );
|
||||
$this->assertEquals( $user_id, $actual['data']['viewer']['userId'] );
|
||||
$this->assertContains( 'administrator', $actual['data']['viewer']['roles'] );
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user