graphql-php/tests/Server/PsrResponseTest.php

30 lines
854 B
PHP
Raw Permalink Normal View History

<?php
2018-09-01 23:00:00 +03:00
declare(strict_types=1);
namespace GraphQL\Tests\Server;
use GraphQL\Executor\ExecutionResult;
use GraphQL\Server\Helper;
use GraphQL\Tests\Server\Psr7\PsrResponseStub;
2018-09-01 23:00:00 +03:00
use GraphQL\Tests\Server\Psr7\PsrStreamStub;
2018-07-29 18:43:10 +03:00
use PHPUnit\Framework\TestCase;
2018-09-01 23:00:00 +03:00
use function json_encode;
2018-07-29 18:43:10 +03:00
class PsrResponseTest extends TestCase
{
public function testConvertsResultToPsrResponse() : void
{
2018-09-01 23:00:00 +03:00
$result = new ExecutionResult(['key' => 'value']);
$stream = new PsrStreamStub();
$psrResponse = new PsrResponseStub();
$helper = new Helper();
/** @var PsrResponseStub $resp */
$resp = $helper->toPsrResponse($result, $psrResponse, $stream);
2018-09-19 18:12:09 +03:00
self::assertSame(json_encode($result), $resp->body->content);
self::assertSame(['Content-Type' => ['application/json']], $resp->headers);
}
}