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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
<?php
namespace Engelsystem\Test\Unit\Http;
use DMS\PHPUnitExtensions\ArraySubset\ArraySubsetAsserts;
use Engelsystem\Http\Response;
use Engelsystem\Renderer\Renderer;
use InvalidArgumentException;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Psr\Http\Message\ResponseInterface;
use Symfony\Component\HttpFoundation\Response as SymfonyResponse;
class ResponseTest extends TestCase
{
use ArraySubsetAsserts;
/**
* @covers \Engelsystem\Http\Response
*/
public function testCreate()
{
$response = new Response();
$this->assertInstanceOf(SymfonyResponse::class, $response);
$this->assertInstanceOf(ResponseInterface::class, $response);
}
/**
* @covers \Engelsystem\Http\Response::getReasonPhrase
* @covers \Engelsystem\Http\Response::withStatus
*/
public function testWithStatus()
{
$response = new Response();
$newResponse = $response->withStatus(503);
$this->assertNotEquals($response, $newResponse);
$this->assertNotEquals('', $newResponse->getReasonPhrase());
$this->assertEquals(503, $newResponse->getStatusCode());
$newResponse = $response->withStatus(503, 'Foo');
$this->assertEquals('Foo', $newResponse->getReasonPhrase());
}
/**
* @covers \Engelsystem\Http\Response::withContent
*/
public function testWithContent()
{
$response = new Response();
$newResponse = $response->withContent('Lorem Ipsum?');
$this->assertNotEquals($response, $newResponse);
$this->assertEquals('Lorem Ipsum?', $newResponse->getContent());
}
/**
* @covers \Engelsystem\Http\Response::withView
*/
public function testWithView()
{
/** @var REnderer|MockObject $renderer */
$renderer = $this->createMock(Renderer::class);
$renderer->expects($this->once())
->method('render')
->with('foo', ['lorem' => 'ipsum'])
->willReturn('Foo ipsum!');
$response = new Response('', 200, [], $renderer);
$newResponse = $response->withView('foo', ['lorem' => 'ipsum'], 505, ['test' => 'er']);
$this->assertNotEquals($response, $newResponse);
$this->assertEquals('Foo ipsum!', $newResponse->getContent());
$this->assertEquals(505, $newResponse->getStatusCode());
$this->assertArraySubset(['test' => ['er']], $newResponse->getHeaders());
}
/**
* @covers \Engelsystem\Http\Response::withView
*/
public function testWithViewNoRenderer()
{
$this->expectException(InvalidArgumentException::class);
$response = new Response();
$response->withView('foo');
}
/**
* @covers \Engelsystem\Http\Response::redirectTo
*/
public function testRedirectTo()
{
$response = new Response();
$newResponse = $response->redirectTo('http://foo.bar/lorem', 301, ['test' => 'ing']);
$this->assertNotEquals($response, $newResponse);
$this->assertEquals(301, $newResponse->getStatusCode());
$this->assertArraySubset(
[
'location' => ['http://foo.bar/lorem'],
'test' => ['ing'],
],
$newResponse->getHeaders()
);
}
}
|