2016-08-04 14:55:37 -04:00
|
|
|
<?php
|
|
|
|
|
2016-08-26 17:21:50 -04:00
|
|
|
namespace Aviat\Ion\Tests\View;
|
|
|
|
|
2016-08-04 14:55:37 -04:00
|
|
|
use Aviat\Ion\Friend;
|
2016-08-26 17:21:50 -04:00
|
|
|
use Aviat\Ion\Exception\DoubleRenderException;
|
2016-08-04 14:55:37 -04:00
|
|
|
|
2016-08-26 17:21:50 -04:00
|
|
|
class HttpViewTest extends \Ion_TestCase {
|
2016-08-04 14:55:37 -04:00
|
|
|
|
|
|
|
protected $view;
|
|
|
|
protected $friend;
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
2016-08-26 17:21:50 -04:00
|
|
|
$this->view = new \TestHttpView($this->container);
|
2016-08-04 14:55:37 -04:00
|
|
|
$this->friend = new Friend($this->view);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetOutput()
|
|
|
|
{
|
|
|
|
$this->friend->setOutput('foo');
|
|
|
|
$this->assertEquals('foo', $this->friend->getOutput());
|
|
|
|
$this->assertFalse($this->friend->hasRendered);
|
|
|
|
|
|
|
|
$this->assertEquals($this->friend->getOutput(), $this->friend->__toString());
|
|
|
|
$this->assertTrue($this->friend->hasRendered);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSetOutput()
|
|
|
|
{
|
|
|
|
$same = $this->view->setOutput('<h1></h1>');
|
|
|
|
$this->assertEquals($same, $this->view);
|
|
|
|
$this->assertEquals('<h1></h1>', $this->view->getOutput());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testAppendOutput()
|
|
|
|
{
|
|
|
|
$this->view->setOutput('<h1>');
|
|
|
|
$this->view->appendOutput('</h1>');
|
|
|
|
$this->assertEquals('<h1></h1>', $this->view->getOutput());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSetStatusCode()
|
|
|
|
{
|
|
|
|
$view = $this->view->setStatusCode(404);
|
|
|
|
$this->assertEquals(404, $view->response->getStatusCode());
|
|
|
|
}
|
2016-08-26 17:21:50 -04:00
|
|
|
|
|
|
|
public function testSendDoubleRenderException()
|
|
|
|
{
|
|
|
|
$this->expectException(DoubleRenderException::class);
|
|
|
|
$this->expectExceptionMessage('A view can only be rendered once, because headers can only be sent once.');
|
|
|
|
|
|
|
|
// First render
|
|
|
|
$this->view->__toString();
|
|
|
|
|
|
|
|
// Second render
|
|
|
|
$this->view->send();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test__toStringDoubleRenderException()
|
|
|
|
{
|
|
|
|
$this->expectException(DoubleRenderException::class);
|
|
|
|
$this->expectExceptionMessage('A view can only be rendered once, because headers can only be sent once.');
|
|
|
|
|
|
|
|
// First render
|
|
|
|
$this->view->send();
|
|
|
|
|
|
|
|
// Second render
|
|
|
|
$this->view->__toString();
|
|
|
|
}
|
2016-08-04 14:55:37 -04:00
|
|
|
}
|