2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-03-19 21:10:13 +00:00
|
|
|
* PaginatorHelperTest file
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-10-03 16:31:21 +00:00
|
|
|
* PHP 5
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2012-04-27 02:49:18 +00:00
|
|
|
* CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
|
2013-02-08 11:59:49 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-10-03 16:31:21 +00:00
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2010-10-03 16:31:21 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2013-02-08 11:59:49 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2012-04-27 02:49:18 +00:00
|
|
|
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case.View.Helper
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 1.2.0.4206
|
2013-05-30 22:11:14 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2013-05-30 22:11:14 +00:00
|
|
|
|
2010-12-10 06:23:27 +00:00
|
|
|
App::uses('View', 'View');
|
|
|
|
App::uses('HtmlHelper', 'View/Helper');
|
|
|
|
App::uses('JsHelper', 'View/Helper');
|
|
|
|
App::uses('PaginatorHelper', 'View/Helper');
|
|
|
|
App::uses('FormHelper', 'View/Helper');
|
2009-08-09 21:53:18 +00:00
|
|
|
|
2010-11-04 12:29:23 +00:00
|
|
|
if (!defined('FULL_BASE_URL')) {
|
|
|
|
define('FULL_BASE_URL', 'http://cakephp.org');
|
|
|
|
}
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2009-03-19 21:10:13 +00:00
|
|
|
* PaginatorHelperTest class
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Test.Case.View.Helper
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2009-03-19 21:10:13 +00:00
|
|
|
class PaginatorHelperTest extends CakeTestCase {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* setUp method
|
2008-06-27 06:25:08 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function setUp() {
|
2013-04-02 02:30:27 +00:00
|
|
|
parent::setUp();
|
2013-06-11 18:03:05 +00:00
|
|
|
Configure::write('Config.language', 'eng');
|
2010-07-03 16:16:40 +00:00
|
|
|
$controller = null;
|
|
|
|
$this->View = new View($controller);
|
|
|
|
$this->Paginator = new PaginatorHelper($this->View);
|
2010-08-28 04:01:41 +00:00
|
|
|
$this->Paginator->Js = $this->getMock('PaginatorHelper', array(), array($this->View));
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request = new CakeRequest(null, false);
|
|
|
|
$this->Paginator->request->addParams(array(
|
|
|
|
'paging' => array(
|
|
|
|
'Article' => array(
|
2010-12-20 18:39:22 +00:00
|
|
|
'page' => 2,
|
2010-05-14 04:32:56 +00:00
|
|
|
'current' => 9,
|
|
|
|
'count' => 62,
|
|
|
|
'prevPage' => false,
|
|
|
|
'nextPage' => true,
|
|
|
|
'pageCount' => 7,
|
2012-03-04 04:06:45 +00:00
|
|
|
'order' => null,
|
|
|
|
'limit' => 20,
|
2010-05-14 04:32:56 +00:00
|
|
|
'options' => array(
|
|
|
|
'page' => 1,
|
|
|
|
'conditions' => array()
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2008-05-30 11:40:08 +00:00
|
|
|
)
|
|
|
|
)
|
2010-05-14 04:32:56 +00:00
|
|
|
));
|
2010-08-28 04:01:41 +00:00
|
|
|
$this->Paginator->Html = new HtmlHelper($this->View);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2009-12-09 04:52:02 +00:00
|
|
|
Configure::write('Routing.prefixes', array());
|
2008-05-30 11:40:08 +00:00
|
|
|
Router::reload();
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-03-19 21:10:13 +00:00
|
|
|
/**
|
|
|
|
* tearDown method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function tearDown() {
|
2010-07-03 16:16:40 +00:00
|
|
|
unset($this->View, $this->Paginator);
|
2009-03-19 21:10:13 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testHasPrevious method
|
2008-06-27 06:25:08 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testHasPrevious() {
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertSame($this->Paginator->hasPrev(), false);
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['prevPage'] = true;
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertSame($this->Paginator->hasPrev(), true);
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['prevPage'] = false;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testHasNext method
|
2008-06-27 06:25:08 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testHasNext() {
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertSame($this->Paginator->hasNext(), true);
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['nextPage'] = false;
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertSame($this->Paginator->hasNext(), false);
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['nextPage'] = true;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testDisabledLink method
|
2008-06-27 06:25:08 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testDisabledLink() {
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['nextPage'] = false;
|
|
|
|
$this->Paginator->request->params['paging']['Article']['page'] = 1;
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->next('Next', array(), true);
|
2009-08-27 02:55:24 +00:00
|
|
|
$expected = '<span class="next">Next</span>';
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2008-06-27 06:25:08 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['prevPage'] = false;
|
2009-07-21 02:59:30 +00:00
|
|
|
$result = $this->Paginator->prev('prev', array('update' => 'theList', 'indicator' => 'loading', 'url' => array('controller' => 'posts')), null, array('class' => 'disabled', 'tag' => 'span'));
|
|
|
|
$expected = array(
|
|
|
|
'span' => array('class' => 'disabled'), 'prev', '/span'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testSortLinks method
|
2008-06-27 06:25:08 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testSortLinks() {
|
2008-05-30 11:40:08 +00:00
|
|
|
Router::reload();
|
|
|
|
Router::parse('/');
|
|
|
|
Router::setRequestInfo(array(
|
2010-12-18 20:48:14 +00:00
|
|
|
array('plugin' => null, 'controller' => 'accounts', 'action' => 'index', 'pass' => array(), 'url' => array('url' => 'accounts/')),
|
|
|
|
array('base' => '/officespace', 'here' => '/officespace/accounts/', 'webroot' => '/officespace/')
|
2008-05-30 11:40:08 +00:00
|
|
|
));
|
|
|
|
$this->Paginator->options(array('url' => array('param')));
|
2010-12-19 18:09:52 +00:00
|
|
|
$this->Paginator->request['paging'] = array(
|
|
|
|
'Article' => array(
|
|
|
|
'current' => 9,
|
|
|
|
'count' => 62,
|
|
|
|
'prevPage' => false,
|
|
|
|
'nextPage' => true,
|
|
|
|
'pageCount' => 7,
|
|
|
|
'options' => array(
|
|
|
|
'page' => 1,
|
|
|
|
'order' => array('date' => 'asc'),
|
|
|
|
'conditions' => array()
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2010-12-19 18:09:52 +00:00
|
|
|
)
|
|
|
|
);
|
2011-05-16 22:49:00 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->sort('title');
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/officespace/accounts/index/param/page:1/sort:title/direction:asc'),
|
|
|
|
'Title',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->sort('date');
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2009-08-27 03:33:13 +00:00
|
|
|
'a' => array('href' => '/officespace/accounts/index/param/page:1/sort:date/direction:desc', 'class' => 'asc'),
|
2009-07-21 02:59:30 +00:00
|
|
|
'Date',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-09-03 21:41:26 +00:00
|
|
|
$result = $this->Paginator->sort('title', 'TestTitle');
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/officespace/accounts/index/param/page:1/sort:title/direction:asc'),
|
|
|
|
'TestTitle',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-09-03 21:41:26 +00:00
|
|
|
$result = $this->Paginator->sort('title', array('asc' => 'ascending', 'desc' => 'descending'));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/officespace/accounts/index/param/page:1/sort:title/direction:asc'),
|
|
|
|
'ascending',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['sort'] = 'title';
|
2010-09-03 21:41:26 +00:00
|
|
|
$result = $this->Paginator->sort('title', array('asc' => 'ascending', 'desc' => 'descending'));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2009-08-27 03:33:13 +00:00
|
|
|
'a' => array('href' => '/officespace/accounts/index/param/page:1/sort:title/direction:desc', 'class' => 'asc'),
|
2009-07-21 02:59:30 +00:00
|
|
|
'descending',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-07-21 02:59:30 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('Article.title' => 'desc');
|
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['sort'] = null;
|
2009-07-21 01:53:14 +00:00
|
|
|
$result = $this->Paginator->sort('title');
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertRegExp('/\/accounts\/index\/param\/page:1\/sort:title\/direction:asc" class="desc">Title<\/a>$/', $result);
|
2009-07-21 02:59:30 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('Article.title' => 'asc');
|
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['sort'] = null;
|
2009-07-21 01:53:14 +00:00
|
|
|
$result = $this->Paginator->sort('title');
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertRegExp('/\/accounts\/index\/param\/page:1\/sort:title\/direction:desc" class="asc">Title<\/a>$/', $result);
|
2010-02-07 18:26:50 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('Article.title' => 'desc');
|
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['sort'] = null;
|
2010-09-03 21:41:26 +00:00
|
|
|
$result = $this->Paginator->sort('title', 'Title', array('direction' => 'desc'));
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertRegExp('/\/accounts\/index\/param\/page:1\/sort:title\/direction:asc" class="desc">Title<\/a>$/', $result);
|
2009-11-17 01:11:23 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('Article.title' => 'desc');
|
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['sort'] = null;
|
2010-09-03 21:41:26 +00:00
|
|
|
$result = $this->Paginator->sort('title', 'Title', array('direction' => 'asc'));
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertRegExp('/\/accounts\/index\/param\/page:1\/sort:title\/direction:asc" class="desc">Title<\/a>$/', $result);
|
2009-11-17 01:11:23 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('Article.title' => 'asc');
|
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['sort'] = null;
|
2010-09-03 21:41:26 +00:00
|
|
|
$result = $this->Paginator->sort('title', 'Title', array('direction' => 'asc'));
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertRegExp('/\/accounts\/index\/param\/page:1\/sort:title\/direction:desc" class="asc">Title<\/a>$/', $result);
|
2009-11-17 01:11:23 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('Article.title' => 'asc');
|
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['sort'] = null;
|
2010-09-03 21:41:26 +00:00
|
|
|
$result = $this->Paginator->sort('title', 'Title', array('direction' => 'desc'));
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertRegExp('/\/accounts\/index\/param\/page:1\/sort:title\/direction:desc" class="asc">Title<\/a>$/', $result);
|
2010-05-11 19:12:02 +00:00
|
|
|
|
2010-09-12 04:24:37 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('Article.title' => 'asc');
|
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['sort'] = null;
|
2010-09-03 21:41:26 +00:00
|
|
|
$result = $this->Paginator->sort('title', 'Title', array('direction' => 'desc', 'class' => 'foo'));
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertRegExp('/\/accounts\/index\/param\/page:1\/sort:title\/direction:desc" class="foo asc">Title<\/a>$/', $result);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2010-05-17 03:42:14 +00:00
|
|
|
/**
|
|
|
|
* test that sort() works with virtual field order options.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testSortLinkWithVirtualField() {
|
2010-05-17 03:42:14 +00:00
|
|
|
Router::setRequestInfo(array(
|
|
|
|
array('plugin' => null, 'controller' => 'accounts', 'action' => 'index', 'pass' => array(), 'form' => array(), 'url' => array('url' => 'accounts/')),
|
|
|
|
array('base' => '', 'here' => '/accounts/', 'webroot' => '/')
|
|
|
|
));
|
2010-06-28 03:21:11 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('full_name' => 'asc');
|
2010-05-17 03:42:14 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->sort('Article.full_name');
|
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/accounts/index/page:1/sort:Article.full_name/direction:desc', 'class' => 'asc'),
|
2012-12-17 03:55:03 +00:00
|
|
|
'Article Full Name',
|
2010-05-17 03:42:14 +00:00
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2010-05-17 03:42:14 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->sort('full_name');
|
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/accounts/index/page:1/sort:full_name/direction:desc', 'class' => 'asc'),
|
|
|
|
'Full Name',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2010-05-17 03:42:14 +00:00
|
|
|
|
2010-06-28 03:21:11 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('full_name' => 'desc');
|
2010-05-17 03:42:14 +00:00
|
|
|
$result = $this->Paginator->sort('Article.full_name');
|
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/accounts/index/page:1/sort:Article.full_name/direction:asc', 'class' => 'desc'),
|
2012-12-17 03:55:03 +00:00
|
|
|
'Article Full Name',
|
2010-05-17 03:42:14 +00:00
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2010-05-17 03:42:14 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->sort('full_name');
|
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/accounts/index/page:1/sort:full_name/direction:asc', 'class' => 'desc'),
|
|
|
|
'Full Name',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-10-31 20:36:46 +00:00
|
|
|
/**
|
2009-08-27 03:55:19 +00:00
|
|
|
* testSortLinksUsingDirectionOption method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-11-30 15:44:11 +00:00
|
|
|
public function testSortLinksUsingDirectionOption() {
|
2009-08-27 03:55:19 +00:00
|
|
|
Router::reload();
|
|
|
|
Router::parse('/');
|
|
|
|
Router::setRequestInfo(array(
|
2009-10-31 20:36:46 +00:00
|
|
|
array('plugin' => null, 'controller' => 'accounts', 'action' => 'index', 'pass' => array(),
|
2010-12-18 20:48:14 +00:00
|
|
|
'url' => array('url' => 'accounts/', 'mod_rewrite' => 'true')),
|
|
|
|
array('base' => '/', 'here' => '/accounts/', 'webroot' => '/',)
|
2009-08-27 03:55:19 +00:00
|
|
|
));
|
|
|
|
$this->Paginator->options(array('url' => array('param')));
|
|
|
|
|
2010-09-03 21:41:26 +00:00
|
|
|
$result = $this->Paginator->sort('title', 'TestTitle', array('direction' => 'desc'));
|
2009-08-27 03:55:19 +00:00
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/accounts/index/param/page:1/sort:title/direction:desc'),
|
|
|
|
'TestTitle',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-08-27 03:55:19 +00:00
|
|
|
|
2010-09-03 21:41:26 +00:00
|
|
|
$result = $this->Paginator->sort('title', array('asc' => 'ascending', 'desc' => 'descending'), array('direction' => 'desc'));
|
2009-08-27 03:55:19 +00:00
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/accounts/index/param/page:1/sort:title/direction:desc'),
|
|
|
|
'descending',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-08-27 03:55:19 +00:00
|
|
|
}
|
|
|
|
|
2008-06-27 06:25:08 +00:00
|
|
|
/**
|
|
|
|
* testSortLinksUsingDotNotation method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testSortLinksUsingDotNotation() {
|
2008-06-27 06:25:08 +00:00
|
|
|
Router::reload();
|
|
|
|
Router::parse('/');
|
|
|
|
Router::setRequestInfo(array(
|
2012-11-21 14:39:03 +00:00
|
|
|
array('plugin' => null, 'controller' => 'accounts', 'action' => 'index', 'pass' => array(), 'form' => array(), 'url' => array('url' => 'accounts/', 'mod_rewrite' => 'true'), 'bare' => 0),
|
2010-12-18 20:48:14 +00:00
|
|
|
array('base' => '/officespace', 'here' => '/officespace/accounts/', 'webroot' => '/officespace/')
|
2008-06-27 06:25:08 +00:00
|
|
|
));
|
2008-07-05 09:44:42 +00:00
|
|
|
|
2012-12-17 03:55:03 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('Article.title' => 'desc');
|
|
|
|
$result = $this->Paginator->sort('Article.title');
|
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/officespace/accounts/index/page:1/sort:Article.title/direction:asc', 'class' => 'desc'),
|
|
|
|
'Article Title',
|
|
|
|
'/a'
|
|
|
|
);
|
|
|
|
$this->assertTags($result, $expected);
|
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('Article.title' => 'desc');
|
2010-09-03 21:41:26 +00:00
|
|
|
$result = $this->Paginator->sort('Article.title', 'Title');
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2009-08-27 03:33:13 +00:00
|
|
|
'a' => array('href' => '/officespace/accounts/index/page:1/sort:Article.title/direction:asc', 'class' => 'desc'),
|
2009-07-21 02:59:30 +00:00
|
|
|
'Title',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-06-27 06:25:08 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('Article.title' => 'asc');
|
2010-09-03 21:41:26 +00:00
|
|
|
$result = $this->Paginator->sort('Article.title', 'Title');
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2009-08-27 03:33:13 +00:00
|
|
|
'a' => array('href' => '/officespace/accounts/index/page:1/sort:Article.title/direction:desc', 'class' => 'asc'),
|
2009-07-21 02:59:30 +00:00
|
|
|
'Title',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-06-27 06:25:08 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('Account.title' => 'asc');
|
2009-03-12 17:11:08 +00:00
|
|
|
$result = $this->Paginator->sort('title');
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/officespace/accounts/index/page:1/sort:title/direction:asc'),
|
|
|
|
'Title',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-03-12 17:11:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-03-12 17:11:08 +00:00
|
|
|
/**
|
|
|
|
* testSortKey method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testSortKey() {
|
2009-03-12 17:11:08 +00:00
|
|
|
$result = $this->Paginator->sortKey(null, array(
|
2010-04-23 02:50:04 +00:00
|
|
|
'order' => array('Article.title' => 'desc'
|
2009-03-12 17:11:08 +00:00
|
|
|
)));
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals('Article.title', $result);
|
2010-04-23 02:50:04 +00:00
|
|
|
|
2011-09-09 13:05:22 +00:00
|
|
|
$result = $this->Paginator->sortKey('Article', array('order' => 'Article.title'));
|
2012-03-23 06:37:12 +00:00
|
|
|
$this->assertEquals('Article.title', $result);
|
2011-09-09 13:05:22 +00:00
|
|
|
|
2010-04-23 02:50:04 +00:00
|
|
|
$result = $this->Paginator->sortKey('Article', array('sort' => 'Article.title'));
|
2012-03-23 06:37:12 +00:00
|
|
|
$this->assertEquals('Article.title', $result);
|
2010-04-23 02:50:04 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->sortKey('Article', array('sort' => 'Article'));
|
2012-03-23 06:37:12 +00:00
|
|
|
$this->assertEquals('Article', $result);
|
2009-03-22 18:59:53 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2012-03-04 04:06:45 +00:00
|
|
|
/**
|
|
|
|
* Test that sortKey falls back to the default sorting options set
|
|
|
|
* in the $params which are the default pagination options.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testSortKeyFallbackToParams() {
|
|
|
|
$this->Paginator->request->params['paging']['Article']['order'] = 'Article.body';
|
|
|
|
$result = $this->Paginator->sortKey();
|
|
|
|
$this->assertEquals('Article.body', $result);
|
|
|
|
|
|
|
|
$result = $this->Paginator->sortKey('Article');
|
|
|
|
$this->assertEquals('Article.body', $result);
|
2012-03-04 04:19:50 +00:00
|
|
|
|
|
|
|
$this->Paginator->request->params['paging']['Article']['order'] = array(
|
|
|
|
'Article.body' => 'DESC'
|
|
|
|
);
|
|
|
|
$result = $this->Paginator->sortKey();
|
|
|
|
$this->assertEquals('Article.body', $result);
|
|
|
|
|
|
|
|
$result = $this->Paginator->sortKey('Article');
|
|
|
|
$this->assertEquals('Article.body', $result);
|
2012-03-04 04:06:45 +00:00
|
|
|
}
|
|
|
|
|
2009-03-22 18:59:53 +00:00
|
|
|
/**
|
|
|
|
* testSortDir method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testSortDir() {
|
2009-07-21 02:59:30 +00:00
|
|
|
$result = $this->Paginator->sortDir();
|
|
|
|
$expected = 'asc';
|
2009-03-12 17:11:08 +00:00
|
|
|
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2009-03-12 17:11:08 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('Article.title' => 'desc');
|
2009-07-21 02:59:30 +00:00
|
|
|
$result = $this->Paginator->sortDir();
|
|
|
|
$expected = 'desc';
|
2009-03-22 18:59:53 +00:00
|
|
|
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2009-03-22 18:59:53 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
unset($this->Paginator->request->params['paging']['Article']['options']);
|
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('Article.title' => 'asc');
|
2009-07-21 02:59:30 +00:00
|
|
|
$result = $this->Paginator->sortDir();
|
|
|
|
$expected = 'asc';
|
2009-03-22 18:59:53 +00:00
|
|
|
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2009-03-22 18:59:53 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
unset($this->Paginator->request->params['paging']['Article']['options']);
|
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('title' => 'desc');
|
2009-07-21 02:59:30 +00:00
|
|
|
$result = $this->Paginator->sortDir();
|
|
|
|
$expected = 'desc';
|
2009-03-22 18:59:53 +00:00
|
|
|
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2009-03-22 18:59:53 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
unset($this->Paginator->request->params['paging']['Article']['options']);
|
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('title' => 'asc');
|
2009-07-21 02:59:30 +00:00
|
|
|
$result = $this->Paginator->sortDir();
|
|
|
|
$expected = 'asc';
|
2009-03-22 18:59:53 +00:00
|
|
|
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2009-03-22 18:59:53 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
unset($this->Paginator->request->params['paging']['Article']['options']);
|
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['direction'] = 'asc';
|
2009-07-21 02:59:30 +00:00
|
|
|
$result = $this->Paginator->sortDir();
|
|
|
|
$expected = 'asc';
|
2009-03-22 18:59:53 +00:00
|
|
|
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2009-03-22 18:59:53 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
unset($this->Paginator->request->params['paging']['Article']['options']);
|
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['direction'] = 'desc';
|
2009-07-21 02:59:30 +00:00
|
|
|
$result = $this->Paginator->sortDir();
|
|
|
|
$expected = 'desc';
|
2009-03-22 18:59:53 +00:00
|
|
|
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2009-03-22 18:59:53 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
unset($this->Paginator->request->params['paging']['Article']['options']);
|
2009-07-21 02:59:30 +00:00
|
|
|
$result = $this->Paginator->sortDir('Article', array('direction' => 'asc'));
|
|
|
|
$expected = 'asc';
|
2009-03-22 18:59:53 +00:00
|
|
|
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2009-03-22 18:59:53 +00:00
|
|
|
|
2009-07-21 02:59:30 +00:00
|
|
|
$result = $this->Paginator->sortDir('Article', array('direction' => 'desc'));
|
|
|
|
$expected = 'desc';
|
2009-03-22 18:59:53 +00:00
|
|
|
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2009-03-22 18:59:53 +00:00
|
|
|
|
2009-07-21 02:59:30 +00:00
|
|
|
$result = $this->Paginator->sortDir('Article', array('direction' => 'asc'));
|
|
|
|
$expected = 'asc';
|
2009-03-22 18:59:53 +00:00
|
|
|
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2009-07-21 02:59:30 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2012-03-04 04:19:50 +00:00
|
|
|
/**
|
|
|
|
* Test that sortDir falls back to the default sorting options set
|
|
|
|
* in the $params which are the default pagination options.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testSortDirFallbackToParams() {
|
|
|
|
$this->Paginator->request->params['paging']['Article']['order'] = array(
|
|
|
|
'Article.body' => 'ASC'
|
|
|
|
);
|
|
|
|
$result = $this->Paginator->sortDir();
|
|
|
|
$this->assertEquals('asc', $result);
|
|
|
|
|
|
|
|
$result = $this->Paginator->sortDir('Article');
|
|
|
|
$this->assertEquals('asc', $result);
|
|
|
|
|
|
|
|
$this->Paginator->request->params['paging']['Article']['order'] = array(
|
|
|
|
'Article.body' => 'DESC'
|
|
|
|
);
|
|
|
|
$result = $this->Paginator->sortDir();
|
|
|
|
$this->assertEquals('desc', $result);
|
|
|
|
|
|
|
|
$result = $this->Paginator->sortDir('Article');
|
|
|
|
$this->assertEquals('desc', $result);
|
|
|
|
}
|
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testSortAdminLinks method
|
2008-06-27 06:25:08 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testSortAdminLinks() {
|
2009-12-09 04:52:02 +00:00
|
|
|
Configure::write('Routing.prefixes', array('admin'));
|
2008-06-27 06:25:08 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
Router::reload();
|
|
|
|
Router::setRequestInfo(array(
|
2010-12-18 20:48:14 +00:00
|
|
|
array('pass' => array(), 'named' => array(), 'controller' => 'users', 'plugin' => null, 'action' => 'admin_index', 'prefix' => 'admin', 'admin' => true, 'url' => array('ext' => 'html', 'url' => 'admin/users')),
|
2008-05-30 11:40:08 +00:00
|
|
|
array('base' => '', 'here' => '/admin/users', 'webroot' => '/')
|
|
|
|
));
|
|
|
|
Router::parse('/admin/users');
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['page'] = 1;
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->next('Next');
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'span' => array('class' => 'next'),
|
|
|
|
'a' => array('href' => '/admin/users/index/page:2', 'rel' => 'next'),
|
2009-07-21 02:59:30 +00:00
|
|
|
'Next',
|
2010-02-07 18:26:50 +00:00
|
|
|
'/a',
|
|
|
|
'/span'
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-06-27 06:25:08 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
Router::reload();
|
|
|
|
Router::setRequestInfo(array(
|
2010-12-18 20:48:14 +00:00
|
|
|
array('plugin' => null, 'controller' => 'test', 'action' => 'admin_index', 'pass' => array(), 'prefix' => 'admin', 'admin' => true, 'url' => array('url' => 'admin/test')),
|
|
|
|
array('base' => '', 'here' => '/admin/test', 'webroot' => '/')
|
2008-05-30 11:40:08 +00:00
|
|
|
));
|
|
|
|
Router::parse('/');
|
|
|
|
$this->Paginator->options(array('url' => array('param')));
|
|
|
|
$result = $this->Paginator->sort('title');
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/admin/test/index/param/page:1/sort:title/direction:asc'),
|
|
|
|
'Title',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-07-05 09:44:42 +00:00
|
|
|
|
|
|
|
$this->Paginator->options(array('url' => array('param')));
|
2010-09-03 21:41:26 +00:00
|
|
|
$result = $this->Paginator->sort('Article.title', 'Title');
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/admin/test/index/param/page:1/sort:Article.title/direction:asc'),
|
|
|
|
'Title',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testUrlGeneration method
|
2008-06-27 06:25:08 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testUrlGeneration() {
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->sort('controller');
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/index/page:1/sort:controller/direction:asc'),
|
|
|
|
'Controller',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->url();
|
2012-03-23 06:37:12 +00:00
|
|
|
$this->assertEquals('/index/page:1', $result);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['page'] = 2;
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->url();
|
2012-03-23 06:37:12 +00:00
|
|
|
$this->assertEquals('/index/page:2', $result);
|
2008-06-27 06:25:08 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$options = array('order' => array('Article' => 'desc'));
|
|
|
|
$result = $this->Paginator->url($options);
|
2012-03-23 06:37:12 +00:00
|
|
|
$this->assertEquals('/index/page:2/sort:Article/direction:desc', $result);
|
2008-07-05 09:44:42 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['page'] = 3;
|
2008-07-05 09:44:42 +00:00
|
|
|
$options = array('order' => array('Article.name' => 'desc'));
|
|
|
|
$result = $this->Paginator->url($options);
|
2012-03-23 06:37:12 +00:00
|
|
|
$this->assertEquals('/index/page:3/sort:Article.name/direction:desc', $result);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-07-19 17:20:42 +00:00
|
|
|
/**
|
|
|
|
* test URL generation with prefix routes
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testUrlGenerationWithPrefixes() {
|
2009-09-30 04:50:15 +00:00
|
|
|
Configure::write('Routing.prefixes', array('members'));
|
|
|
|
Router::reload();
|
|
|
|
|
2008-07-24 04:04:21 +00:00
|
|
|
Router::parse('/');
|
|
|
|
|
2012-05-19 14:48:15 +00:00
|
|
|
Router::setRequestInfo(array(
|
2008-07-19 17:20:42 +00:00
|
|
|
array('controller' => 'posts', 'action' => 'index', 'form' => array(), 'url' => array(), 'plugin' => null),
|
2010-12-18 20:48:14 +00:00
|
|
|
array('base' => '', 'here' => 'posts/index', 'webroot' => '/')
|
2008-07-24 04:04:21 +00:00
|
|
|
));
|
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['page'] = 2;
|
|
|
|
$this->Paginator->request->params['paging']['Article']['page'] = 2;
|
|
|
|
$this->Paginator->request->params['paging']['Article']['prevPage'] = true;
|
2008-07-19 17:20:42 +00:00
|
|
|
$options = array('members' => true);
|
2008-07-24 04:04:21 +00:00
|
|
|
|
2008-07-19 17:20:42 +00:00
|
|
|
$result = $this->Paginator->url($options);
|
|
|
|
$expected = '/members/posts/index/page:2';
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2008-07-19 17:20:42 +00:00
|
|
|
|
2008-07-24 04:04:21 +00:00
|
|
|
$result = $this->Paginator->sort('name', null, array('url' => $options));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/members/posts/index/page:2/sort:name/direction:asc'),
|
|
|
|
'Name',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-07-24 04:04:21 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->next('next', array('url' => $options));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'span' => array('class' => 'next'),
|
|
|
|
'a' => array('href' => '/members/posts/index/page:3', 'rel' => 'next'),
|
2009-07-21 02:59:30 +00:00
|
|
|
'next',
|
2010-02-07 18:26:50 +00:00
|
|
|
'/a',
|
|
|
|
'/span'
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-07-24 04:04:21 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->prev('prev', array('url' => $options));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'span' => array('class' => 'prev'),
|
|
|
|
'a' => array('href' => '/members/posts/index/page:1', 'rel' => 'prev'),
|
2009-07-21 02:59:30 +00:00
|
|
|
'prev',
|
2010-02-07 18:26:50 +00:00
|
|
|
'/a',
|
|
|
|
'/span'
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-07-24 04:04:21 +00:00
|
|
|
|
|
|
|
$options = array('members' => true, 'controller' => 'posts', 'order' => array('name' => 'desc'));
|
|
|
|
$result = $this->Paginator->url($options);
|
|
|
|
$expected = '/members/posts/index/page:2/sort:name/direction:desc';
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2008-07-24 04:04:21 +00:00
|
|
|
|
2008-07-19 17:20:42 +00:00
|
|
|
$options = array('controller' => 'posts', 'order' => array('Article.name' => 'desc'));
|
|
|
|
$result = $this->Paginator->url($options);
|
|
|
|
$expected = '/posts/index/page:2/sort:Article.name/direction:desc';
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2008-07-19 17:20:42 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-07-19 17:20:42 +00:00
|
|
|
/**
|
2008-06-02 19:22:55 +00:00
|
|
|
* testOptions method
|
2008-06-27 06:25:08 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testOptions() {
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->Paginator->options('myDiv');
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals('myDiv', $this->Paginator->options['update']);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
$this->Paginator->options = array();
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params = array();
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
$options = array('paging' => array('Article' => array(
|
|
|
|
'order' => 'desc',
|
2008-06-27 06:25:08 +00:00
|
|
|
'sort' => 'title'
|
2008-05-30 11:40:08 +00:00
|
|
|
)));
|
|
|
|
$this->Paginator->options($options);
|
|
|
|
|
|
|
|
$expected = array('Article' => array(
|
|
|
|
'order' => 'desc',
|
|
|
|
'sort' => 'title'
|
|
|
|
));
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $this->Paginator->request->params['paging']);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
$this->Paginator->options = array();
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params = array();
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
$options = array('Article' => array(
|
|
|
|
'order' => 'desc',
|
2008-06-27 06:25:08 +00:00
|
|
|
'sort' => 'title'
|
2008-05-30 11:40:08 +00:00
|
|
|
));
|
|
|
|
$this->Paginator->options($options);
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $this->Paginator->request->params['paging']);
|
2008-07-05 09:44:42 +00:00
|
|
|
|
|
|
|
$options = array('paging' => array('Article' => array(
|
|
|
|
'order' => 'desc',
|
|
|
|
'sort' => 'Article.title'
|
|
|
|
)));
|
|
|
|
$this->Paginator->options($options);
|
|
|
|
|
|
|
|
$expected = array('Article' => array(
|
|
|
|
'order' => 'desc',
|
|
|
|
'sort' => 'Article.title'
|
|
|
|
));
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $this->Paginator->request->params['paging']);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-10-31 20:36:46 +00:00
|
|
|
/**
|
|
|
|
* testPassedArgsMergingWithUrlOptions method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testPassedArgsMergingWithUrlOptions() {
|
2009-10-31 20:36:46 +00:00
|
|
|
Router::reload();
|
|
|
|
Router::parse('/');
|
|
|
|
Router::setRequestInfo(array(
|
2010-12-18 20:48:14 +00:00
|
|
|
array('plugin' => null, 'controller' => 'articles', 'action' => 'index', 'pass' => array('2'), 'named' => array('foo' => 'bar'), 'url' => array('url' => 'articles/index/2/foo:bar')),
|
2010-12-19 21:47:22 +00:00
|
|
|
array('base' => '/', 'here' => '/articles/', 'webroot' => '/')
|
2009-10-31 20:36:46 +00:00
|
|
|
));
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
2009-12-23 00:05:06 +00:00
|
|
|
'Article' => array(
|
2010-02-07 18:26:50 +00:00
|
|
|
'page' => 1, 'current' => 3, 'count' => 13,
|
2009-12-23 00:05:06 +00:00
|
|
|
'prevPage' => false, 'nextPage' => true, 'pageCount' => 8,
|
|
|
|
'options' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 1,
|
|
|
|
'order' => array(),
|
2010-12-19 18:09:52 +00:00
|
|
|
'conditions' => array()
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2009-12-23 00:05:06 +00:00
|
|
|
)
|
|
|
|
);
|
2009-10-31 20:36:46 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['pass'] = array(2);
|
|
|
|
$this->Paginator->request->params['named'] = array('foo' => 'bar');
|
2012-03-03 04:46:15 +00:00
|
|
|
$this->Paginator->request->query = array('x' => 'y');
|
2010-11-05 02:53:00 +00:00
|
|
|
$this->Paginator->beforeRender('posts/index');
|
2009-10-31 20:36:46 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->sort('title');
|
|
|
|
$expected = array(
|
2012-03-03 04:46:15 +00:00
|
|
|
'a' => array('href' => '/articles/index/2/page:1/foo:bar/sort:title/direction:asc?x=y'),
|
2009-10-31 20:36:46 +00:00
|
|
|
'Title',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-10-31 20:36:46 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->numbers();
|
|
|
|
$expected = array(
|
|
|
|
array('span' => array('class' => 'current')), '1', '/span',
|
|
|
|
' | ',
|
2012-03-03 04:46:15 +00:00
|
|
|
array('span' => array()), array('a' => array('href' => '/articles/index/2/page:2/foo:bar?x=y')), '2', '/a', '/span',
|
2009-10-31 20:36:46 +00:00
|
|
|
' | ',
|
2012-03-03 04:46:15 +00:00
|
|
|
array('span' => array()), array('a' => array('href' => '/articles/index/2/page:3/foo:bar?x=y')), '3', '/a', '/span',
|
2009-10-31 20:36:46 +00:00
|
|
|
' | ',
|
2012-03-03 04:46:15 +00:00
|
|
|
array('span' => array()), array('a' => array('href' => '/articles/index/2/page:4/foo:bar?x=y')), '4', '/a', '/span',
|
2009-10-31 20:36:46 +00:00
|
|
|
' | ',
|
2012-03-03 04:46:15 +00:00
|
|
|
array('span' => array()), array('a' => array('href' => '/articles/index/2/page:5/foo:bar?x=y')), '5', '/a', '/span',
|
2009-10-31 20:36:46 +00:00
|
|
|
' | ',
|
2012-03-03 04:46:15 +00:00
|
|
|
array('span' => array()), array('a' => array('href' => '/articles/index/2/page:6/foo:bar?x=y')), '6', '/a', '/span',
|
2009-10-31 20:36:46 +00:00
|
|
|
' | ',
|
2012-03-03 04:46:15 +00:00
|
|
|
array('span' => array()), array('a' => array('href' => '/articles/index/2/page:7/foo:bar?x=y')), '7', '/a', '/span',
|
2009-10-31 20:36:46 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-12-23 00:05:06 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->next('Next');
|
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'span' => array('class' => 'next'),
|
2012-03-03 04:46:15 +00:00
|
|
|
'a' => array('href' => '/articles/index/2/page:2/foo:bar?x=y', 'rel' => 'next'),
|
|
|
|
'Next',
|
|
|
|
'/a',
|
|
|
|
'/span'
|
|
|
|
);
|
|
|
|
$this->assertTags($result, $expected);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* testPassedArgsMergingWithUrlOptionsParamTypeQuerystring method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testPassedArgsMergingWithUrlOptionsParamTypeQuerystring() {
|
|
|
|
Router::reload();
|
|
|
|
Router::parse('/');
|
|
|
|
Router::setRequestInfo(array(
|
|
|
|
array('plugin' => null, 'controller' => 'articles', 'action' => 'index', 'pass' => array('2'), 'named' => array('foo' => 'bar'), 'url' => array('url' => 'articles/index/2/foo:bar')),
|
|
|
|
array('base' => '/', 'here' => '/articles/', 'webroot' => '/')
|
|
|
|
));
|
|
|
|
$this->Paginator->request->params['paging'] = array(
|
|
|
|
'Article' => array(
|
|
|
|
'page' => 1, 'current' => 3, 'count' => 13,
|
|
|
|
'prevPage' => false, 'nextPage' => true, 'pageCount' => 8,
|
|
|
|
'options' => array(
|
|
|
|
'page' => 1,
|
|
|
|
'order' => array(),
|
|
|
|
'conditions' => array()
|
|
|
|
),
|
|
|
|
'paramType' => 'querystring'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->Paginator->request->params['pass'] = array(2);
|
|
|
|
$this->Paginator->request->params['named'] = array('foo' => 'bar');
|
|
|
|
$this->Paginator->request->query = array('x' => 'y');
|
|
|
|
$this->Paginator->beforeRender('posts/index');
|
|
|
|
|
|
|
|
$result = $this->Paginator->sort('title');
|
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/articles/index/2/foo:bar?x=y&page=1&sort=title&direction=asc'),
|
|
|
|
'Title',
|
|
|
|
'/a'
|
|
|
|
);
|
|
|
|
$this->assertTags($result, $expected);
|
|
|
|
|
|
|
|
$result = $this->Paginator->numbers();
|
|
|
|
$expected = array(
|
|
|
|
array('span' => array('class' => 'current')), '1', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/articles/index/2/foo:bar?x=y&page=2')), '2', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/articles/index/2/foo:bar?x=y&page=3')), '3', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/articles/index/2/foo:bar?x=y&page=4')), '4', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/articles/index/2/foo:bar?x=y&page=5')), '5', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/articles/index/2/foo:bar?x=y&page=6')), '6', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/articles/index/2/foo:bar?x=y&page=7')), '7', '/a', '/span',
|
|
|
|
);
|
|
|
|
$this->assertTags($result, $expected);
|
|
|
|
|
|
|
|
$result = $this->Paginator->next('Next');
|
|
|
|
$expected = array(
|
|
|
|
'span' => array('class' => 'next'),
|
|
|
|
'a' => array('href' => '/articles/index/2/foo:bar?x=y&page=2', 'rel' => 'next'),
|
2009-12-23 00:05:06 +00:00
|
|
|
'Next',
|
2010-02-07 18:26:50 +00:00
|
|
|
'/a',
|
|
|
|
'/span'
|
2009-12-23 00:05:06 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-10-31 20:36:46 +00:00
|
|
|
}
|
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testPagingLinks method
|
2008-06-27 06:25:08 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testPagingLinks() {
|
2010-12-19 17:43:29 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
|
|
|
'Client' => array(
|
|
|
|
'page' => 1,
|
|
|
|
'current' => 3,
|
|
|
|
'count' => 13,
|
|
|
|
'prevPage' => false,
|
|
|
|
'nextPage' => true,
|
|
|
|
'pageCount' => 5,
|
|
|
|
'options' => array(
|
|
|
|
'page' => 1,
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2010-12-19 17:43:29 +00:00
|
|
|
)
|
2008-05-30 11:40:08 +00:00
|
|
|
);
|
|
|
|
$result = $this->Paginator->prev('<< Previous', null, null, array('class' => 'disabled'));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2009-08-27 02:55:24 +00:00
|
|
|
'span' => array('class' => 'disabled'),
|
2009-07-21 02:59:30 +00:00
|
|
|
'<< Previous',
|
2009-08-27 02:55:24 +00:00
|
|
|
'/span'
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-06-27 06:25:08 +00:00
|
|
|
|
2009-08-27 02:55:24 +00:00
|
|
|
$result = $this->Paginator->prev('<< Previous', null, null, array('class' => 'disabled', 'tag' => 'div'));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2009-08-27 02:55:24 +00:00
|
|
|
'div' => array('class' => 'disabled'),
|
2009-07-21 02:59:30 +00:00
|
|
|
'<< Previous',
|
2009-08-27 02:55:24 +00:00
|
|
|
'/div'
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Client']['page'] = 2;
|
|
|
|
$this->Paginator->request->params['paging']['Client']['prevPage'] = true;
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->prev('<< Previous', null, null, array('class' => 'disabled'));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'span' => array('class' => 'prev'),
|
|
|
|
'a' => array('href' => '/index/page:1', 'rel' => 'prev'),
|
2009-07-21 02:59:30 +00:00
|
|
|
'<< Previous',
|
2010-02-07 18:26:50 +00:00
|
|
|
'/a',
|
|
|
|
'/span'
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-03-12 17:11:08 +00:00
|
|
|
|
2012-11-16 23:57:02 +00:00
|
|
|
$result = $this->Paginator->prev('<< Previous', array('tag' => false), null, array('class' => 'disabled'));
|
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/index/page:1', 'rel' => 'prev', 'class' => 'prev'),
|
|
|
|
'<< Previous',
|
|
|
|
'/a'
|
|
|
|
);
|
|
|
|
$this->assertTags($result, $expected);
|
|
|
|
|
2012-12-23 13:45:41 +00:00
|
|
|
$result = $this->Paginator->prev(
|
|
|
|
'<< Previous',
|
|
|
|
array(),
|
|
|
|
null,
|
|
|
|
array('disabledTag' => 'span', 'class' => 'disabled')
|
|
|
|
);
|
|
|
|
$expected = array(
|
|
|
|
'span' => array('class' => 'prev'),
|
|
|
|
'a' => array('href' => '/index/page:1', 'rel' => 'prev'),
|
|
|
|
'<< Previous',
|
|
|
|
'/a',
|
|
|
|
'/span'
|
|
|
|
);
|
|
|
|
$this->assertTags($result, $expected);
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->next('Next');
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'span' => array('class' => 'next'),
|
|
|
|
'a' => array('href' => '/index/page:3', 'rel' => 'next'),
|
2009-07-21 02:59:30 +00:00
|
|
|
'Next',
|
2010-02-07 18:26:50 +00:00
|
|
|
'/a',
|
|
|
|
'/span'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2010-02-07 18:26:50 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->next('Next', array('tag' => 'li'));
|
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'li' => array('class' => 'next'),
|
|
|
|
'a' => array('href' => '/index/page:3', 'rel' => 'next'),
|
2010-02-07 18:26:50 +00:00
|
|
|
'Next',
|
|
|
|
'/a',
|
|
|
|
'/li'
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-03-12 17:11:08 +00:00
|
|
|
|
2012-11-16 23:57:02 +00:00
|
|
|
$result = $this->Paginator->next('Next', array('tag' => false));
|
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/index/page:3', 'rel' => 'next', 'class' => 'next'),
|
|
|
|
'Next',
|
|
|
|
'/a'
|
|
|
|
);
|
|
|
|
$this->assertTags($result, $expected);
|
|
|
|
|
2008-11-23 16:38:35 +00:00
|
|
|
$result = $this->Paginator->prev('<< Previous', array('escape' => true));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'span' => array('class' => 'prev'),
|
|
|
|
'a' => array('href' => '/index/page:1', 'rel' => 'prev'),
|
2009-07-21 02:59:30 +00:00
|
|
|
'<< Previous',
|
2010-02-07 18:26:50 +00:00
|
|
|
'/a',
|
|
|
|
'/span'
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-03-12 17:11:08 +00:00
|
|
|
|
2008-11-23 16:38:35 +00:00
|
|
|
$result = $this->Paginator->prev('<< Previous', array('escape' => false));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'span' => array('class' => 'prev'),
|
|
|
|
'a' => array('href' => '/index/page:1', 'rel' => 'prev'),
|
2009-07-21 02:59:30 +00:00
|
|
|
'preg:/<< Previous/',
|
2010-02-07 18:26:50 +00:00
|
|
|
'/a',
|
|
|
|
'/span'
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-03-12 17:11:08 +00:00
|
|
|
|
2010-12-19 17:43:29 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
|
|
|
'Client' => array(
|
|
|
|
'page' => 1,
|
|
|
|
'current' => 1,
|
2011-05-16 22:49:00 +00:00
|
|
|
'count' => 13,
|
|
|
|
'prevPage' => false,
|
|
|
|
'nextPage' => true,
|
2010-12-19 17:43:29 +00:00
|
|
|
'pageCount' => 5,
|
|
|
|
'options' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 1,
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2010-12-19 17:43:29 +00:00
|
|
|
)
|
2008-11-23 16:38:35 +00:00
|
|
|
);
|
2009-03-12 17:11:08 +00:00
|
|
|
|
2008-11-23 16:38:35 +00:00
|
|
|
$result = $this->Paginator->prev('<< Previous', null, '<strong>Disabled</strong>');
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2009-08-27 02:55:24 +00:00
|
|
|
'span' => array('class' => 'prev'),
|
2009-07-21 02:59:30 +00:00
|
|
|
'<strong>Disabled</strong>',
|
2009-08-27 02:55:24 +00:00
|
|
|
'/span'
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-03-12 17:11:08 +00:00
|
|
|
|
2008-11-23 16:38:35 +00:00
|
|
|
$result = $this->Paginator->prev('<< Previous', null, '<strong>Disabled</strong>', array('escape' => true));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2009-08-27 02:55:24 +00:00
|
|
|
'span' => array('class' => 'prev'),
|
2009-07-21 02:59:30 +00:00
|
|
|
'<strong>Disabled</strong>',
|
2009-08-27 02:55:24 +00:00
|
|
|
'/span'
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-03-12 17:11:08 +00:00
|
|
|
|
2008-11-23 16:38:35 +00:00
|
|
|
$result = $this->Paginator->prev('<< Previous', null, '<strong>Disabled</strong>', array('escape' => false));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2009-08-27 02:55:24 +00:00
|
|
|
'span' => array('class' => 'prev'),
|
2009-07-21 02:59:30 +00:00
|
|
|
'<strong', 'Disabled', '/strong',
|
2009-08-27 02:55:24 +00:00
|
|
|
'/span'
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-07-05 09:44:42 +00:00
|
|
|
|
2012-11-16 23:57:02 +00:00
|
|
|
$result = $this->Paginator->prev('<< Previous', array('tag' => false), '<strong>Disabled</strong>');
|
|
|
|
$expected = array(
|
|
|
|
'span' => array('class' => 'prev'),
|
|
|
|
'<strong>Disabled</strong>',
|
|
|
|
'/span'
|
|
|
|
);
|
|
|
|
$this->assertTags($result, $expected);
|
|
|
|
|
2012-12-23 13:45:41 +00:00
|
|
|
$result = $this->Paginator->prev(
|
|
|
|
'<< Previous',
|
|
|
|
array('tag' => 'li'),
|
|
|
|
null,
|
|
|
|
array('tag' => 'li', 'disabledTag' => 'span', 'class' => 'disabled')
|
|
|
|
);
|
|
|
|
$expected = array(
|
|
|
|
'li' => array('class' => 'disabled'),
|
|
|
|
'span' => array(),
|
|
|
|
'<< Previous',
|
|
|
|
'/span',
|
|
|
|
'/li'
|
|
|
|
);
|
|
|
|
$this->assertTags($result, $expected);
|
|
|
|
$result = $this->Paginator->prev(
|
|
|
|
'<< Previous',
|
|
|
|
array(),
|
|
|
|
null,
|
|
|
|
array('tag' => false, 'disabledTag' => 'span', 'class' => 'disabled')
|
|
|
|
);
|
|
|
|
$expected = array(
|
|
|
|
'span' => array('class' => 'disabled'),
|
|
|
|
'<< Previous',
|
|
|
|
'/span',
|
|
|
|
);
|
|
|
|
$this->assertTags($result, $expected);
|
|
|
|
|
2010-12-19 17:43:29 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
|
|
|
'Client' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 1,
|
|
|
|
'current' => 3,
|
|
|
|
'count' => 13,
|
|
|
|
'prevPage' => false,
|
|
|
|
'nextPage' => true,
|
2010-12-19 17:43:29 +00:00
|
|
|
'pageCount' => 5,
|
|
|
|
'options' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 1,
|
|
|
|
'limit' => 3,
|
2010-12-19 18:09:52 +00:00
|
|
|
'order' => array('Client.name' => 'DESC'),
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2010-12-19 17:43:29 +00:00
|
|
|
)
|
2008-07-05 09:44:42 +00:00
|
|
|
);
|
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Client']['page'] = 2;
|
|
|
|
$this->Paginator->request->params['paging']['Client']['prevPage'] = true;
|
2008-07-05 09:44:42 +00:00
|
|
|
$result = $this->Paginator->prev('<< Previous', null, null, array('class' => 'disabled'));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'span' => array('class' => 'prev'),
|
2010-12-27 15:38:30 +00:00
|
|
|
'a' => array(
|
|
|
|
'href' => '/index/page:1/limit:3/sort:Client.name/direction:DESC',
|
|
|
|
'rel' => 'prev'
|
|
|
|
),
|
2009-07-21 02:59:30 +00:00
|
|
|
'<< Previous',
|
2010-02-07 18:26:50 +00:00
|
|
|
'/a',
|
|
|
|
'/span'
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-07-05 09:44:42 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->next('Next');
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'span' => array('class' => 'next'),
|
2010-12-27 15:38:30 +00:00
|
|
|
'a' => array(
|
|
|
|
'href' => '/index/page:3/limit:3/sort:Client.name/direction:DESC',
|
|
|
|
'rel' => 'next'
|
|
|
|
),
|
2009-07-21 02:59:30 +00:00
|
|
|
'Next',
|
2010-02-07 18:26:50 +00:00
|
|
|
'/a',
|
|
|
|
'/span'
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-07-05 09:44:42 +00:00
|
|
|
|
2010-12-19 17:43:29 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
|
|
|
'Client' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 2,
|
|
|
|
'current' => 1,
|
|
|
|
'count' => 13,
|
|
|
|
'prevPage' => true,
|
|
|
|
'nextPage' => false,
|
2010-12-19 17:43:29 +00:00
|
|
|
'pageCount' => 2,
|
|
|
|
'options' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 2,
|
|
|
|
'limit' => 10,
|
2010-12-19 18:09:52 +00:00
|
|
|
'order' => array(),
|
2010-12-19 17:43:29 +00:00
|
|
|
'conditions' => array()
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2010-12-19 17:43:29 +00:00
|
|
|
)
|
|
|
|
);
|
2008-10-10 20:20:44 +00:00
|
|
|
$result = $this->Paginator->prev('Prev');
|
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'span' => array('class' => 'prev'),
|
|
|
|
'a' => array('href' => '/index/page:1/limit:10', 'rel' => 'prev'),
|
2008-10-10 20:20:44 +00:00
|
|
|
'Prev',
|
|
|
|
'/a',
|
2010-02-07 18:26:50 +00:00
|
|
|
'/span'
|
2008-10-10 20:20:44 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-12-08 14:58:45 +00:00
|
|
|
|
2012-11-16 23:57:02 +00:00
|
|
|
$result = $this->Paginator->next('Next', array(), null, array('tag' => false));
|
|
|
|
$expected = array(
|
|
|
|
'span' => array('class' => 'next'),
|
|
|
|
'Next',
|
|
|
|
'/span'
|
|
|
|
);
|
|
|
|
$this->assertTags($result, $expected);
|
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
2009-12-08 14:58:45 +00:00
|
|
|
'Client' => array(
|
2010-02-07 18:26:50 +00:00
|
|
|
'page' => 2, 'current' => 1, 'count' => 13, 'prevPage' => true,
|
2009-12-08 14:58:45 +00:00
|
|
|
'nextPage' => false, 'pageCount' => 2,
|
|
|
|
'defaults' => array(),
|
|
|
|
'options' => array(
|
|
|
|
'page' => 2, 'limit' => 10, 'order' => array(), 'conditions' => array()
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2009-12-08 14:58:45 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
$this->Paginator->options(array('url' => array(12, 'page' => 3)));
|
2009-12-23 00:05:06 +00:00
|
|
|
$result = $this->Paginator->prev('Prev', array('url' => array('foo' => 'bar')));
|
2009-12-08 14:58:45 +00:00
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'span' => array('class' => 'prev'),
|
|
|
|
'a' => array('href' => '/index/12/page:1/limit:10/foo:bar', 'rel' => 'prev'),
|
2009-12-08 14:58:45 +00:00
|
|
|
'Prev',
|
|
|
|
'/a',
|
2010-02-07 18:26:50 +00:00
|
|
|
'/span'
|
2009-12-08 14:58:45 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-09-15 03:06:24 +00:00
|
|
|
/**
|
|
|
|
* test that __pagingLink methods use $options when $disabledOptions is an empty value.
|
|
|
|
* allowing you to use shortcut syntax
|
|
|
|
*
|
|
|
|
* @return void
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testPagingLinksOptionsReplaceEmptyDisabledOptions() {
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
2009-09-15 03:06:24 +00:00
|
|
|
'Client' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 1,
|
|
|
|
'current' => 3,
|
|
|
|
'count' => 13,
|
2010-12-19 17:43:29 +00:00
|
|
|
'prevPage' => false,
|
2011-05-16 22:49:00 +00:00
|
|
|
'nextPage' => true,
|
2010-12-19 17:43:29 +00:00
|
|
|
'pageCount' => 5,
|
2009-09-15 03:06:24 +00:00
|
|
|
'options' => array(
|
2010-12-19 18:09:52 +00:00
|
|
|
'page' => 1,
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2009-09-15 03:06:24 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
$result = $this->Paginator->prev('<< Previous', array('escape' => false));
|
|
|
|
$expected = array(
|
|
|
|
'span' => array('class' => 'prev'),
|
|
|
|
'preg:/<< Previous/',
|
|
|
|
'/span'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-09-15 03:06:24 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->next('Next >>', array('escape' => false));
|
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'span' => array('class' => 'next'),
|
|
|
|
'a' => array('href' => '/index/page:2', 'rel' => 'next'),
|
2009-09-15 03:06:24 +00:00
|
|
|
'preg:/Next >>/',
|
2010-02-07 18:26:50 +00:00
|
|
|
'/a',
|
|
|
|
'/span'
|
2009-09-15 03:06:24 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-09-15 03:06:24 +00:00
|
|
|
}
|
|
|
|
|
2009-01-14 22:08:11 +00:00
|
|
|
/**
|
|
|
|
* testPagingLinksNotDefaultModel
|
2009-03-12 17:11:08 +00:00
|
|
|
*
|
2009-01-14 22:08:11 +00:00
|
|
|
* Test the creation of paging links when the non default model is used.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testPagingLinksNotDefaultModel() {
|
2009-01-14 22:08:11 +00:00
|
|
|
// Multiple Model Paginate
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
2009-01-14 22:08:11 +00:00
|
|
|
'Client' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 1,
|
2010-12-19 17:43:29 +00:00
|
|
|
'current' => 3,
|
2011-05-16 22:49:00 +00:00
|
|
|
'count' => 13,
|
|
|
|
'prevPage' => false,
|
|
|
|
'nextPage' => true,
|
2010-12-19 17:43:29 +00:00
|
|
|
'pageCount' => 5,
|
|
|
|
'options' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 1,
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2009-01-14 22:08:11 +00:00
|
|
|
),
|
|
|
|
'Server' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 1,
|
|
|
|
'current' => 1,
|
|
|
|
'count' => 5,
|
|
|
|
'prevPage' => false,
|
|
|
|
'nextPage' => false,
|
2010-12-19 17:43:29 +00:00
|
|
|
'pageCount' => 5,
|
|
|
|
'options' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 1,
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2009-01-14 22:08:11 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
$result = $this->Paginator->next('Next', array('model' => 'Client'));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'span' => array('class' => 'next'),
|
|
|
|
'a' => array('href' => '/index/page:2', 'rel' => 'next'),
|
2010-02-07 18:26:50 +00:00
|
|
|
'Next',
|
|
|
|
'/a',
|
|
|
|
'/span'
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-03-12 17:11:08 +00:00
|
|
|
|
2009-01-14 22:08:11 +00:00
|
|
|
$result = $this->Paginator->next('Next', array('model' => 'Server'), 'No Next', array('model' => 'Server'));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2009-08-27 02:55:24 +00:00
|
|
|
'span' => array('class' => 'next'), 'No Next', '/span'
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-01-14 22:08:11 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testGenericLinks method
|
2008-06-27 06:25:08 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testGenericLinks() {
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->link('Sort by title on page 5', array('sort' => 'title', 'page' => 5, 'direction' => 'desc'));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/index/page:5/sort:title/direction:desc'),
|
|
|
|
'Sort by title on page 5',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['page'] = 2;
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->link('Sort by title', array('sort' => 'title', 'direction' => 'desc'));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/index/page:2/sort:title/direction:desc'),
|
|
|
|
'Sort by title',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-07-05 09:44:42 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['page'] = 4;
|
2008-07-05 09:44:42 +00:00
|
|
|
$result = $this->Paginator->link('Sort by title on page 4', array('sort' => 'Article.title', 'direction' => 'desc'));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/index/page:4/sort:Article.title/direction:desc'),
|
|
|
|
'Sort by title on page 4',
|
|
|
|
'/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-09-04 19:10:15 +00:00
|
|
|
/**
|
|
|
|
* Tests generation of generic links with preset options
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testGenericLinksWithPresetOptions() {
|
2008-09-04 19:10:15 +00:00
|
|
|
$result = $this->Paginator->link('Foo!', array('page' => 1));
|
|
|
|
$this->assertTags($result, array('a' => array('href' => '/index/page:1'), 'Foo!', '/a'));
|
|
|
|
|
|
|
|
$this->Paginator->options(array('sort' => 'title', 'direction' => 'desc'));
|
|
|
|
$result = $this->Paginator->link('Foo!', array('page' => 1));
|
|
|
|
$this->assertTags($result, array(
|
|
|
|
'a' => array(
|
|
|
|
'href' => '/index/page:1',
|
|
|
|
'sort' => 'title',
|
|
|
|
'direction' => 'desc'
|
|
|
|
),
|
|
|
|
'Foo!',
|
|
|
|
'/a'
|
|
|
|
));
|
|
|
|
|
|
|
|
$this->Paginator->options(array('sort' => null, 'direction' => null));
|
|
|
|
$result = $this->Paginator->link('Foo!', array('page' => 1));
|
|
|
|
$this->assertTags($result, array('a' => array('href' => '/index/page:1'), 'Foo!', '/a'));
|
|
|
|
|
|
|
|
$this->Paginator->options(array('url' => array(
|
|
|
|
'sort' => 'title',
|
|
|
|
'direction' => 'desc'
|
|
|
|
)));
|
|
|
|
$result = $this->Paginator->link('Foo!', array('page' => 1));
|
|
|
|
$this->assertTags($result, array(
|
|
|
|
'a' => array('href' => '/index/page:1/sort:title/direction:desc'),
|
|
|
|
'Foo!',
|
|
|
|
'/a'
|
|
|
|
));
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testNumbers method
|
2008-06-27 06:25:08 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testNumbers() {
|
2010-12-19 17:43:29 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
|
|
|
'Client' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 8,
|
|
|
|
'current' => 3,
|
|
|
|
'count' => 30,
|
|
|
|
'prevPage' => false,
|
|
|
|
'nextPage' => 2,
|
2010-12-19 17:43:29 +00:00
|
|
|
'pageCount' => 15,
|
|
|
|
'options' => array(
|
2010-12-19 18:09:52 +00:00
|
|
|
'page' => 1,
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2010-12-19 17:43:29 +00:00
|
|
|
)
|
2008-05-30 11:40:08 +00:00
|
|
|
);
|
|
|
|
$result = $this->Paginator->numbers();
|
2009-07-28 12:40:31 +00:00
|
|
|
$expected = array(
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4')), '4', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:5')), '5', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:6')), '6', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:7')), '7', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'current')), '8', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:9')), '9', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:10')), '10', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:11')), '11', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:12')), '12', '/a', '/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2008-07-31 16:58:57 +00:00
|
|
|
$result = $this->Paginator->numbers(array('tag' => 'li'));
|
2009-07-28 12:40:31 +00:00
|
|
|
$expected = array(
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:4')), '4', '/a', '/li',
|
|
|
|
' | ',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:5')), '5', '/a', '/li',
|
|
|
|
' | ',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:6')), '6', '/a', '/li',
|
|
|
|
' | ',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:7')), '7', '/a', '/li',
|
|
|
|
' | ',
|
|
|
|
array('li' => array('class' => 'current')), '8', '/li',
|
|
|
|
' | ',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:9')), '9', '/a', '/li',
|
|
|
|
' | ',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:10')), '10', '/a', '/li',
|
|
|
|
' | ',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:11')), '11', '/a', '/li',
|
|
|
|
' | ',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:12')), '12', '/a', '/li',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-07-31 16:58:57 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->numbers(array('tag' => 'li', 'separator' => false));
|
2009-07-28 12:40:31 +00:00
|
|
|
$expected = array(
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:4')), '4', '/a', '/li',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:5')), '5', '/a', '/li',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:6')), '6', '/a', '/li',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:7')), '7', '/a', '/li',
|
|
|
|
array('li' => array('class' => 'current')), '8', '/li',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:9')), '9', '/a', '/li',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:10')), '10', '/a', '/li',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:11')), '11', '/a', '/li',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:12')), '12', '/a', '/li',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->numbers(true);
|
2009-07-28 12:40:31 +00:00
|
|
|
$expected = array(
|
2010-12-27 15:48:38 +00:00
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:1', 'rel' => 'first')), 'first', '/a', '/span',
|
2009-07-28 12:40:31 +00:00
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4')), '4', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:5')), '5', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:6')), '6', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:7')), '7', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'current')), '8', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:9')), '9', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:10')), '10', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:11')), '11', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:12')), '12', '/a', '/span',
|
|
|
|
' | ',
|
2010-12-27 15:48:38 +00:00
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:15', 'rel' => 'last')), 'last', '/a', '/span',
|
2009-07-28 12:40:31 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-10-31 20:36:46 +00:00
|
|
|
|
2010-12-19 17:43:29 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
|
|
|
'Client' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 1,
|
|
|
|
'current' => 3,
|
|
|
|
'count' => 30,
|
|
|
|
'prevPage' => false,
|
|
|
|
'nextPage' => 2,
|
2010-12-19 17:43:29 +00:00
|
|
|
'pageCount' => 15,
|
|
|
|
'options' => array(
|
2010-12-19 18:09:52 +00:00
|
|
|
'page' => 1,
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2010-12-19 17:43:29 +00:00
|
|
|
)
|
2008-05-30 11:40:08 +00:00
|
|
|
);
|
|
|
|
$result = $this->Paginator->numbers();
|
2009-07-28 12:40:31 +00:00
|
|
|
$expected = array(
|
|
|
|
array('span' => array('class' => 'current')), '1', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:2')), '2', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:3')), '3', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4')), '4', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:5')), '5', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:6')), '6', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:7')), '7', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:8')), '8', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:9')), '9', '/a', '/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-10-31 20:36:46 +00:00
|
|
|
|
2010-12-19 17:43:29 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
|
|
|
'Client' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 14,
|
|
|
|
'current' => 3,
|
|
|
|
'count' => 30,
|
|
|
|
'prevPage' => false,
|
|
|
|
'nextPage' => 2,
|
2010-12-19 17:43:29 +00:00
|
|
|
'pageCount' => 15,
|
|
|
|
'options' => array(
|
2010-12-19 18:09:52 +00:00
|
|
|
'page' => 1,
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2010-12-19 17:43:29 +00:00
|
|
|
)
|
2008-05-30 11:40:08 +00:00
|
|
|
);
|
|
|
|
$result = $this->Paginator->numbers();
|
2009-07-28 12:40:31 +00:00
|
|
|
$expected = array(
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:7')), '7', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:8')), '8', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:9')), '9', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:10')), '10', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:11')), '11', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:12')), '12', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:13')), '13', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'current')), '14', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:15')), '15', '/a', '/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-12-19 17:43:29 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
|
|
|
'Client' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 2,
|
|
|
|
'current' => 3,
|
|
|
|
'count' => 27,
|
|
|
|
'prevPage' => false,
|
|
|
|
'nextPage' => 2,
|
2010-12-19 17:43:29 +00:00
|
|
|
'pageCount' => 9,
|
|
|
|
'options' => array(
|
2010-12-19 18:09:52 +00:00
|
|
|
'page' => 1,
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2010-12-19 17:43:29 +00:00
|
|
|
)
|
2008-06-20 20:17:23 +00:00
|
|
|
);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2011-09-09 13:05:22 +00:00
|
|
|
$result = $this->Paginator->numbers(array('first' => 1, 'class' => 'page-link'));
|
2009-07-28 12:40:31 +00:00
|
|
|
$expected = array(
|
2011-09-09 13:05:22 +00:00
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:1')), '1', '/a', '/span',
|
2009-07-28 12:40:31 +00:00
|
|
|
' | ',
|
2011-09-09 13:05:22 +00:00
|
|
|
array('span' => array('class' => 'current page-link')), '2', '/span',
|
2009-07-28 12:40:31 +00:00
|
|
|
' | ',
|
2011-09-09 13:05:22 +00:00
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:3')), '3', '/a', '/span',
|
2009-07-28 12:40:31 +00:00
|
|
|
' | ',
|
2011-09-09 13:05:22 +00:00
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:4')), '4', '/a', '/span',
|
2009-07-28 12:40:31 +00:00
|
|
|
' | ',
|
2011-09-09 13:05:22 +00:00
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:5')), '5', '/a', '/span',
|
2009-07-28 12:40:31 +00:00
|
|
|
' | ',
|
2011-09-09 13:05:22 +00:00
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:6')), '6', '/a', '/span',
|
2009-07-28 12:40:31 +00:00
|
|
|
' | ',
|
2011-09-09 13:05:22 +00:00
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:7')), '7', '/a', '/span',
|
2009-07-28 12:40:31 +00:00
|
|
|
' | ',
|
2011-09-09 13:05:22 +00:00
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:8')), '8', '/a', '/span',
|
2009-07-28 12:40:31 +00:00
|
|
|
' | ',
|
2011-09-09 13:05:22 +00:00
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:9')), '9', '/a', '/span',
|
2009-07-28 12:40:31 +00:00
|
|
|
);
|
2012-01-28 17:24:28 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2012-03-16 02:50:05 +00:00
|
|
|
|
2012-01-28 17:24:28 +00:00
|
|
|
$result = $this->Paginator->numbers(array('first' => 1, 'currentClass' => 'active'));
|
|
|
|
$expected = array(
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:1')), '1', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'active')), '2', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:3')), '3', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4')), '4', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:5')), '5', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:6')), '6', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:7')), '7', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:8')), '8', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:9')), '9', '/a', '/span',
|
|
|
|
);
|
|
|
|
$this->assertTags($result, $expected);
|
2012-03-16 02:50:05 +00:00
|
|
|
|
2012-10-12 14:43:45 +00:00
|
|
|
$result = $this->Paginator->numbers(array('first' => 1, 'tag' => 'li', 'currentClass' => 'active', 'currentTag' => 'a'));
|
|
|
|
$expected = array(
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:1')), '1', '/a', '/li',
|
|
|
|
' | ',
|
|
|
|
array('li' => array('class' => 'active')), array('a' => array()), '2', '/a', '/li',
|
|
|
|
' | ',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:3')), '3', '/a', '/li',
|
|
|
|
' | ',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:4')), '4', '/a', '/li',
|
|
|
|
' | ',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:5')), '5', '/a', '/li',
|
|
|
|
' | ',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:6')), '6', '/a', '/li',
|
|
|
|
' | ',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:7')), '7', '/a', '/li',
|
|
|
|
' | ',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:8')), '8', '/a', '/li',
|
|
|
|
' | ',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:9')), '9', '/a', '/li',
|
|
|
|
);
|
|
|
|
$this->assertTags($result, $expected);
|
|
|
|
|
2012-01-28 17:24:28 +00:00
|
|
|
$result = $this->Paginator->numbers(array('first' => 1, 'class' => 'page-link', 'currentClass' => 'active'));
|
|
|
|
$expected = array(
|
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:1')), '1', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'active page-link')), '2', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:3')), '3', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:4')), '4', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:5')), '5', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:6')), '6', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:7')), '7', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:8')), '8', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:9')), '9', '/a', '/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2008-06-20 20:17:23 +00:00
|
|
|
$result = $this->Paginator->numbers(array('last' => 1));
|
2009-07-28 12:40:31 +00:00
|
|
|
$expected = array(
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:1')), '1', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'current')), '2', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:3')), '3', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4')), '4', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:5')), '5', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:6')), '6', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:7')), '7', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:8')), '8', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:9')), '9', '/a', '/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-12-19 17:43:29 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
|
|
|
'Client' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 15,
|
|
|
|
'current' => 3,
|
|
|
|
'count' => 30,
|
|
|
|
'prevPage' => false,
|
|
|
|
'nextPage' => 2,
|
2010-12-19 17:43:29 +00:00
|
|
|
'pageCount' => 15,
|
|
|
|
'options' => array(
|
2010-12-19 18:09:52 +00:00
|
|
|
'page' => 1,
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2010-12-19 17:43:29 +00:00
|
|
|
)
|
2008-05-30 11:40:08 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$result = $this->Paginator->numbers(array('first' => 1));
|
2009-07-28 12:40:31 +00:00
|
|
|
$expected = array(
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:1')), '1', '/a', '/span',
|
|
|
|
'...',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:7')), '7', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:8')), '8', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:9')), '9', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:10')), '10', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:11')), '11', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:12')), '12', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:13')), '13', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:14')), '14', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'current')), '15', '/span',
|
|
|
|
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-12-19 17:43:29 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
|
|
|
'Client' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 10,
|
|
|
|
'current' => 3,
|
|
|
|
'count' => 30,
|
|
|
|
'prevPage' => false,
|
|
|
|
'nextPage' => 2,
|
2010-12-19 17:43:29 +00:00
|
|
|
'pageCount' => 15,
|
|
|
|
'options' => array(
|
2010-12-19 18:09:52 +00:00
|
|
|
'page' => 1,
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2010-12-19 17:43:29 +00:00
|
|
|
)
|
2008-05-30 11:40:08 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$result = $this->Paginator->numbers(array('first' => 1, 'last' => 1));
|
2009-07-28 12:40:31 +00:00
|
|
|
$expected = array(
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:1')), '1', '/a', '/span',
|
|
|
|
'...',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:6')), '6', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:7')), '7', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:8')), '8', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:9')), '9', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'current')), '10', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:11')), '11', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:12')), '12', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:13')), '13', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:14')), '14', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:15')), '15', '/a', '/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-12-19 17:43:29 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
|
|
|
'Client' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 6,
|
|
|
|
'current' => 15,
|
|
|
|
'count' => 623,
|
|
|
|
'prevPage' => 1,
|
|
|
|
'nextPage' => 1,
|
2010-12-19 17:43:29 +00:00
|
|
|
'pageCount' => 42,
|
|
|
|
'options' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 6,
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2010-12-19 17:43:29 +00:00
|
|
|
)
|
2008-06-20 20:17:23 +00:00
|
|
|
);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2008-06-20 20:17:23 +00:00
|
|
|
$result = $this->Paginator->numbers(array('first' => 1, 'last' => 1));
|
2009-07-28 12:40:31 +00:00
|
|
|
$expected = array(
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:1')), '1', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:2')), '2', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:3')), '3', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4')), '4', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:5')), '5', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'current')), '6', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:7')), '7', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:8')), '8', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:9')), '9', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:10')), '10', '/a', '/span',
|
|
|
|
'...',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:42')), '42', '/a', '/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-12-19 17:43:29 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
|
|
|
'Client' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 37,
|
|
|
|
'current' => 15,
|
|
|
|
'count' => 623,
|
|
|
|
'prevPage' => 1,
|
|
|
|
'nextPage' => 1,
|
2010-12-19 17:43:29 +00:00
|
|
|
'pageCount' => 42,
|
|
|
|
'options' => array(
|
2010-12-19 18:09:52 +00:00
|
|
|
'page' => 37,
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2010-12-19 17:43:29 +00:00
|
|
|
)
|
2008-06-20 20:17:23 +00:00
|
|
|
);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2008-06-20 20:17:23 +00:00
|
|
|
$result = $this->Paginator->numbers(array('first' => 1, 'last' => 1));
|
2009-07-28 12:40:31 +00:00
|
|
|
$expected = array(
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:1')), '1', '/a', '/span',
|
|
|
|
'...',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:33')), '33', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:34')), '34', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:35')), '35', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:36')), '36', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'current')), '37', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:38')), '38', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:39')), '39', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:40')), '40', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:41')), '41', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:42')), '42', '/a', '/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
2008-06-20 20:17:23 +00:00
|
|
|
'Client' => array(
|
2008-06-27 06:25:08 +00:00
|
|
|
'page' => 1,
|
|
|
|
'current' => 10,
|
|
|
|
'count' => 30,
|
|
|
|
'prevPage' => false,
|
|
|
|
'nextPage' => 2,
|
2008-06-20 20:17:23 +00:00
|
|
|
'pageCount' => 3,
|
|
|
|
'options' => array(
|
2008-06-27 06:25:08 +00:00
|
|
|
'page' => 1,
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2008-06-20 20:17:23 +00:00
|
|
|
)
|
2008-05-30 11:40:08 +00:00
|
|
|
);
|
|
|
|
$options = array('modulus' => 10);
|
|
|
|
$result = $this->Paginator->numbers($options);
|
2009-07-28 12:40:31 +00:00
|
|
|
$expected = array(
|
|
|
|
array('span' => array('class' => 'current')), '1', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:2')), '2', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:3')), '3', '/a', '/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2012-10-14 13:14:10 +00:00
|
|
|
$result = $this->Paginator->numbers(array('modulus' => 3, 'currentTag' => 'span', 'tag' => 'li'));
|
|
|
|
$expected = array(
|
|
|
|
array('li' => array('class' => 'current')), array('span' => array()), '1', '/span', '/li',
|
|
|
|
' | ',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:2')), '2', '/a', '/li',
|
|
|
|
' | ',
|
|
|
|
array('li' => array()), array('a' => array('href' => '/index/page:3')), '3', '/a', '/li',
|
|
|
|
);
|
|
|
|
$this->assertTags($result, $expected);
|
|
|
|
|
2010-12-19 17:43:29 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
|
|
|
'Client' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 2,
|
|
|
|
'current' => 10,
|
|
|
|
'count' => 31,
|
|
|
|
'prevPage' => true,
|
|
|
|
'nextPage' => true,
|
2010-12-19 17:43:29 +00:00
|
|
|
'pageCount' => 4,
|
|
|
|
'options' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 1,
|
|
|
|
'order' => array('Client.name' => 'DESC'),
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2010-12-19 17:43:29 +00:00
|
|
|
)
|
2008-07-05 09:44:42 +00:00
|
|
|
);
|
2011-08-13 23:39:57 +00:00
|
|
|
$result = $this->Paginator->numbers(array('class' => 'page-link'));
|
2009-07-28 12:40:31 +00:00
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:1/sort:Client.name/direction:DESC')), '1', '/a', '/span',
|
2009-07-28 12:40:31 +00:00
|
|
|
' | ',
|
2011-08-13 23:39:57 +00:00
|
|
|
array('span' => array('class' => 'current page-link')), '2', '/span',
|
2009-07-28 12:40:31 +00:00
|
|
|
' | ',
|
2011-08-13 23:39:57 +00:00
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:3/sort:Client.name/direction:DESC')), '3', '/a', '/span',
|
2009-07-28 12:40:31 +00:00
|
|
|
' | ',
|
2011-08-13 23:39:57 +00:00
|
|
|
array('span' => array('class' => 'page-link')), array('a' => array('href' => '/index/page:4/sort:Client.name/direction:DESC')), '4', '/a', '/span',
|
2009-07-28 12:40:31 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-10-31 20:36:46 +00:00
|
|
|
|
2010-12-19 17:43:29 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
|
|
|
'Client' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 4895,
|
|
|
|
'current' => 10,
|
|
|
|
'count' => 48962,
|
|
|
|
'prevPage' => 1,
|
|
|
|
'nextPage' => 1,
|
2010-12-19 17:43:29 +00:00
|
|
|
'pageCount' => 4897,
|
|
|
|
'options' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 4894,
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2010-12-19 17:43:29 +00:00
|
|
|
)
|
2009-07-17 19:46:33 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$result = $this->Paginator->numbers(array('first' => 2, 'modulus' => 2, 'last' => 2));
|
|
|
|
$expected = array(
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:1')), '1', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:2')), '2', '/a', '/span',
|
|
|
|
'...',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4894')), '4894', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'current')), '4895', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4896')), '4896', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4897')), '4897', '/a', '/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-07-21 02:59:30 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Client']['page'] = 3;
|
2009-07-17 19:46:33 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->numbers(array('first' => 2, 'modulus' => 2, 'last' => 2));
|
|
|
|
$expected = array(
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:1')), '1', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:2')), '2', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array('class' => 'current')), '3', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4')), '4', '/a', '/span',
|
|
|
|
'...',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4896')), '4896', '/a', '/span',
|
|
|
|
' | ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4897')), '4897', '/a', '/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-07-21 02:59:30 +00:00
|
|
|
|
2009-07-17 19:46:33 +00:00
|
|
|
$result = $this->Paginator->numbers(array('first' => 2, 'modulus' => 2, 'last' => 2, 'separator' => ' - '));
|
|
|
|
$expected = array(
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:1')), '1', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:2')), '2', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array('class' => 'current')), '3', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4')), '4', '/a', '/span',
|
|
|
|
'...',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4896')), '4896', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4897')), '4897', '/a', '/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-10-31 20:36:46 +00:00
|
|
|
|
2009-07-28 12:40:31 +00:00
|
|
|
$result = $this->Paginator->numbers(array('first' => 5, 'modulus' => 5, 'last' => 5, 'separator' => ' - '));
|
|
|
|
$expected = array(
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:1')), '1', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:2')), '2', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array('class' => 'current')), '3', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4')), '4', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:5')), '5', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:6')), '6', '/a', '/span',
|
|
|
|
'...',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4893')), '4893', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4894')), '4894', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4895')), '4895', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4896')), '4896', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4897')), '4897', '/a', '/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-10-31 20:36:46 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Client']['page'] = 4893;
|
2009-07-28 12:40:31 +00:00
|
|
|
$result = $this->Paginator->numbers(array('first' => 5, 'modulus' => 4, 'last' => 5, 'separator' => ' - '));
|
|
|
|
$expected = array(
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:1')), '1', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:2')), '2', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:3')), '3', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4')), '4', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:5')), '5', '/a', '/span',
|
|
|
|
'...',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4891')), '4891', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4892')), '4892', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array('class' => 'current')), '4893', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4894')), '4894', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4895')), '4895', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4896')), '4896', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4897')), '4897', '/a', '/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-10-31 20:36:46 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Client']['page'] = 58;
|
2009-07-28 12:40:31 +00:00
|
|
|
$result = $this->Paginator->numbers(array('first' => 5, 'modulus' => 4, 'last' => 5, 'separator' => ' - '));
|
|
|
|
$expected = array(
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:1')), '1', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:2')), '2', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:3')), '3', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4')), '4', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:5')), '5', '/a', '/span',
|
|
|
|
'...',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:56')), '56', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:57')), '57', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array('class' => 'current')), '58', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:59')), '59', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:60')), '60', '/a', '/span',
|
|
|
|
'...',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4893')), '4893', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4894')), '4894', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4895')), '4895', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4896')), '4896', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4897')), '4897', '/a', '/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-10-31 20:36:46 +00:00
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Client']['page'] = 5;
|
2009-07-28 12:40:31 +00:00
|
|
|
$result = $this->Paginator->numbers(array('first' => 5, 'modulus' => 4, 'last' => 5, 'separator' => ' - '));
|
|
|
|
$expected = array(
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:1')), '1', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:2')), '2', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:3')), '3', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4')), '4', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array('class' => 'current')), '5', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:6')), '6', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:7')), '7', '/a', '/span',
|
|
|
|
'...',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4893')), '4893', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4894')), '4894', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4895')), '4895', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4896')), '4896', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4897')), '4897', '/a', '/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2010-11-08 01:08:01 +00:00
|
|
|
|
2010-11-13 03:50:15 +00:00
|
|
|
$this->Paginator->request->params['paging']['Client']['page'] = 3;
|
2010-11-08 01:08:01 +00:00
|
|
|
$result = $this->Paginator->numbers(array('first' => 2, 'modulus' => 2, 'last' => 2, 'separator' => ' - ', 'ellipsis' => ' ~~~ '));
|
|
|
|
$expected = array(
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:1')), '1', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:2')), '2', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array('class' => 'current')), '3', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4')), '4', '/a', '/span',
|
|
|
|
' ~~~ ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4896')), '4896', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4897')), '4897', '/a', '/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2010-11-08 01:08:01 +00:00
|
|
|
|
2010-11-13 03:50:15 +00:00
|
|
|
$this->Paginator->request->params['paging']['Client']['page'] = 3;
|
2010-11-08 01:08:01 +00:00
|
|
|
$result = $this->Paginator->numbers(array('first' => 2, 'modulus' => 2, 'last' => 2, 'separator' => ' - ', 'ellipsis' => '<span class="ellipsis">...</span>'));
|
|
|
|
$expected = array(
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:1')), '1', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:2')), '2', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array('class' => 'current')), '3', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4')), '4', '/a', '/span',
|
|
|
|
array('span' => array('class' => 'ellipsis')), '...', '/span',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4896')), '4896', '/a', '/span',
|
|
|
|
' - ',
|
|
|
|
array('span' => array()), array('a' => array('href' => '/index/page:4897')), '4897', '/a', '/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
2010-12-20 18:39:22 +00:00
|
|
|
* test first() and last() with tag options
|
2008-06-27 06:25:08 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testFirstAndLastTag() {
|
2011-08-13 23:39:57 +00:00
|
|
|
$result = $this->Paginator->first('<<', array('tag' => 'li', 'class' => 'first'));
|
2010-12-20 18:39:22 +00:00
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'li' => array('class' => 'first'),
|
2010-12-27 15:48:38 +00:00
|
|
|
'a' => array('href' => '/index/page:1', 'rel' => 'first'),
|
2010-12-20 18:39:22 +00:00
|
|
|
'<<',
|
|
|
|
'/a',
|
|
|
|
'/li'
|
2008-05-30 11:40:08 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2010-12-20 18:39:22 +00:00
|
|
|
|
2011-08-13 23:39:57 +00:00
|
|
|
$result = $this->Paginator->last(2, array('tag' => 'li', 'class' => 'last'));
|
2010-12-20 18:39:22 +00:00
|
|
|
$expected = array(
|
|
|
|
'...',
|
2011-08-13 23:39:57 +00:00
|
|
|
'li' => array('class' => 'last'),
|
2010-12-20 18:39:22 +00:00
|
|
|
array('a' => array('href' => '/index/page:6')), '6', '/a',
|
|
|
|
'/li',
|
|
|
|
' | ',
|
2011-08-13 23:39:57 +00:00
|
|
|
array('li' => array('class' => 'last')),
|
2010-12-20 18:39:22 +00:00
|
|
|
array('a' => array('href' => '/index/page:7')), '7', '/a',
|
|
|
|
'/li',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2010-12-20 18:39:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test that on the last page you don't get a link ot the last page.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testLastNoOutput() {
|
2010-12-20 18:39:22 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['page'] = 15;
|
|
|
|
$this->Paginator->request->params['paging']['Article']['pageCount'] = 15;
|
|
|
|
|
|
|
|
$result = $this->Paginator->last();
|
|
|
|
$expected = '';
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2010-12-20 18:39:22 +00:00
|
|
|
}
|
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
2010-12-21 01:27:27 +00:00
|
|
|
* test first() on the first page.
|
2008-06-27 06:25:08 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testFirstEmpty() {
|
2010-12-21 01:27:27 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['page'] = 1;
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->first();
|
|
|
|
$expected = '';
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2010-12-21 01:27:27 +00:00
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-12-21 01:27:27 +00:00
|
|
|
/**
|
|
|
|
* test first() and options()
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testFirstFullBaseUrl() {
|
2010-12-21 01:27:27 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('Article.title' => 'DESC');
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-12-21 01:27:27 +00:00
|
|
|
$this->Paginator->options(array('url' => array('full_base' => true)));
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-12-21 01:27:27 +00:00
|
|
|
$result = $this->Paginator->first();
|
|
|
|
$expected = array(
|
|
|
|
'<span',
|
2010-12-27 15:48:38 +00:00
|
|
|
array('a' => array(
|
|
|
|
'href' => FULL_BASE_URL . '/index/page:1/sort:Article.title/direction:DESC', 'rel' => 'first'
|
2011-05-16 22:49:00 +00:00
|
|
|
)),
|
|
|
|
'<< first',
|
2010-12-21 01:27:27 +00:00
|
|
|
'/a',
|
|
|
|
'/span',
|
2008-05-30 11:40:08 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2010-12-21 01:27:27 +00:00
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-12-21 01:27:27 +00:00
|
|
|
/**
|
|
|
|
* test first() on the fence-post
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testFirstBoundaries() {
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->first();
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'<span',
|
2010-12-27 15:48:38 +00:00
|
|
|
'a' => array('href' => '/index/page:1', 'rel' => 'first'),
|
2009-07-21 02:59:30 +00:00
|
|
|
'<< first',
|
|
|
|
'/a',
|
|
|
|
'/span'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-12-21 01:27:27 +00:00
|
|
|
$result = $this->Paginator->first(2);
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2010-12-21 01:27:27 +00:00
|
|
|
'<span',
|
|
|
|
array('a' => array('href' => '/index/page:1')), '1', '/a',
|
|
|
|
'/span',
|
|
|
|
' | ',
|
|
|
|
'<span',
|
|
|
|
array('a' => array('href' => '/index/page:2')), '2', '/a',
|
|
|
|
'/span'
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2011-05-16 22:49:00 +00:00
|
|
|
|
2010-12-28 04:40:10 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['page'] = 2;
|
|
|
|
$result = $this->Paginator->first(3);
|
|
|
|
$this->assertEquals('', $result, 'When inside the first links range, no links should be made');
|
2010-12-21 01:27:27 +00:00
|
|
|
}
|
2008-07-31 16:58:57 +00:00
|
|
|
|
2010-12-21 01:27:27 +00:00
|
|
|
/**
|
|
|
|
* test Last method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testLast() {
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->last();
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'<span',
|
2010-12-27 15:48:38 +00:00
|
|
|
'a' => array('href' => '/index/page:7', 'rel' => 'last'),
|
2009-07-21 02:59:30 +00:00
|
|
|
'last >>',
|
|
|
|
'/a',
|
|
|
|
'/span'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->last(1);
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'...',
|
|
|
|
'<span',
|
2010-12-21 01:27:27 +00:00
|
|
|
'a' => array('href' => '/index/page:7'),
|
|
|
|
'7',
|
2009-07-21 02:59:30 +00:00
|
|
|
'/a',
|
|
|
|
'/span'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-12-21 01:27:27 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['page'] = 6;
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->last(2);
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'...',
|
|
|
|
'<span',
|
2010-12-21 01:27:27 +00:00
|
|
|
array('a' => array('href' => '/index/page:6')), '6', '/a',
|
2009-07-21 02:59:30 +00:00
|
|
|
'/span',
|
|
|
|
' | ',
|
|
|
|
'<span',
|
2010-12-21 01:27:27 +00:00
|
|
|
array('a' => array('href' => '/index/page:7')), '7', '/a',
|
2009-07-21 02:59:30 +00:00
|
|
|
'/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2010-12-28 04:40:10 +00:00
|
|
|
$result = $this->Paginator->last(3);
|
|
|
|
$this->assertEquals('', $result, 'When inside the last links range, no links should be made');
|
2010-12-21 01:27:27 +00:00
|
|
|
}
|
2011-05-16 22:49:00 +00:00
|
|
|
|
2010-12-21 01:27:27 +00:00
|
|
|
/**
|
|
|
|
* undocumented function
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testLastOptions() {
|
2010-12-19 17:43:29 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
|
|
|
'Client' => array(
|
2011-05-16 22:49:00 +00:00
|
|
|
'page' => 4,
|
|
|
|
'current' => 3,
|
|
|
|
'count' => 30,
|
2010-12-19 18:09:52 +00:00
|
|
|
'prevPage' => false,
|
2011-05-16 22:49:00 +00:00
|
|
|
'nextPage' => 2,
|
2010-12-19 17:43:29 +00:00
|
|
|
'pageCount' => 15,
|
|
|
|
'options' => array(
|
2010-12-19 18:09:52 +00:00
|
|
|
'page' => 1,
|
2011-05-16 22:49:00 +00:00
|
|
|
'order' => array('Client.name' => 'DESC'),
|
2010-12-19 21:47:22 +00:00
|
|
|
),
|
|
|
|
'paramType' => 'named'
|
2010-12-19 17:43:29 +00:00
|
|
|
)
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2008-07-05 09:44:42 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->last();
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'<span',
|
2010-12-27 15:48:38 +00:00
|
|
|
array('a' => array(
|
|
|
|
'href' => '/index/page:15/sort:Client.name/direction:DESC',
|
|
|
|
'rel' => 'last'
|
2011-05-16 22:49:00 +00:00
|
|
|
)),
|
2010-12-27 15:48:38 +00:00
|
|
|
'last >>', '/a',
|
2009-07-21 02:59:30 +00:00
|
|
|
'/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2011-05-16 22:49:00 +00:00
|
|
|
|
2008-07-05 09:44:42 +00:00
|
|
|
$result = $this->Paginator->last(1);
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'...',
|
|
|
|
'<span',
|
|
|
|
array('a' => array('href' => '/index/page:15/sort:Client.name/direction:DESC')), '15', '/a',
|
|
|
|
'/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-07-05 09:44:42 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->last(2);
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'...',
|
|
|
|
'<span',
|
|
|
|
array('a' => array('href' => '/index/page:14/sort:Client.name/direction:DESC')), '14', '/a',
|
2010-11-08 01:08:01 +00:00
|
|
|
'/span',
|
|
|
|
' | ',
|
|
|
|
'<span',
|
|
|
|
array('a' => array('href' => '/index/page:15/sort:Client.name/direction:DESC')), '15', '/a',
|
|
|
|
'/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2010-11-08 01:08:01 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->last(2, array('ellipsis' => '<span class="ellipsis">...</span>'));
|
|
|
|
$expected = array(
|
|
|
|
array('span' => array('class' => 'ellipsis')), '...', '/span',
|
|
|
|
'<span',
|
|
|
|
array('a' => array('href' => '/index/page:14/sort:Client.name/direction:DESC')), '14', '/a',
|
2009-07-21 02:59:30 +00:00
|
|
|
'/span',
|
|
|
|
' | ',
|
|
|
|
'<span',
|
|
|
|
array('a' => array('href' => '/index/page:15/sort:Client.name/direction:DESC')), '15', '/a',
|
|
|
|
'/span',
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testCounter method
|
2008-06-27 06:25:08 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testCounter() {
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging'] = array(
|
2008-06-20 20:17:23 +00:00
|
|
|
'Client' => array(
|
2008-06-27 06:25:08 +00:00
|
|
|
'page' => 1,
|
|
|
|
'current' => 3,
|
|
|
|
'count' => 13,
|
|
|
|
'prevPage' => false,
|
|
|
|
'nextPage' => true,
|
2008-06-20 20:17:23 +00:00
|
|
|
'pageCount' => 5,
|
2010-12-19 18:15:04 +00:00
|
|
|
'limit' => 3,
|
2008-06-20 20:17:23 +00:00
|
|
|
'options' => array(
|
2008-06-27 06:25:08 +00:00
|
|
|
'page' => 1,
|
|
|
|
'order' => array('Client.name' => 'DESC'),
|
2008-06-20 20:17:23 +00:00
|
|
|
),
|
2010-12-19 21:47:22 +00:00
|
|
|
'paramType' => 'named'
|
2008-06-20 20:17:23 +00:00
|
|
|
)
|
|
|
|
);
|
2009-02-07 13:41:15 +00:00
|
|
|
$input = 'Page %page% of %pages%, showing %current% records out of %count% total, ';
|
|
|
|
$input .= 'starting on record %start%, ending on %end%';
|
|
|
|
$result = $this->Paginator->counter($input);
|
|
|
|
$expected = 'Page 1 of 5, showing 3 records out of 13 total, starting on record 1, ';
|
|
|
|
$expected .= 'ending on 3';
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2009-02-07 13:41:15 +00:00
|
|
|
|
|
|
|
$input = 'Page {:page} of {:pages}, showing {:current} records out of {:count} total, ';
|
|
|
|
$input .= 'starting on record {:start}, ending on {:end}';
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->counter($input);
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2008-06-27 06:25:08 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$input = 'Page %page% of %pages%';
|
|
|
|
$result = $this->Paginator->counter($input);
|
|
|
|
$expected = 'Page 1 of 5';
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2008-06-27 06:25:08 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->counter(array('format' => $input));
|
|
|
|
$expected = 'Page 1 of 5';
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2008-06-27 06:25:08 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->counter(array('format' => 'pages'));
|
|
|
|
$expected = '1 of 5';
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2008-06-27 06:25:08 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->counter(array('format' => 'range'));
|
|
|
|
$expected = '1 - 3 of 13';
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2011-06-19 21:05:28 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->counter('Showing %page% of %pages% %model%');
|
|
|
|
$this->assertEquals('Showing 1 of 5 clients', $result);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-20 20:17:23 +00:00
|
|
|
/**
|
2008-06-05 15:20:45 +00:00
|
|
|
* testHasPage method
|
2008-06-27 06:25:08 +00:00
|
|
|
*
|
2008-06-05 15:20:45 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testHasPage() {
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->hasPage('Article', 15);
|
|
|
|
$this->assertFalse($result);
|
2008-06-27 06:25:08 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->hasPage('UndefinedModel', 2);
|
|
|
|
$this->assertFalse($result);
|
2008-06-27 06:25:08 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->hasPage('Article', 2);
|
|
|
|
$this->assertTrue($result);
|
2008-06-27 06:25:08 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
$result = $this->Paginator->hasPage(2);
|
|
|
|
$this->assertTrue($result);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-03-11 19:24:06 +00:00
|
|
|
/**
|
|
|
|
* testWithPlugin method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testWithPlugin() {
|
2009-03-11 19:24:06 +00:00
|
|
|
Router::reload();
|
|
|
|
Router::setRequestInfo(array(
|
|
|
|
array(
|
|
|
|
'pass' => array(), 'named' => array(), 'prefix' => null, 'form' => array(),
|
2009-03-12 17:11:08 +00:00
|
|
|
'controller' => 'magazines', 'plugin' => 'my_plugin', 'action' => 'index',
|
2009-03-11 19:24:06 +00:00
|
|
|
'url' => array('ext' => 'html', 'url' => 'my_plugin/magazines')),
|
|
|
|
array('base' => '', 'here' => '/my_plugin/magazines', 'webroot' => '/')
|
|
|
|
));
|
|
|
|
|
|
|
|
$result = $this->Paginator->link('Page 3', array('page' => 3));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/my_plugin/magazines/index/page:3'), 'Page 3', '/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-03-11 19:24:06 +00:00
|
|
|
|
|
|
|
$this->Paginator->options(array('url' => array('action' => 'another_index')));
|
|
|
|
$result = $this->Paginator->link('Page 3', array('page' => 3));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/my_plugin/magazines/another_index/page:3'), 'Page 3', '/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-03-11 19:24:06 +00:00
|
|
|
|
|
|
|
$this->Paginator->options(array('url' => array('controller' => 'issues')));
|
|
|
|
$result = $this->Paginator->link('Page 3', array('page' => 3));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/my_plugin/issues/index/page:3'), 'Page 3', '/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-03-11 19:24:06 +00:00
|
|
|
|
|
|
|
$this->Paginator->options(array('url' => array('plugin' => null)));
|
|
|
|
$result = $this->Paginator->link('Page 3', array('page' => 3));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2012-02-16 18:28:21 +00:00
|
|
|
'a' => array('href' => '/magazines/index/page:3'), 'Page 3', '/a'
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2012-02-16 18:28:21 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-03-11 19:24:06 +00:00
|
|
|
|
|
|
|
$this->Paginator->options(array('url' => array('plugin' => null, 'controller' => 'issues')));
|
|
|
|
$result = $this->Paginator->link('Page 3', array('page' => 3));
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
|
|
|
'a' => array('href' => '/issues/index/page:3'), 'Page 3', '/a'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-03-11 19:24:06 +00:00
|
|
|
}
|
2009-07-02 23:48:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* testNextLinkUsingDotNotation method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testNextLinkUsingDotNotation() {
|
2009-07-02 23:48:10 +00:00
|
|
|
Router::reload();
|
|
|
|
Router::parse('/');
|
|
|
|
Router::setRequestInfo(array(
|
2010-12-19 18:09:52 +00:00
|
|
|
array('plugin' => null, 'controller' => 'accounts', 'action' => 'index', 'pass' => array(), 'url' => array('url' => 'accounts/')),
|
2010-12-18 20:48:14 +00:00
|
|
|
array('base' => '/officespace', 'here' => '/officespace/accounts/', 'webroot' => '/officespace/', 'passedArgs' => array())
|
2009-07-02 23:48:10 +00:00
|
|
|
));
|
|
|
|
|
2010-05-14 04:32:56 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['options']['order'] = array('Article.title' => 'asc');
|
|
|
|
$this->Paginator->request->params['paging']['Article']['page'] = 1;
|
2009-07-02 23:48:10 +00:00
|
|
|
|
2011-12-01 07:21:31 +00:00
|
|
|
$test = array('url' => array(
|
|
|
|
'page' => '1',
|
|
|
|
'sort' => 'Article.title',
|
|
|
|
'direction' => 'asc',
|
2009-07-02 23:48:10 +00:00
|
|
|
));
|
|
|
|
$this->Paginator->options($test);
|
|
|
|
|
|
|
|
$result = $this->Paginator->next('Next');
|
2009-07-21 02:59:30 +00:00
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'span' => array('class' => 'next'),
|
2010-12-27 15:38:30 +00:00
|
|
|
'a' => array(
|
|
|
|
'href' => '/officespace/accounts/index/page:2/sort:Article.title/direction:asc',
|
|
|
|
'rel' => 'next'
|
|
|
|
),
|
2009-07-21 02:59:30 +00:00
|
|
|
'Next',
|
2010-02-07 18:26:50 +00:00
|
|
|
'/a',
|
|
|
|
'/span',
|
2009-07-21 02:59:30 +00:00
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2009-07-02 23:48:10 +00:00
|
|
|
}
|
2009-08-09 21:53:18 +00:00
|
|
|
|
2010-04-24 01:10:23 +00:00
|
|
|
/**
|
|
|
|
* Ensure that the internal link class object is called when the update key is present
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testAjaxLinkGenerationNumbers() {
|
2010-04-24 01:10:23 +00:00
|
|
|
$this->Paginator->Js->expectCallCount('link', 2);
|
2013-01-23 12:45:50 +00:00
|
|
|
$this->Paginator->numbers(array(
|
2011-12-01 07:21:31 +00:00
|
|
|
'modulus' => '2',
|
|
|
|
'url' => array('controller' => 'projects', 'action' => 'sort'),
|
2010-04-24 01:10:23 +00:00
|
|
|
'update' => 'list'
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2010-04-24 01:14:23 +00:00
|
|
|
/**
|
|
|
|
* test that paginatorHelper::link() uses JsHelper to make links when 'update' key is present
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testAjaxLinkGenerationLink() {
|
2010-05-19 04:14:37 +00:00
|
|
|
$this->Paginator->Js->expects($this->once())
|
|
|
|
->method('link')
|
|
|
|
->will($this->returnValue('I am a link'));
|
|
|
|
|
2010-04-24 01:14:23 +00:00
|
|
|
$result = $this->Paginator->link('test', array('controller' => 'posts'), array('update' => '#content'));
|
2012-03-23 06:37:12 +00:00
|
|
|
$this->assertEquals('I am a link', $result);
|
2010-04-24 01:14:23 +00:00
|
|
|
}
|
|
|
|
|
2009-08-09 21:53:18 +00:00
|
|
|
/**
|
|
|
|
* test that mock classes injected into paginatorHelper are called when using link()
|
|
|
|
*
|
2011-11-04 01:16:29 +00:00
|
|
|
* @expectedException CakeException
|
2009-08-09 21:53:18 +00:00
|
|
|
* @return void
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testMockAjaxProviderClassInjection() {
|
2010-07-03 16:16:40 +00:00
|
|
|
$mock = $this->getMock('PaginatorHelper', array(), array($this->View), 'PaginatorMockJsHelper');
|
|
|
|
$Paginator = new PaginatorHelper($this->View, array('ajax' => 'PaginatorMockJs'));
|
2010-05-14 04:32:56 +00:00
|
|
|
$Paginator->request->params['paging'] = array(
|
2009-08-09 21:53:18 +00:00
|
|
|
'Article' => array(
|
|
|
|
'current' => 9,
|
|
|
|
'count' => 62,
|
|
|
|
'prevPage' => false,
|
|
|
|
'nextPage' => true,
|
|
|
|
'pageCount' => 7,
|
|
|
|
'defaults' => array(),
|
2010-12-19 21:47:22 +00:00
|
|
|
'options' => array(),
|
|
|
|
'paramType' => 'named'
|
2009-08-09 21:53:18 +00:00
|
|
|
)
|
|
|
|
);
|
2010-05-19 04:14:37 +00:00
|
|
|
$Paginator->PaginatorMockJs = $mock;
|
|
|
|
$Paginator->PaginatorMockJs->expects($this->once())->method('link');
|
2013-01-23 12:45:50 +00:00
|
|
|
$Paginator->link('Page 2', array('page' => 2), array('update' => '#content'));
|
2009-08-09 23:51:11 +00:00
|
|
|
|
2013-01-23 12:45:50 +00:00
|
|
|
new PaginatorHelper($this->View, array('ajax' => 'Form'));
|
2009-08-09 21:53:18 +00:00
|
|
|
}
|
2010-12-19 21:47:22 +00:00
|
|
|
|
|
|
|
/**
|
2013-04-29 09:05:17 +00:00
|
|
|
* test that query string URLs can be generated.
|
2010-12-19 21:47:22 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testQuerystringUrlGeneration() {
|
2010-12-19 21:47:22 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['paramType'] = 'querystring';
|
|
|
|
$result = $this->Paginator->url(array('page' => '4'));
|
2010-12-20 04:11:02 +00:00
|
|
|
$expected = '/?page=4';
|
2010-12-19 21:47:22 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2010-12-20 18:39:22 +00:00
|
|
|
|
|
|
|
$result = $this->Paginator->url(array('page' => '4', 'limit' => 10, 'something' => 'else'));
|
|
|
|
$expected = '/index/something:else?page=4&limit=10';
|
|
|
|
$this->assertEquals($expected, $result);
|
2010-12-19 21:47:22 +00:00
|
|
|
}
|
|
|
|
|
2010-12-20 18:59:09 +00:00
|
|
|
/**
|
2013-04-29 09:05:17 +00:00
|
|
|
* test query string paging link.
|
2010-12-20 18:59:09 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testQuerystringNextAndPrev() {
|
2010-12-20 18:59:09 +00:00
|
|
|
$this->Paginator->request->params['paging']['Article']['paramType'] = 'querystring';
|
|
|
|
$this->Paginator->request->params['paging']['Article']['page'] = 2;
|
|
|
|
$this->Paginator->request->params['paging']['Article']['nextPage'] = true;
|
|
|
|
$this->Paginator->request->params['paging']['Article']['prevPage'] = true;
|
2011-05-16 22:49:00 +00:00
|
|
|
|
2010-12-20 18:59:09 +00:00
|
|
|
$result = $this->Paginator->next('Next');
|
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'span' => array('class' => 'next'),
|
|
|
|
'a' => array('href' => '/?page=3', 'rel' => 'next'),
|
2010-12-20 18:59:09 +00:00
|
|
|
'Next',
|
|
|
|
'/a',
|
|
|
|
'/span'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2011-05-16 22:49:00 +00:00
|
|
|
|
2010-12-20 18:59:09 +00:00
|
|
|
$result = $this->Paginator->prev('Prev');
|
|
|
|
$expected = array(
|
2011-08-13 23:39:57 +00:00
|
|
|
'span' => array('class' => 'prev'),
|
|
|
|
'a' => array('href' => '/?page=1', 'rel' => 'prev'),
|
2010-12-20 18:59:09 +00:00
|
|
|
'Prev',
|
|
|
|
'/a',
|
|
|
|
'/span'
|
|
|
|
);
|
2011-05-17 04:36:22 +00:00
|
|
|
$this->assertTags($result, $expected);
|
2010-12-20 18:59:09 +00:00
|
|
|
}
|
|
|
|
|
2010-12-26 18:24:05 +00:00
|
|
|
/**
|
|
|
|
* test that additional keys can be flagged as query string args.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testOptionsConvertKeys() {
|
2010-12-26 18:24:05 +00:00
|
|
|
$this->Paginator->options(array(
|
|
|
|
'convertKeys' => array('something'),
|
|
|
|
'Article' => array('paramType' => 'querystring')
|
|
|
|
));
|
|
|
|
$result = $this->Paginator->url(array('page' => '4', 'something' => 'bar'));
|
|
|
|
$expected = '/?page=4&something=bar';
|
|
|
|
$this->assertEquals($expected, $result);
|
|
|
|
}
|
|
|
|
|
2010-12-20 19:02:12 +00:00
|
|
|
/**
|
|
|
|
* test the current() method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-30 20:02:32 +00:00
|
|
|
public function testCurrent() {
|
2010-12-20 19:02:12 +00:00
|
|
|
$result = $this->Paginator->current();
|
|
|
|
$this->assertEquals($this->Paginator->request->params['paging']['Article']['page'], $result);
|
|
|
|
|
|
|
|
$result = $this->Paginator->current('Incorrect');
|
|
|
|
$this->assertEquals(1, $result);
|
|
|
|
}
|
|
|
|
|
2011-09-09 13:05:22 +00:00
|
|
|
/**
|
|
|
|
* test the defaultModel() method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testNoDefaultModel() {
|
|
|
|
$this->Paginator->request = new CakeRequest(null, false);
|
|
|
|
$this->assertNull($this->Paginator->defaultModel());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test the numbers() method when there is only one page
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testWithOnePage() {
|
|
|
|
$this->Paginator->request['paging'] = array(
|
|
|
|
'Article' => array(
|
|
|
|
'page' => 1,
|
|
|
|
'current' => 2,
|
|
|
|
'count' => 2,
|
|
|
|
'prevPage' => false,
|
|
|
|
'nextPage' => true,
|
|
|
|
'pageCount' => 1,
|
|
|
|
'options' => array(
|
|
|
|
'page' => 1,
|
|
|
|
),
|
|
|
|
'paramType' => 'named',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$this->assertFalse($this->Paginator->numbers());
|
|
|
|
$this->assertFalse($this->Paginator->first());
|
|
|
|
$this->assertFalse($this->Paginator->last());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test the numbers() method when there is only one page
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testWithZeroPages() {
|
|
|
|
$this->Paginator->request['paging'] = array(
|
|
|
|
'Article' => array(
|
|
|
|
'page' => 0,
|
|
|
|
'current' => 0,
|
|
|
|
'count' => 0,
|
|
|
|
'prevPage' => false,
|
|
|
|
'nextPage' => false,
|
|
|
|
'pageCount' => 0,
|
|
|
|
'limit' => 10,
|
|
|
|
'options' => array(
|
|
|
|
'page' => 0,
|
|
|
|
'conditions' => array()
|
|
|
|
),
|
|
|
|
'paramType' => 'named',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$result = $this->Paginator->counter(array('format' => 'pages'));
|
|
|
|
$expected = '0 of 1';
|
2011-11-16 00:07:56 +00:00
|
|
|
$this->assertEquals($expected, $result);
|
2011-09-09 13:05:22 +00:00
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|