mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 12:56:05 +03:00
26 lines
786 B
PHP
26 lines
786 B
PHP
<?php
|
|
namespace GraphQL\Tests\Server;
|
|
|
|
use GraphQL\Executor\ExecutionResult;
|
|
use GraphQL\Server\Helper;
|
|
use GraphQL\Tests\Server\Psr7\PsrStreamStub;
|
|
use GraphQL\Tests\Server\Psr7\PsrResponseStub;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class PsrResponseTest extends TestCase
|
|
{
|
|
public function testConvertsResultToPsrResponse()
|
|
{
|
|
$result = new ExecutionResult(['key' => 'value']);
|
|
$stream = new PsrStreamStub();
|
|
$psrResponse = new PsrResponseStub();
|
|
|
|
$helper = new Helper();
|
|
|
|
/** @var PsrResponseStub $resp */
|
|
$resp = $helper->toPsrResponse($result, $psrResponse, $stream);
|
|
$this->assertSame(json_encode($result), $resp->body->content);
|
|
$this->assertSame(['Content-Type' => ['application/json']], $resp->headers);
|
|
}
|
|
}
|