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'] ); } }