Skip to content

zestic/codeception-graphql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Codeception GraphQL

A codeception extension for calling GraphQL endpoints

This requires a running server, you can use Codeception PhpBuiltInServer if needed.

Installation

composer require zestic/codeception-graphql --dev

To configure

In your acceptance.suite.yml file

modules:
    enabled:
        - GraphQL:
            url: 'http://localhost:8080/'

Testing

To use it in a test

class PingCest
{
    public function testPing(AcceptanceTester $I)
    {
        $query = 'query{ping {response}}';
        $I->sendGraphQL($query);
        $expected = [
            'ping' => [
                'response' => 'pong',
            ],
        ];
        $I->assertEquals($expected, $I->grabResponseData());
    }
}