* Copyright 2005-2008, Cake Software Foundation, Inc. * 1785 E. Sahara Avenue, Suite 490-204 * Las Vegas, Nevada 89104 * * Licensed under The Open Group Test Suite License * Redistributions of files must retain the above copyright notice. * * @filesource * @copyright Copyright 2005-2008, Cake Software Foundation, Inc. * @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests * @package cake.tests * @subpackage cake.tests.cases.libs.view.helpers * @since CakePHP(tm) v 1.2.0.4206 * @version $Revision$ * @modifiedby $LastChangedBy$ * @lastmodified $Date$ * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License */ uses('view'.DS.'helpers'.DS.'app_helper', 'view'.DS.'helper', 'view'.DS.'helpers'.DS.'html', 'view'.DS.'helpers'.DS.'form', 'view'.DS.'helpers'.DS.'ajax', 'view'.DS.'helpers'.DS.'javascript', 'view'.DS.'helpers'.DS.'paginator'); /** * Short description for class. * * @package cake.tests * @subpackage cake.tests.cases.libs.view.helpers */ class PaginatorTest extends UnitTestCase { /** * setUp method * * @access public * @return void */ function setUp() { $this->Paginator = new PaginatorHelper(); $this->Paginator->params['paging'] = array( 'Article' => array( 'current' => 9, 'count' => 62, 'prevPage' => false, 'nextPage' => true, 'pageCount' => 7, 'defaults' => array( 'order' => 'Article.date ASC', 'limit' => 9, 'conditions' => array() ), 'options' => array( 'order' => 'Article.date ASC', 'limit' => 9, 'page' => 1, 'conditions' => array() ) ) ); $this->Paginator->Html =& new HtmlHelper(); $this->Paginator->Ajax =& new AjaxHelper(); $this->Paginator->Ajax->Html =& new HtmlHelper(); $this->Paginator->Ajax->Javascript =& new JavascriptHelper(); $this->Paginator->Ajax->Form =& new FormHelper(); Configure::write('Routing.admin', ''); Router::reload(); } /** * testHasPrevious method * * @access public * @return void */ function testHasPrevious() { $this->assertIdentical($this->Paginator->hasPrev(), false); $this->Paginator->params['paging']['Article']['prevPage'] = true; $this->assertIdentical($this->Paginator->hasPrev(), true); $this->Paginator->params['paging']['Article']['prevPage'] = false; } /** * testHasNext method * * @access public * @return void */ function testHasNext() { $this->assertIdentical($this->Paginator->hasNext(), true); $this->Paginator->params['paging']['Article']['nextPage'] = false; $this->assertIdentical($this->Paginator->hasNext(), false); $this->Paginator->params['paging']['Article']['nextPage'] = true; } /** * testDisabledLink method * * @access public * @return void */ function testDisabledLink() { $this->Paginator->params['paging']['Article']['nextPage'] = false; $this->Paginator->params['paging']['Article']['page'] = 1; $result = $this->Paginator->next('Next', array(), true); $expected = '