xaddax/codeception-graphql

This package is abandoned and no longer maintained. The author suggests using the zestic/codeception-graphql package instead.

GraphQL extension for Codeception

0.3.0 2020-03-31 04:21 UTC

This package is auto-updated.

Last update: 2022-10-20 05:37:33 UTC


README

#No longer supported, use zestic/codeception-graphql instead

Codeception GraphQL

A codeception extension for calling GraphQL endpoints

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

Installation

composer require xaddax/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());
    }
}