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 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
<?php
/**
* Slim Framework (https://slimframework.com)
*
* @license https://github.com/slimphp/Slim/blob/3.x/LICENSE.md (MIT License)
*/
namespace Slim\Tests\Http;
use InvalidArgumentException;
use PHPUnit_Framework_MockObject_MockObject;
use PHPUnit;
use Slim\Http\Body;
use Slim\Http\Headers;
use Slim\Tests\Mocks\MessageStub;
class MessageTest extends PHPUnit\Framework\TestCase
{
public function testGetProtocolVersion()
{
$message = new MessageStub();
$message->protocolVersion = '1.0';
$this->assertEquals('1.0', $message->getProtocolVersion());
}
public function testWithProtocolVersion()
{
$message = new MessageStub();
$clone = $message->withProtocolVersion('1.0');
$this->assertEquals('1.0', $clone->protocolVersion);
}
public function testWithProtocolVersionInvalidThrowsException()
{
$this->expectException('InvalidArgumentException');
$message = new MessageStub();
$message->withProtocolVersion('3.0');
}
public function testWithProtocolVersionForHttp2()
{
$message = new MessageStub();
$clone = $message->withProtocolVersion('2');
$this->assertEquals('2', $clone->protocolVersion);
}
public function testGetHeaders()
{
$headers = new Headers();
$headers->add('X-Foo', 'one');
$headers->add('X-Foo', 'two');
$headers->add('X-Foo', 'three');
$message = new MessageStub();
$message->headers = $headers;
$shouldBe = [
'X-Foo' => [
'one',
'two',
'three',
],
];
$this->assertEquals($shouldBe, $message->getHeaders());
}
public function testHasHeader()
{
$headers = new Headers();
$headers->add('X-Foo', 'one');
$message = new MessageStub();
$message->headers = $headers;
$this->assertTrue($message->hasHeader('X-Foo'));
$this->assertFalse($message->hasHeader('X-Bar'));
}
public function testGetHeaderLine()
{
$headers = new Headers();
$headers->add('X-Foo', 'one');
$headers->add('X-Foo', 'two');
$headers->add('X-Foo', 'three');
$message = new MessageStub();
$message->headers = $headers;
$this->assertEquals('one,two,three', $message->getHeaderLine('X-Foo'));
$this->assertEquals('', $message->getHeaderLine('X-Bar'));
}
public function testGetHeader()
{
$headers = new Headers();
$headers->add('X-Foo', 'one');
$headers->add('X-Foo', 'two');
$headers->add('X-Foo', 'three');
$message = new MessageStub();
$message->headers = $headers;
$this->assertEquals(['one', 'two', 'three'], $message->getHeader('X-Foo'));
$this->assertEquals([], $message->getHeader('X-Bar'));
}
public function testWithHeader()
{
$headers = new Headers();
$headers->add('X-Foo', 'one');
$message = new MessageStub();
$message->headers = $headers;
$clone = $message->withHeader('X-Foo', 'bar');
$this->assertEquals('bar', $clone->getHeaderLine('X-Foo'));
}
public function testWithAddedHeader()
{
$headers = new Headers();
$headers->add('X-Foo', 'one');
$message = new MessageStub();
$message->headers = $headers;
$clone = $message->withAddedHeader('X-Foo', 'two');
$this->assertEquals('one,two', $clone->getHeaderLine('X-Foo'));
}
public function testWithoutHeader()
{
$headers = new Headers();
$headers->add('X-Foo', 'one');
$headers->add('X-Bar', 'two');
$response = new MessageStub();
$response->headers = $headers;
$clone = $response->withoutHeader('X-Foo');
$shouldBe = [
'X-Bar' => ['two'],
];
$this->assertEquals($shouldBe, $clone->getHeaders());
}
public function testGetBody()
{
$body = $this->getBody();
$message = new MessageStub();
$message->body = $body;
$this->assertSame($body, $message->getBody());
}
public function testWithBody()
{
$body = $this->getBody();
$body2 = $this->getBody();
$message = new MessageStub();
$message->body = $body;
$clone = $message->withBody($body2);
$this->assertSame($body, $message->body);
$this->assertSame($body2, $clone->body);
}
/**
* @return PHPUnit_Framework_MockObject_MockObject|Body
*/
protected function getBody()
{
return $this
->getMockBuilder('Slim\Http\Body')
->disableOriginalConstructor()
->getMock();
}
}
|