Code formatting for ViewHelper & tests
This commit is contained in:
@ -16,45 +16,47 @@ require_once dirname(__FILE__) . '/../../../view/helpers/BreadcrumbViewHelper.ph
|
||||
|
||||
class BreadcrumbViewHelperTest extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @var BreadcrumbViewHelper
|
||||
*/
|
||||
public $helper;
|
||||
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
Registry::set('BreadcrumbViewHelper', array());
|
||||
$this->helper = new BreadcrumbViewHelper(new PHPView('any'));
|
||||
}
|
||||
|
||||
|
||||
public function testTitle()
|
||||
{
|
||||
$this->helper->breadcrumb('Guest page', 'guest.php');
|
||||
$this->helper->breadcrumb('Guest page', 'guest.php');
|
||||
$result = Registry::get('BreadcrumbViewHelper');
|
||||
$this->assertSame(array('Guest page' => 'guest.php'), Registry::get('BreadcrumbViewHelper'));
|
||||
|
||||
$this->assertSame(array('Guest page' => 'guest.php'), Registry::get('BreadcrumbViewHelper'));
|
||||
|
||||
$this->helper->prepend('Leave message', 'feedback.php');
|
||||
$this->assertSame(array('Leave message' => 'feedback.php', 'Guest page' => 'guest.php'), Registry::get('BreadcrumbViewHelper'));
|
||||
|
||||
$this->assertSame(array('Leave message' => 'feedback.php', 'Guest page' => 'guest.php'), Registry::get('BreadcrumbViewHelper'));
|
||||
|
||||
$this->helper->append('Home page', 'home.php');
|
||||
$this->assertSame(array('Leave message' => 'feedback.php', 'Guest page' => 'guest.php', 'Home page' => 'home.php'), Registry::get('BreadcrumbViewHelper'));
|
||||
$this->assertSame(array('Leave message' => 'feedback.php', 'Guest page' => 'guest.php', 'Home page' => 'home.php'), Registry::get('BreadcrumbViewHelper'));
|
||||
}
|
||||
|
||||
|
||||
public function testToString()
|
||||
{
|
||||
$this->helper->prepend('Home page', 'home.php');
|
||||
$this->helper->breadcrumb('Guest page', 'guest.php');
|
||||
$this->helper->breadcrumb('Guest page', 'guest.php');
|
||||
$this->helper->append('Leave message', 'feedback.php');
|
||||
$this->assertSame(array('Home page' => 'home.php', 'Guest page' => 'guest.php', 'Leave message'=> 'feedback.php'), Registry::get('BreadcrumbViewHelper'));
|
||||
|
||||
$this->assertSame(array('Home page' => 'home.php', 'Guest page' => 'guest.php', 'Leave message' => 'feedback.php'), Registry::get('BreadcrumbViewHelper'));
|
||||
|
||||
$result = $this->helper->__toString();
|
||||
$this->assertSame('<a href="home.php">Home page</a> > <a href="guest.php">Guest page</a> > <a href="feedback.php">Leave message</a>', $result);
|
||||
|
||||
|
||||
$this->helper->setSeparator('-');
|
||||
$result = $this->helper->__toString();
|
||||
$this->assertSame('<a href="home.php">Home page</a>-<a href="guest.php">Guest page</a>-<a href="feedback.php">Leave message</a>', $result);
|
||||
|
||||
|
||||
$this->helper->append('Last page', '');
|
||||
$result = $this->helper->__toString();
|
||||
$this->assertSame('<a href="home.php">Home page</a>-<a href="guest.php">Guest page</a>-<a href="feedback.php">Leave message</a>-Last page', $result);
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -18,14 +18,17 @@ require_once dirname(__FILE__) . '/../../../view/helpers/GetViewHelper.php';
|
||||
|
||||
class GetViewHelperTest extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @var GetViewHelper
|
||||
*/
|
||||
public $helper;
|
||||
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
$this->helper = new GetViewHelper(new PHPView('any'));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @TODO: GetViewHelper: initialize GetViewHelper::$get with empty array()
|
||||
*/
|
||||
@ -34,7 +37,7 @@ class GetViewHelperTest extends PHPUnit_Framework_TestCase
|
||||
$this->setExpectedException('PHPUnit_Framework_Error');
|
||||
$this->helper->get(null);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @TODO: GetViewHelper: check $_GET not null
|
||||
*/
|
||||
@ -43,7 +46,7 @@ class GetViewHelperTest extends PHPUnit_Framework_TestCase
|
||||
$this->setExpectedException('PHPUnit_Framework_Error');
|
||||
$result = $this->helper->get('param');
|
||||
}
|
||||
|
||||
|
||||
public function testGetWithSingleParam()
|
||||
{
|
||||
$_GET['a'] = 'b';
|
||||
@ -59,7 +62,7 @@ class GetViewHelperTest extends PHPUnit_Framework_TestCase
|
||||
$result = $this->helper->get(array('a'));
|
||||
$this->assertSame('?b=a', $result);
|
||||
}
|
||||
|
||||
|
||||
public function testGetWithArray()
|
||||
{
|
||||
$_GET['a'] = array('one' => 1, 'two' => 2);
|
||||
@ -77,5 +80,4 @@ class GetViewHelperTest extends PHPUnit_Framework_TestCase
|
||||
$result = $this->helper->get(array('b' => 'c d e', 'c' => array('five' => 'six seven')));
|
||||
$this->assertSame('?a[one]=1&a[two]=2&b=c+d+e&c[five]=six+seven', $result);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -16,32 +16,35 @@ require_once dirname(__FILE__) . '/../../../view/helpers/HeadViewHelper.php';
|
||||
|
||||
class HeadViewHelperTest extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @var HeadViewHelper
|
||||
*/
|
||||
public $helper;
|
||||
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
Registry::set('HeadViewHelper', array());
|
||||
$this->helper = new HeadViewHelper(null);
|
||||
}
|
||||
|
||||
|
||||
public function testHead()
|
||||
{
|
||||
$this->helper->head('<meta />');
|
||||
$this->helper->head('<meta />');
|
||||
$result = Registry::get('HeadViewHelper');
|
||||
$this->assertSame(array('<meta />'), Registry::get('HeadViewHelper'));
|
||||
|
||||
$this->helper->head('<link />');
|
||||
|
||||
$this->helper->head('<link />');
|
||||
$this->assertSame(array('<meta />', '<link />'), Registry::get('HeadViewHelper'));
|
||||
}
|
||||
|
||||
|
||||
public function testToString()
|
||||
{
|
||||
$this->helper->head('<meta />');
|
||||
$this->helper->head('<link />');
|
||||
|
||||
$this->helper->head('<meta />');
|
||||
$this->helper->head('<link />');
|
||||
|
||||
$result = $this->helper->__toString();
|
||||
|
||||
|
||||
$this->assertSame("<meta />\n <link />\n", $result);
|
||||
}
|
||||
}
|
||||
|
@ -19,25 +19,25 @@ require_once dirname(__FILE__) . '/../../../exception/GeneralException.php';
|
||||
|
||||
class MsgViewHelperTest extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
|
||||
/**
|
||||
* @var MsgViewHelper
|
||||
*/
|
||||
public $helper;
|
||||
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
Session::del('MsgViewHelper');
|
||||
$this->helper = new MsgViewHelper(new PHPView(array('path' => 'any')));
|
||||
}
|
||||
|
||||
|
||||
public function testMsg()
|
||||
{
|
||||
|
||||
$this->helper->msg('new message from test', 'success');
|
||||
$this->helper->msg('new message from test', 'success');
|
||||
$this->assertSame(array('message' => 'new message from test', 'type' => 'success'), Session::get('MsgViewHelper'));
|
||||
|
||||
$this->assertSame($this->helper, $this->helper->msg('error message', 'error'));
|
||||
$this->assertSame(array('message' => 'error message', 'type' => 'error'), Session::get('MsgViewHelper'));
|
||||
|
||||
|
||||
$this->assertSame($this->helper, $this->helper->msg('error message', 'error'));
|
||||
$this->assertSame(array('message' => 'error message', 'type' => 'error'), Session::get('MsgViewHelper'));
|
||||
}
|
||||
|
||||
public function testWrongType()
|
||||
@ -45,13 +45,13 @@ class MsgViewHelperTest extends PHPUnit_Framework_TestCase
|
||||
$this->setExpectedException('GeneralException', 'Unknown message type');
|
||||
$this->helper->msg('some message', 'wrong');
|
||||
}
|
||||
|
||||
|
||||
public function testSuccess()
|
||||
{
|
||||
$this->helper->success('success message');
|
||||
$this->assertSame(array('message' => 'success message', 'type' => 'success'), Session::get('MsgViewHelper'));
|
||||
}
|
||||
|
||||
|
||||
public function testError()
|
||||
{
|
||||
$this->helper->error('error message');
|
||||
@ -65,11 +65,10 @@ class MsgViewHelperTest extends PHPUnit_Framework_TestCase
|
||||
$result = $this->helper->__toString();
|
||||
$this->assertSame('<div class="success">yeah</div>', $result);
|
||||
}
|
||||
|
||||
|
||||
public function testToStringEmpty()
|
||||
{
|
||||
$result = $this->helper->__toString();
|
||||
$this->assertEmpty($result);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -16,32 +16,34 @@ require_once dirname(__FILE__) . '/../../../view/helpers/TitleViewHelper.php';
|
||||
|
||||
class TitleViewHelperTest extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
|
||||
/**
|
||||
* @var TitleViewHelper
|
||||
*/
|
||||
public $helper;
|
||||
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
Registry::set('TitleViewHelper', array());
|
||||
$this->helper = new TitleViewHelper('view');
|
||||
}
|
||||
|
||||
|
||||
public function testTitle()
|
||||
{
|
||||
$this->helper->title('one');
|
||||
$this->helper->title('one');
|
||||
$result = Registry::get('TitleViewHelper');
|
||||
$this->assertSame(array('one'), Registry::get('TitleViewHelper'));
|
||||
|
||||
$this->helper->title('two');
|
||||
|
||||
$this->helper->title('two');
|
||||
$this->assertSame(array('one', 'two'), Registry::get('TitleViewHelper'));
|
||||
}
|
||||
|
||||
|
||||
public function testSeparator()
|
||||
{
|
||||
$this->helper->title('one');
|
||||
$this->helper->title('two');
|
||||
|
||||
$this->helper->title('one');
|
||||
$this->helper->title('two');
|
||||
|
||||
$this->assertSame('one - two', $this->helper->__toString());
|
||||
$this->helper->setSeparator('=');
|
||||
$this->assertSame('one=two', $this->helper->__toString());
|
||||
$this->assertSame('one=two', $this->helper->__toString());
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user