-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathResponseFactoryTest.php
72 lines (56 loc) · 2.16 KB
/
ResponseFactoryTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
namespace Rareloop\Router\Test;
use PHPUnit\Framework\TestCase;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ResponseInterface;
use Rareloop\Router\Responsable;
use Rareloop\Router\ResponseFactory;
use Laminas\Diactoros\Response\EmptyResponse;
use Laminas\Diactoros\Response\TextResponse;
use Laminas\Diactoros\ServerRequest;
class ResponseFactoryTest extends TestCase
{
use \Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
private ServerRequest $request;
public function setUp(): void
{
parent::setUp();
$this->request = new ServerRequest([], [], '/test/123', 'GET');
}
/** @test */
public function when_passed_a_response_instance_the_same_object_is_returned()
{
$response = new TextResponse('Testing', 200);
$this->assertSame($response, ResponseFactory::create($this->request, $response));
}
/** @test */
public function when_passed_a_non_response_instance_a_response_object_is_returned()
{
$response = ResponseFactory::create($this->request, 'Testing');
$this->assertInstanceOf(ResponseInterface::class, $response);
$this->assertSame('Testing', $response->getBody()->getContents());
}
/** @test */
public function when_nothing_is_passed_an_empty_response_object_is_returned()
{
$response = ResponseFactory::create($this->request);
$this->assertInstanceOf(EmptyResponse::class, $response);
}
/** @test */
public function when_a_responsable_object_is_passed_the_response_object_is_returned()
{
$textResponse = new TextResponse('testing123');
$object = \Mockery::mock(ResponsableObject::class);
$object->shouldReceive('toResponse')->with($this->request)->once()->andReturn($textResponse);
$response = ResponseFactory::create($this->request, $object);
$this->assertInstanceOf(TextResponse::class, $response);
$this->assertSame('testing123', $response->getBody()->getContents());
}
}
class ResponsableObject implements Responsable
{
public function toResponse(RequestInterface $request): ResponseInterface
{
return new TextResponse('testing123');
}
}