tao-test/app/tao/test/unit/http/formatter/ResponseFormatterTest.php

99 lines
3.1 KiB
PHP

<?php
/**
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; under version 2
* of the License (non-upgradable).
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Copyright (c) 2020 (original work) Open Assessment Technologies SA
*/
namespace oat\tao\test\unit\http;
use DateTime;
use GuzzleHttp\Psr7\Response;
use oat\generis\test\TestCase;
use oat\tao\model\http\formatter\ResponseFormatter;
use oat\tao\model\http\response\SuccessJsonResponse;
class ResponseFormatterTest extends TestCase
{
/**
* @var ResponseFormatter
*/
private $subject;
public function setUp(): void
{
$this->subject = new ResponseFormatter();
}
public function testBuildDefault(): void
{
$response = $this->subject->format(new Response());
$this->assertSame(200, $response->getStatusCode());
$this->assertSame([], $response->getHeaders());
$this->assertSame('', (string)$response->getBody());
}
public function testBuildJson(): void
{
$response = $this->subject
->withJsonHeader()
->withBody(['a' => 'b'])
->format(new Response());
$this->assertSame(200, $response->getStatusCode());
$this->assertSame(['Content-Type' => ['application/json']], $response->getHeaders());
$this->assertSame('{"a":"b"}', (string)$response->getBody());
}
public function testBuildCustomized(): void
{
$body = '<html></html>';
$statusCode = 400;
$contentType = 'text/html';
$response = $this->subject
->withStatusCode($statusCode)
->addHeader('Content-Type', $contentType)
->withBody($body)
->format(new Response());
$this->assertSame($statusCode, $response->getStatusCode());
$this->assertSame(['Content-Type' => [$contentType]], $response->getHeaders());
$this->assertSame($body, (string)$response->getBody());
}
public function testBuildWithExpiration(): void
{
$response = $this->subject
->withExpiration((new DateTime('2010-10-10 10:10:10'))->getTimestamp())
->format(new Response());
$this->assertSame('Sun, 10 Oct 2010 10:10:10 GMT', current($response->getHeader('Expires')));
}
public function testBuildWithJsonSerializable(): void
{
$payload = new SuccessJsonResponse(['data']);
$response = $this->subject
->withBody($payload)
->format(new Response());
$this->assertSame($payload->jsonSerialize(), json_decode((string)$response->getBody(), true));
}
}