| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159 |
- <?php
- /**
- * PaginatorComponentTest file
- *
- * Series of tests for paginator component.
- *
- * PHP 5
- *
- * CakePHP(tm) Tests <http://book.cakephp.org/view/1196/Testing>
- * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice
- *
- * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests
- * @package Cake.Test.Case.Controller.Component
- * @since CakePHP(tm) v 2.0
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- App::uses('Controller', 'Controller');
- App::uses('PaginatorComponent', 'Controller/Component');
- App::uses('CakeRequest', 'Network');
- App::uses('CakeResponse', 'Network');
- /**
- * PaginatorTestController class
- *
- * @package Cake.Test.Case.Controller.Component
- */
- class PaginatorTestController extends Controller {
- /**
- * name property
- *
- * @var string 'PaginatorTest'
- */
- public $name = 'PaginatorTest';
- /**
- * components property
- *
- * @var array
- */
- public $components = array('Paginator');
- }
- /**
- * PaginatorControllerPost class
- *
- * @package Cake.Test.Case.Controller.Component
- */
- class PaginatorControllerPost extends CakeTestModel {
- /**
- * name property
- *
- * @var string 'PaginatorControllerPost'
- */
- public $name = 'PaginatorControllerPost';
- /**
- * useTable property
- *
- * @var string 'posts'
- */
- public $useTable = 'posts';
- /**
- * invalidFields property
- *
- * @var array
- */
- public $invalidFields = array('name' => 'error_msg');
- /**
- * lastQueries property
- *
- * @var array
- */
- public $lastQueries = array();
- /**
- * belongsTo property
- *
- * @var array
- */
- public $belongsTo = array('PaginatorAuthor' => array('foreignKey' => 'author_id'));
- /**
- * beforeFind method
- *
- * @param mixed $query
- * @return void
- */
- public function beforeFind($query) {
- array_unshift($this->lastQueries, $query);
- }
- /**
- * find method
- *
- * @param mixed $type
- * @param array $options
- * @return void
- */
- public function find($conditions = null, $fields = array(), $order = null, $recursive = null) {
- if ($conditions == 'popular') {
- $conditions = array($this->name . '.' . $this->primaryKey . ' > ' => '1');
- $options = Hash::merge($fields, compact('conditions'));
- return parent::find('all', $options);
- }
- return parent::find($conditions, $fields);
- }
- }
- /**
- * ControllerPaginateModel class
- *
- * @package Cake.Test.Case.Controller.Component
- */
- class ControllerPaginateModel extends CakeTestModel {
- /**
- * name property
- *
- * @var string 'ControllerPaginateModel'
- */
- public $name = 'ControllerPaginateModel';
- /**
- * useTable property
- *
- * @var string 'comments'
- */
- public $useTable = 'comments';
- /**
- * paginate method
- *
- * @return void
- */
- public function paginate($conditions, $fields, $order, $limit, $page, $recursive, $extra) {
- $this->extra = $extra;
- }
- /**
- * paginateCount
- *
- * @return void
- */
- public function paginateCount($conditions, $recursive, $extra) {
- $this->extraCount = $extra;
- }
- }
- /**
- * PaginatorControllerComment class
- *
- * @package Cake.Test.Case.Controller.Component
- */
- class PaginatorControllerComment extends CakeTestModel {
- /**
- * name property
- *
- * @var string 'Comment'
- */
- public $name = 'Comment';
- /**
- * useTable property
- *
- * @var string 'comments'
- */
- public $useTable = 'comments';
- /**
- * alias property
- *
- * @var string 'PaginatorControllerComment'
- */
- public $alias = 'PaginatorControllerComment';
- }
- /**
- * PaginatorAuthor class
- *
- * @package Cake.Test.Case.Controller.Component
- */
- class PaginatorAuthor extends CakeTestModel {
- /**
- * name property
- *
- * @var string 'PaginatorAuthor'
- */
- public $name = 'PaginatorAuthor';
- /**
- * useTable property
- *
- * @var string 'authors'
- */
- public $useTable = 'authors';
- /**
- * alias property
- *
- * @var string 'PaginatorAuthor'
- */
- public $alias = 'PaginatorAuthor';
- /**
- * alias property
- *
- * @var string 'PaginatorAuthor'
- */
- public $virtualFields = array(
- 'joined_offset' => 'PaginatorAuthor.id + 1'
- );
- }
- /**
- * PaginatorCustomPost class
- *
- * @package Cake.Test.Case.Controller.Component
- */
- class PaginatorCustomPost extends CakeTestModel {
- /**
- * useTable property
- *
- * @var string
- */
- public $useTable = 'posts';
- /**
- * belongsTo property
- *
- * @var string
- */
- public $belongsTo = array('Author');
- /**
- * findMethods property
- *
- * @var array
- */
- public $findMethods = array(
- 'published' => true,
- 'totals' => true,
- 'totalsOperation' => true
- );
- /**
- * _findPublished custom find
- *
- * @return array
- */
- public function _findPublished($state, $query, $results = array()) {
- if ($state === 'before') {
- $query['conditions']['published'] = 'Y';
- return $query;
- }
- return $results;
- }
- /**
- * _findTotals custom find
- *
- * @return array
- */
- public function _findTotals($state, $query, $results = array()) {
- if ($state == 'before') {
- $query['fields'] = array('author_id');
- $this->virtualFields['total_posts'] = "COUNT({$this->alias}.id)";
- $query['fields'][] = 'total_posts';
- $query['group'] = array('author_id');
- $query['order'] = array('author_id' => 'ASC');
- return $query;
- }
- $this->virtualFields = array();
- return $results;
- }
- /**
- * _findTotalsOperation custom find
- *
- * @return array
- */
- public function _findTotalsOperation($state, $query, $results = array()) {
- if ($state == 'before') {
- if (!empty($query['operation']) && $query['operation'] === 'count') {
- unset($query['limit']);
- $query['recursive'] = -1;
- $query['fields'] = array('COUNT(DISTINCT author_id) AS count');
- return $query;
- }
- $query['recursive'] = 0;
- $query['callbacks'] = 'before';
- $query['fields'] = array('author_id', 'Author.user');
- $this->virtualFields['total_posts'] = "COUNT({$this->alias}.id)";
- $query['fields'][] = 'total_posts';
- $query['group'] = array('author_id', 'Author.user');
- $query['order'] = array('author_id' => 'ASC');
- return $query;
- }
- $this->virtualFields = array();
- return $results;
- }
- }
- class PaginatorComponentTest extends CakeTestCase {
- /**
- * fixtures property
- *
- * @var array
- */
- public $fixtures = array('core.post', 'core.comment', 'core.author');
- /**
- * setup
- *
- * @return void
- */
- public function setUp() {
- parent::setUp();
- $this->request = new CakeRequest('controller_posts/index');
- $this->request->params['pass'] = $this->request->params['named'] = array();
- $this->Controller = new Controller($this->request);
- $this->Paginator = new PaginatorComponent($this->getMock('ComponentCollection'), array());
- $this->Paginator->Controller = $this->Controller;
- $this->Controller->Post = $this->getMock('Model');
- $this->Controller->Post->alias = 'Post';
- }
- /**
- * testPaginate method
- *
- * @return void
- */
- public function testPaginate() {
- $Controller = new PaginatorTestController($this->request);
- $Controller->uses = array('PaginatorControllerPost', 'PaginatorControllerComment');
- $Controller->request->params['pass'] = array('1');
- $Controller->request->query = array();
- $Controller->constructClasses();
- $results = Hash::extract($Controller->Paginator->paginate('PaginatorControllerPost'), '{n}.PaginatorControllerPost.id');
- $this->assertEquals(array(1, 2, 3), $results);
- $results = Hash::extract($Controller->Paginator->paginate('PaginatorControllerComment'), '{n}.PaginatorControllerComment.id');
- $this->assertEquals(array(1, 2, 3, 4, 5, 6), $results);
- $Controller->modelClass = null;
- $Controller->uses[0] = 'Plugin.PaginatorControllerPost';
- $results = Hash::extract($Controller->Paginator->paginate(), '{n}.PaginatorControllerPost.id');
- $this->assertEquals(array(1, 2, 3), $results);
- $Controller->request->params['named'] = array('page' => '-1');
- $results = Hash::extract($Controller->Paginator->paginate('PaginatorControllerPost'), '{n}.PaginatorControllerPost.id');
- $this->assertEquals(1, $Controller->params['paging']['PaginatorControllerPost']['page']);
- $this->assertEquals(array(1, 2, 3), $results);
- $Controller->request->params['named'] = array('sort' => 'PaginatorControllerPost.id', 'direction' => 'asc');
- $results = Hash::extract($Controller->Paginator->paginate('PaginatorControllerPost'), '{n}.PaginatorControllerPost.id');
- $this->assertEquals(1, $Controller->params['paging']['PaginatorControllerPost']['page']);
- $this->assertEquals(array(1, 2, 3), $results);
- $Controller->request->params['named'] = array('sort' => 'PaginatorControllerPost.id', 'direction' => 'desc');
- $results = Hash::extract($Controller->Paginator->paginate('PaginatorControllerPost'), '{n}.PaginatorControllerPost.id');
- $this->assertEquals(1, $Controller->params['paging']['PaginatorControllerPost']['page']);
- $this->assertEquals(array(3, 2, 1), $results);
- $Controller->request->params['named'] = array('sort' => 'id', 'direction' => 'desc');
- $results = Hash::extract($Controller->Paginator->paginate('PaginatorControllerPost'), '{n}.PaginatorControllerPost.id');
- $this->assertEquals(1, $Controller->params['paging']['PaginatorControllerPost']['page']);
- $this->assertEquals(array(3, 2, 1), $results);
- $Controller->request->params['named'] = array('sort' => 'NotExisting.field', 'direction' => 'desc');
- $results = Hash::extract($Controller->Paginator->paginate('PaginatorControllerPost'), '{n}.PaginatorControllerPost.id');
- $this->assertEquals(1, $Controller->params['paging']['PaginatorControllerPost']['page'], 'Invalid field in query %s');
- $this->assertEquals(array(1, 2, 3), $results);
- $Controller->request->params['named'] = array(
- 'sort' => 'PaginatorControllerPost.author_id', 'direction' => 'allYourBase'
- );
- $results = Hash::extract($Controller->Paginator->paginate('PaginatorControllerPost'), '{n}.PaginatorControllerPost.id');
- $this->assertEquals(array('PaginatorControllerPost.author_id' => 'asc'), $Controller->PaginatorControllerPost->lastQueries[1]['order'][0]);
- $this->assertEquals(array(1, 3, 2), $results);
- $Controller->request->params['named'] = array();
- $Controller->Paginator->settings = array('limit' => 0, 'maxLimit' => 10, 'paramType' => 'named');
- $Controller->Paginator->paginate('PaginatorControllerPost');
- $this->assertSame(1, $Controller->params['paging']['PaginatorControllerPost']['page']);
- $this->assertSame($Controller->params['paging']['PaginatorControllerPost']['pageCount'], 3);
- $this->assertSame($Controller->params['paging']['PaginatorControllerPost']['prevPage'], false);
- $this->assertSame($Controller->params['paging']['PaginatorControllerPost']['nextPage'], true);
- $Controller->request->params['named'] = array();
- $Controller->Paginator->settings = array('limit' => 'garbage!', 'maxLimit' => 10, 'paramType' => 'named');
- $Controller->Paginator->paginate('PaginatorControllerPost');
- $this->assertSame(1, $Controller->params['paging']['PaginatorControllerPost']['page']);
- $this->assertSame($Controller->params['paging']['PaginatorControllerPost']['pageCount'], 3);
- $this->assertSame($Controller->params['paging']['PaginatorControllerPost']['prevPage'], false);
- $this->assertSame($Controller->params['paging']['PaginatorControllerPost']['nextPage'], true);
- $Controller->request->params['named'] = array();
- $Controller->Paginator->settings = array('limit' => '-1', 'maxLimit' => 10, 'paramType' => 'named');
- $Controller->Paginator->paginate('PaginatorControllerPost');
- $this->assertSame($Controller->params['paging']['PaginatorControllerPost']['limit'], 1);
- $this->assertSame(1, $Controller->params['paging']['PaginatorControllerPost']['page']);
- $this->assertSame($Controller->params['paging']['PaginatorControllerPost']['pageCount'], 3);
- $this->assertSame($Controller->params['paging']['PaginatorControllerPost']['prevPage'], false);
- $this->assertSame($Controller->params['paging']['PaginatorControllerPost']['nextPage'], true);
- }
- /**
- * Test that non-numeric values are rejected for page, and limit
- *
- * @return void
- */
- public function testPageParamCasting() {
- $this->Controller->Post->expects($this->at(0))
- ->method('hasMethod')
- ->with('paginate')
- ->will($this->returnValue(false));
- $this->Controller->Post->expects($this->at(1))
- ->method('find')
- ->will($this->returnValue(array('stuff')));
- $this->Controller->Post->expects($this->at(2))
- ->method('hasMethod')
- ->with('paginateCount')
- ->will($this->returnValue(false));
- $this->Controller->Post->expects($this->at(3))
- ->method('find')
- ->will($this->returnValue(2));
- $this->request->params['named'] = array('page' => '1 " onclick="alert(\'xss\');">');
- $this->Paginator->settings = array('limit' => 1, 'maxLimit' => 10, 'paramType' => 'named');
- $this->Paginator->paginate('Post');
- $this->assertSame(1, $this->request->params['paging']['Post']['page'], 'XSS exploit opened');
- }
- /**
- * testPaginateExtraParams method
- *
- * @return void
- */
- public function testPaginateExtraParams() {
- $Controller = new PaginatorTestController($this->request);
- $Controller->uses = array('PaginatorControllerPost', 'PaginatorControllerComment');
- $Controller->request->params['pass'] = array('1');
- $Controller->params['url'] = array();
- $Controller->constructClasses();
- $Controller->request->params['named'] = array('page' => '-1', 'contain' => array('PaginatorControllerComment'));
- $result = $Controller->Paginator->paginate('PaginatorControllerPost');
- $this->assertEquals(1, $Controller->params['paging']['PaginatorControllerPost']['page']);
- $this->assertEquals(array(1, 2, 3), Hash::extract($result, '{n}.PaginatorControllerPost.id'));
- $this->assertTrue(!isset($Controller->PaginatorControllerPost->lastQueries[1]['contain']));
- $Controller->request->params['named'] = array('page' => '-1');
- $Controller->Paginator->settings = array(
- 'PaginatorControllerPost' => array(
- 'contain' => array('PaginatorControllerComment'),
- 'maxLimit' => 10,
- 'paramType' => 'named'
- ),
- );
- $result = $Controller->Paginator->paginate('PaginatorControllerPost');
- $this->assertEquals(1, $Controller->params['paging']['PaginatorControllerPost']['page']);
- $this->assertEquals(array(1, 2, 3), Hash::extract($result, '{n}.PaginatorControllerPost.id'));
- $this->assertTrue(isset($Controller->PaginatorControllerPost->lastQueries[1]['contain']));
- $Controller->Paginator->settings = array(
- 'PaginatorControllerPost' => array(
- 'popular', 'fields' => array('id', 'title'), 'maxLimit' => 10, 'paramType' => 'named'
- ),
- );
- $result = $Controller->Paginator->paginate('PaginatorControllerPost');
- $this->assertEquals(array(2, 3), Hash::extract($result, '{n}.PaginatorControllerPost.id'));
- $this->assertEquals(array('PaginatorControllerPost.id > ' => '1'), $Controller->PaginatorControllerPost->lastQueries[1]['conditions']);
- $Controller->request->params['named'] = array('limit' => 12);
- $Controller->Paginator->settings = array('limit' => 30, 'maxLimit' => 100, 'paramType' => 'named');
- $result = $Controller->Paginator->paginate('PaginatorControllerPost');
- $paging = $Controller->params['paging']['PaginatorControllerPost'];
- $this->assertEquals(12, $Controller->PaginatorControllerPost->lastQueries[1]['limit']);
- $this->assertEquals(12, $paging['options']['limit']);
- $Controller = new PaginatorTestController($this->request);
- $Controller->uses = array('ControllerPaginateModel');
- $Controller->request->query = array();
- $Controller->constructClasses();
- $Controller->Paginator->settings = array(
- 'ControllerPaginateModel' => array(
- 'contain' => array('ControllerPaginateModel'),
- 'group' => 'Comment.author_id',
- 'maxLimit' => 10,
- 'paramType' => 'named'
- )
- );
- $result = $Controller->Paginator->paginate('ControllerPaginateModel');
- $expected = array(
- 'contain' => array('ControllerPaginateModel'),
- 'group' => 'Comment.author_id',
- 'maxLimit' => 10,
- 'paramType' => 'named'
- );
- $this->assertEquals($expected, $Controller->ControllerPaginateModel->extra);
- $this->assertEquals($expected, $Controller->ControllerPaginateModel->extraCount);
- $Controller->Paginator->settings = array(
- 'ControllerPaginateModel' => array(
- 'foo', 'contain' => array('ControllerPaginateModel'),
- 'group' => 'Comment.author_id',
- 'maxLimit' => 10,
- 'paramType' => 'named'
- )
- );
- $Controller->Paginator->paginate('ControllerPaginateModel');
- $expected = array(
- 'contain' => array('ControllerPaginateModel'),
- 'group' => 'Comment.author_id',
- 'type' => 'foo',
- 'maxLimit' => 10,
- 'paramType' => 'named'
- );
- $this->assertEquals($expected, $Controller->ControllerPaginateModel->extra);
- $this->assertEquals($expected, $Controller->ControllerPaginateModel->extraCount);
- }
- /**
- * Test that special paginate types are called and that the type param doesn't leak out into defaults or options.
- *
- * @return void
- */
- public function testPaginateSpecialType() {
- $Controller = new PaginatorTestController($this->request);
- $Controller->uses = array('PaginatorControllerPost', 'PaginatorControllerComment');
- $Controller->passedArgs[] = '1';
- $Controller->params['url'] = array();
- $Controller->constructClasses();
- $Controller->Paginator->settings = array(
- 'PaginatorControllerPost' => array(
- 'popular',
- 'fields' => array('id', 'title'),
- 'maxLimit' => 10,
- 'paramType' => 'named'
- )
- );
- $result = $Controller->Paginator->paginate('PaginatorControllerPost');
- $this->assertEquals(array(2, 3), Hash::extract($result, '{n}.PaginatorControllerPost.id'));
- $this->assertEquals(
- $Controller->PaginatorControllerPost->lastQueries[1]['conditions'],
- array('PaginatorControllerPost.id > ' => '1')
- );
- $this->assertFalse(isset($Controller->params['paging']['PaginatorControllerPost']['options'][0]));
- }
- /**
- * testDefaultPaginateParams method
- *
- * @return void
- */
- public function testDefaultPaginateParams() {
- $Controller = new PaginatorTestController($this->request);
- $Controller->modelClass = 'PaginatorControllerPost';
- $Controller->params['url'] = array();
- $Controller->constructClasses();
- $Controller->Paginator->settings = array(
- 'order' => 'PaginatorControllerPost.id DESC',
- 'maxLimit' => 10,
- 'paramType' => 'named'
- );
- $results = Hash::extract($Controller->Paginator->paginate('PaginatorControllerPost'), '{n}.PaginatorControllerPost.id');
- $this->assertEquals('PaginatorControllerPost.id DESC', $Controller->params['paging']['PaginatorControllerPost']['order']);
- $this->assertEquals(array(3, 2, 1), $results);
- }
- /**
- * test paginate() and virtualField interactions
- *
- * @return void
- */
- public function testPaginateOrderVirtualField() {
- $Controller = new PaginatorTestController($this->request);
- $Controller->uses = array('PaginatorControllerPost', 'PaginatorControllerComment');
- $Controller->params['url'] = array();
- $Controller->constructClasses();
- $Controller->PaginatorControllerPost->virtualFields = array(
- 'offset_test' => 'PaginatorControllerPost.id + 1'
- );
- $Controller->Paginator->settings = array(
- 'fields' => array('id', 'title', 'offset_test'),
- 'order' => array('offset_test' => 'DESC'),
- 'maxLimit' => 10,
- 'paramType' => 'named'
- );
- $result = $Controller->Paginator->paginate('PaginatorControllerPost');
- $this->assertEquals(array(4, 3, 2), Hash::extract($result, '{n}.PaginatorControllerPost.offset_test'));
- $Controller->request->params['named'] = array('sort' => 'offset_test', 'direction' => 'asc');
- $result = $Controller->Paginator->paginate('PaginatorControllerPost');
- $this->assertEquals(array(2, 3, 4), Hash::extract($result, '{n}.PaginatorControllerPost.offset_test'));
- }
- /**
- * test paginate() and virtualField on joined model
- *
- * @return void
- */
- public function testPaginateOrderVirtualFieldJoinedModel() {
- $Controller = new PaginatorTestController($this->request);
- $Controller->uses = array('PaginatorControllerPost');
- $Controller->params['url'] = array();
- $Controller->constructClasses();
- $Controller->PaginatorControllerPost->recursive = 0;
- $Controller->Paginator->settings = array(
- 'order' => array('PaginatorAuthor.joined_offset' => 'DESC'),
- 'maxLimit' => 10,
- 'paramType' => 'named'
- );
- $result = $Controller->Paginator->paginate('PaginatorControllerPost');
- $this->assertEquals(array(4, 2, 2), Hash::extract($result, '{n}.PaginatorAuthor.joined_offset'));
- $Controller->request->params['named'] = array('sort' => 'PaginatorAuthor.joined_offset', 'direction' => 'asc');
- $result = $Controller->Paginator->paginate('PaginatorControllerPost');
- $this->assertEquals(array(2, 2, 4), Hash::extract($result, '{n}.PaginatorAuthor.joined_offset'));
- }
- /**
- * Tests for missing models
- *
- * @expectedException MissingModelException
- */
- public function testPaginateMissingModel() {
- $Controller = new PaginatorTestController($this->request);
- $Controller->constructClasses();
- $Controller->Paginator->paginate('MissingModel');
- }
- /**
- * test that option merging prefers specific models
- *
- * @return void
- */
- public function testMergeOptionsModelSpecific() {
- $this->Paginator->settings = array(
- 'page' => 1,
- 'limit' => 20,
- 'maxLimit' => 100,
- 'paramType' => 'named',
- 'Post' => array(
- 'page' => 1,
- 'limit' => 10,
- 'maxLimit' => 50,
- 'paramType' => 'named',
- )
- );
- $result = $this->Paginator->mergeOptions('Silly');
- $this->assertEquals($this->Paginator->settings, $result);
- $result = $this->Paginator->mergeOptions('Post');
- $expected = array('page' => 1, 'limit' => 10, 'paramType' => 'named', 'maxLimit' => 50);
- $this->assertEquals($expected, $result);
- }
- /**
- * test mergeOptions with named params.
- *
- * @return void
- */
- public function testMergeOptionsNamedParams() {
- $this->request->params['named'] = array(
- 'page' => 10,
- 'limit' => 10
- );
- $this->Paginator->settings = array(
- 'page' => 1,
- 'limit' => 20,
- 'maxLimit' => 100,
- 'paramType' => 'named',
- );
- $result = $this->Paginator->mergeOptions('Post');
- $expected = array('page' => 10, 'limit' => 10, 'maxLimit' => 100, 'paramType' => 'named');
- $this->assertEquals($expected, $result);
- }
- /**
- * test merging options from the querystring.
- *
- * @return void
- */
- public function testMergeOptionsQueryString() {
- $this->request->params['named'] = array(
- 'page' => 10,
- 'limit' => 10
- );
- $this->request->query = array(
- 'page' => 99,
- 'limit' => 75
- );
- $this->Paginator->settings = array(
- 'page' => 1,
- 'limit' => 20,
- 'maxLimit' => 100,
- 'paramType' => 'querystring',
- );
- $result = $this->Paginator->mergeOptions('Post');
- $expected = array('page' => 99, 'limit' => 75, 'maxLimit' => 100, 'paramType' => 'querystring');
- $this->assertEquals($expected, $result);
- }
- /**
- * test that the default whitelist doesn't let people screw with things they should not be allowed to.
- *
- * @return void
- */
- public function testMergeOptionsDefaultWhiteList() {
- $this->request->params['named'] = array(
- 'page' => 10,
- 'limit' => 10,
- 'fields' => array('bad.stuff'),
- 'recursive' => 1000,
- 'conditions' => array('bad.stuff'),
- 'contain' => array('bad')
- );
- $this->Paginator->settings = array(
- 'page' => 1,
- 'limit' => 20,
- 'maxLimit' => 100,
- 'paramType' => 'named',
- );
- $result = $this->Paginator->mergeOptions('Post');
- $expected = array('page' => 10, 'limit' => 10, 'maxLimit' => 100, 'paramType' => 'named');
- $this->assertEquals($expected, $result);
- }
- /**
- * test that modifying the whitelist works.
- *
- * @return void
- */
- public function testMergeOptionsExtraWhitelist() {
- $this->request->params['named'] = array(
- 'page' => 10,
- 'limit' => 10,
- 'fields' => array('bad.stuff'),
- 'recursive' => 1000,
- 'conditions' => array('bad.stuff'),
- 'contain' => array('bad')
- );
- $this->Paginator->settings = array(
- 'page' => 1,
- 'limit' => 20,
- 'maxLimit' => 100,
- 'paramType' => 'named',
- );
- $this->Paginator->whitelist[] = 'fields';
- $result = $this->Paginator->mergeOptions('Post');
- $expected = array(
- 'page' => 10, 'limit' => 10, 'maxLimit' => 100, 'paramType' => 'named', 'fields' => array('bad.stuff')
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * test that invalid directions are ignored.
- *
- * @return void
- */
- public function testValidateSortInvalidDirection() {
- $model = $this->getMock('Model');
- $model->alias = 'model';
- $model->expects($this->any())->method('hasField')->will($this->returnValue(true));
- $options = array('sort' => 'something', 'direction' => 'boogers');
- $result = $this->Paginator->validateSort($model, $options);
- $this->assertEquals('asc', $result['order']['model.something']);
- }
- /**
- * test that fields not in whitelist won't be part of order conditions.
- *
- * @return void
- */
- public function testValidateSortWhitelistFailure() {
- $model = $this->getMock('Model');
- $model->alias = 'model';
- $model->expects($this->any())->method('hasField')->will($this->returnValue(true));
- $options = array('sort' => 'body', 'direction' => 'asc');
- $result = $this->Paginator->validateSort($model, $options, array('title', 'id'));
- $this->assertNull($result['order']);
- }
- /**
- * test that virtual fields work.
- *
- * @return void
- */
- public function testValidateSortVirtualField() {
- $model = $this->getMock('Model');
- $model->alias = 'model';
- $model->expects($this->at(0))
- ->method('hasField')
- ->with('something')
- ->will($this->returnValue(false));
- $model->expects($this->at(1))
- ->method('hasField')
- ->with('something', true)
- ->will($this->returnValue(true));
- $options = array('sort' => 'something', 'direction' => 'desc');
- $result = $this->Paginator->validateSort($model, $options);
- $this->assertEquals('desc', $result['order']['something']);
- }
- /**
- * test that multiple sort works.
- *
- * @return void
- */
- public function testValidateSortMultiple() {
- $model = $this->getMock('Model');
- $model->alias = 'model';
- $model->expects($this->any())->method('hasField')->will($this->returnValue(true));
- $options = array('order' => array(
- 'author_id' => 'asc',
- 'title' => 'asc'
- ));
- $result = $this->Paginator->validateSort($model, $options);
- $expected = array(
- 'model.author_id' => 'asc',
- 'model.title' => 'asc'
- );
- $this->assertEquals($expected, $result['order']);
- }
- /**
- * Test that no sort doesn't trigger an error.
- *
- * @return void
- */
- public function testValidateSortNoSort() {
- $model = $this->getMock('Model');
- $model->alias = 'model';
- $model->expects($this->any())->method('hasField')->will($this->returnValue(true));
- $options = array('direction' => 'asc');
- $result = $this->Paginator->validateSort($model, $options, array('title', 'id'));
- $this->assertFalse(isset($result['order']));
- $options = array('order' => 'invalid desc');
- $result = $this->Paginator->validateSort($model, $options, array('title', 'id'));
- $this->assertEquals($options['order'], $result['order']);
- }
- /**
- * test that maxLimit is respected
- *
- * @return void
- */
- public function testCheckLimit() {
- $result = $this->Paginator->checkLimit(array('limit' => 1000000, 'maxLimit' => 100));
- $this->assertEquals(100, $result['limit']);
- $result = $this->Paginator->checkLimit(array('limit' => 'sheep!', 'maxLimit' => 100));
- $this->assertEquals(1, $result['limit']);
- $result = $this->Paginator->checkLimit(array('limit' => '-1', 'maxLimit' => 100));
- $this->assertEquals(1, $result['limit']);
- $result = $this->Paginator->checkLimit(array('limit' => null, 'maxLimit' => 100));
- $this->assertEquals(1, $result['limit']);
- $result = $this->Paginator->checkLimit(array('limit' => 0, 'maxLimit' => 100));
- $this->assertEquals(1, $result['limit']);
- }
- /**
- * testPaginateMaxLimit
- *
- * @return void
- */
- public function testPaginateMaxLimit() {
- $Controller = new Controller($this->request);
- $Controller->uses = array('PaginatorControllerPost', 'ControllerComment');
- $Controller->passedArgs[] = '1';
- $Controller->constructClasses();
- $Controller->request->params['named'] = array(
- 'contain' => array('ControllerComment'), 'limit' => '1000'
- );
- $result = $Controller->paginate('PaginatorControllerPost');
- $this->assertEquals(100, $Controller->params['paging']['PaginatorControllerPost']['options']['limit']);
- $Controller->request->params['named'] = array(
- 'contain' => array('ControllerComment'), 'limit' => '1000', 'maxLimit' => 1000
- );
- $result = $Controller->paginate('PaginatorControllerPost');
- $this->assertEquals(100, $Controller->params['paging']['PaginatorControllerPost']['options']['limit']);
- $Controller->request->params['named'] = array('contain' => array('ControllerComment'), 'limit' => '10');
- $result = $Controller->paginate('PaginatorControllerPost');
- $this->assertEquals(10, $Controller->params['paging']['PaginatorControllerPost']['options']['limit']);
- $Controller->request->params['named'] = array('contain' => array('ControllerComment'), 'limit' => '1000');
- $Controller->paginate = array('maxLimit' => 2000, 'paramType' => 'named');
- $result = $Controller->paginate('PaginatorControllerPost');
- $this->assertEquals(1000, $Controller->params['paging']['PaginatorControllerPost']['options']['limit']);
- $Controller->request->params['named'] = array('contain' => array('ControllerComment'), 'limit' => '5000');
- $result = $Controller->paginate('PaginatorControllerPost');
- $this->assertEquals(2000, $Controller->params['paging']['PaginatorControllerPost']['options']['limit']);
- }
- /**
- * test paginate() and virtualField overlapping with real fields.
- *
- * @return void
- */
- public function testPaginateOrderVirtualFieldSharedWithRealField() {
- $Controller = new Controller($this->request);
- $Controller->uses = array('PaginatorControllerPost', 'PaginatorControllerComment');
- $Controller->constructClasses();
- $Controller->PaginatorControllerComment->virtualFields = array(
- 'title' => 'PaginatorControllerComment.comment'
- );
- $Controller->PaginatorControllerComment->bindModel(array(
- 'belongsTo' => array(
- 'PaginatorControllerPost' => array(
- 'className' => 'PaginatorControllerPost',
- 'foreignKey' => 'article_id'
- )
- )
- ), false);
- $Controller->paginate = array(
- 'fields' => array('PaginatorControllerComment.id', 'title', 'PaginatorControllerPost.title'),
- );
- $Controller->passedArgs = array('sort' => 'PaginatorControllerPost.title', 'dir' => 'asc');
- $result = $Controller->paginate('PaginatorControllerComment');
- $this->assertEquals(array(1, 2, 3, 4, 5, 6), Hash::extract($result, '{n}.PaginatorControllerComment.id'));
- }
- /**
- * test paginate() and custom find, to make sure the correct count is returned.
- *
- * @return void
- */
- public function testPaginateCustomFind() {
- $Controller =& new Controller($this->request);
- $Controller->uses = array('PaginatorCustomPost');
- $Controller->constructClasses();
- $data = array('author_id' => 3, 'title' => 'Fourth Article', 'body' => 'Article Body, unpublished', 'published' => 'N');
- $Controller->PaginatorCustomPost->create($data);
- $result = $Controller->PaginatorCustomPost->save();
- $this->assertTrue(!empty($result));
- $result = $Controller->paginate();
- $this->assertEquals(array(1, 2, 3, 4), Hash::extract($result, '{n}.PaginatorCustomPost.id'));
- $result = $Controller->params['paging']['PaginatorCustomPost'];
- $this->assertEquals(4, $result['current']);
- $this->assertEquals(4, $result['count']);
- $Controller->paginate = array('published');
- $result = $Controller->paginate();
- $this->assertEquals(array(1, 2, 3), Hash::extract($result, '{n}.PaginatorCustomPost.id'));
- $result = $Controller->params['paging']['PaginatorCustomPost'];
- $this->assertEquals(3, $result['current']);
- $this->assertEquals(3, $result['count']);
- $Controller->paginate = array('published', 'limit' => 2);
- $result = $Controller->paginate();
- $this->assertEquals(array(1, 2), Hash::extract($result, '{n}.PaginatorCustomPost.id'));
- $result = $Controller->params['paging']['PaginatorCustomPost'];
- $this->assertEquals(2, $result['current']);
- $this->assertEquals(3, $result['count']);
- $this->assertEquals(2, $result['pageCount']);
- $this->assertTrue($result['nextPage']);
- $this->assertFalse($result['prevPage']);
- }
- /**
- * test paginate() and custom find with fields array, to make sure the correct count is returned.
- *
- * @return void
- */
- public function testPaginateCustomFindFieldsArray() {
- $Controller =& new Controller($this->request);
- $Controller->uses = array('PaginatorCustomPost');
- $Controller->constructClasses();
- $data = array('author_id' => 3, 'title' => 'Fourth Article', 'body' => 'Article Body, unpublished', 'published' => 'N');
- $Controller->PaginatorCustomPost->create($data);
- $result = $Controller->PaginatorCustomPost->save();
- $this->assertTrue(!empty($result));
- $Controller->paginate = array(
- 'list',
- 'conditions' => array('PaginatorCustomPost.published' => 'Y'),
- 'limit' => 2
- );
- $result = $Controller->paginate();
- $expected = array(
- 1 => 'First Post',
- 2 => 'Second Post',
- );
- $this->assertEquals($expected, $result);
- $result = $Controller->params['paging']['PaginatorCustomPost'];
- $this->assertEquals(2, $result['current']);
- $this->assertEquals(3, $result['count']);
- $this->assertEquals(2, $result['pageCount']);
- $this->assertTrue($result['nextPage']);
- $this->assertFalse($result['prevPage']);
- }
- /**
- * test paginate() and custom find with fields array, to make sure the correct count is returned.
- *
- * @return void
- */
- public function testPaginateCustomFindGroupBy() {
- $Controller =& new Controller($this->request);
- $Controller->uses = array('PaginatorCustomPost');
- $Controller->constructClasses();
- $data = array('author_id' => 2, 'title' => 'Fourth Article', 'body' => 'Article Body, unpublished', 'published' => 'N');
- $Controller->PaginatorCustomPost->create($data);
- $result = $Controller->PaginatorCustomPost->save();
- $this->assertTrue(!empty($result));
- $Controller->paginate = array(
- 'totals',
- 'limit' => 2
- );
- $result = $Controller->paginate();
- $expected = array(
- array(
- 'PaginatorCustomPost' => array(
- 'author_id' => '1',
- 'total_posts' => '2'
- )
- ),
- array(
- 'PaginatorCustomPost' => array(
- 'author_id' => '2',
- 'total_posts' => '1'
- )
- )
- );
- $this->assertEquals($expected, $result);
- $result = $Controller->params['paging']['PaginatorCustomPost'];
- $this->assertEquals(2, $result['current']);
- $this->assertEquals(3, $result['count']);
- $this->assertEquals(2, $result['pageCount']);
- $this->assertTrue($result['nextPage']);
- $this->assertFalse($result['prevPage']);
- $Controller->paginate = array(
- 'totals',
- 'limit' => 2,
- 'page' => 2
- );
- $result = $Controller->paginate();
- $expected = array(
- array(
- 'PaginatorCustomPost' => array(
- 'author_id' => '3',
- 'total_posts' => '1'
- )
- ),
- );
- $this->assertEquals($expected, $result);
- $result = $Controller->params['paging']['PaginatorCustomPost'];
- $this->assertEquals(1, $result['current']);
- $this->assertEquals(3, $result['count']);
- $this->assertEquals(2, $result['pageCount']);
- $this->assertFalse($result['nextPage']);
- $this->assertTrue($result['prevPage']);
- }
- /**
- * test paginate() and custom find with returning other query on count operation,
- * to make sure the correct count is returned.
- *
- * @return void
- */
- public function testPaginateCustomFindCount() {
- $Controller =& new Controller($this->request);
- $Controller->uses = array('PaginatorCustomPost');
- $Controller->constructClasses();
- $data = array('author_id' => 2, 'title' => 'Fourth Article', 'body' => 'Article Body, unpublished', 'published' => 'N');
- $Controller->PaginatorCustomPost->create($data);
- $result = $Controller->PaginatorCustomPost->save();
- $this->assertTrue(!empty($result));
- $Controller->paginate = array(
- 'totalsOperation',
- 'limit' => 2
- );
- $result = $Controller->paginate();
- $expected = array(
- array(
- 'PaginatorCustomPost' => array(
- 'author_id' => '1',
- 'total_posts' => '2'
- ),
- 'Author' => array(
- 'user' => 'mariano',
- )
- ),
- array(
- 'PaginatorCustomPost' => array(
- 'author_id' => '2',
- 'total_posts' => '1'
- ),
- 'Author' => array(
- 'user' => 'nate'
- )
- )
- );
- $this->assertEquals($expected, $result);
- $result = $Controller->params['paging']['PaginatorCustomPost'];
- $this->assertEquals(2, $result['current']);
- $this->assertEquals(3, $result['count']);
- $this->assertEquals(2, $result['pageCount']);
- $this->assertTrue($result['nextPage']);
- $this->assertFalse($result['prevPage']);
- }
- }
|