45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?php
|
|
|
|
use Aura\Web\WebFactory;
|
|
use Aviat\Ion\Friend;
|
|
|
|
class ViewTest extends AnimeClient_TestCase {
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->view = new TestView($this->container);
|
|
$this->friend = new Friend($this->view);
|
|
}
|
|
|
|
public function testGetOutput()
|
|
{
|
|
$this->friend->output = 'foo';
|
|
$this->assertEquals($this->friend->output, $this->friend->getOutput());
|
|
}
|
|
|
|
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 testOutput()
|
|
{
|
|
$this->friend->contentType = 'text/html';
|
|
$this->friend->__destruct();
|
|
$content =& $this->friend->response->content;
|
|
$this->assertEquals($content->getType(), $this->friend->contentType);
|
|
$this->assertEquals($content->getCharset(), 'utf-8');
|
|
$this->assertEquals($content->get(), $this->friend->getOutput());
|
|
}
|
|
} |