| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 1.2.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\View\Helper;
- use Cake\Core\Configure;
- use Cake\Http\ServerRequest;
- use Cake\I18n\I18n;
- use Cake\Routing\Router;
- use Cake\TestSuite\TestCase;
- use Cake\View\Helper\PaginatorHelper;
- use Cake\View\View;
- /**
- * PaginatorHelperTest class
- */
- class PaginatorHelperTest extends TestCase
- {
- /**
- * @var string
- */
- protected $locale;
- /**
- * @var \Cake\View\View
- */
- protected $View;
- /**
- * @var \Cake\View\Helper\PaginatorHelper
- */
- protected $Paginator;
- /**
- * setUp method
- *
- * @return void
- */
- public function setUp()
- {
- parent::setUp();
- Configure::write('Config.language', 'eng');
- $this->View = new View();
- $this->Paginator = new PaginatorHelper($this->View);
- $this->Paginator->request = new ServerRequest([
- 'url' => '/',
- 'params' => [
- 'paging' => [
- 'Article' => [
- 'page' => 1,
- 'current' => 9,
- 'count' => 62,
- 'prevPage' => false,
- 'nextPage' => true,
- 'pageCount' => 7,
- 'sort' => null,
- 'direction' => null,
- 'limit' => null,
- ]
- ]
- ]
- ]);
- Router::reload();
- Router::connect('/:controller/:action/*');
- Router::connect('/:plugin/:controller/:action/*');
- $this->locale = I18n::getLocale();
- }
- /**
- * tearDown method
- *
- * @return void
- */
- public function tearDown()
- {
- parent::tearDown();
- unset($this->View, $this->Paginator);
- I18n::setLocale($this->locale);
- }
- /**
- * Test the templates method.
- *
- * @return void
- */
- public function testTemplates()
- {
- $result = $this->Paginator->setTemplates([
- 'test' => 'val'
- ]);
- $this->assertSame(
- $this->Paginator,
- $result,
- 'Setting should return the same object'
- );
- $result = $this->Paginator->getTemplates();
- $this->assertArrayHasKey('test', $result);
- $this->assertEquals('val', $result['test']);
- $this->assertEquals('val', $this->Paginator->getTemplates('test'));
- }
- /**
- * testHasPrevious method
- *
- * @return void
- */
- public function testHasPrevious()
- {
- $this->assertFalse($this->Paginator->hasPrev());
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Article.prevPage', true);
- $this->assertTrue($this->Paginator->hasPrev());
- }
- /**
- * testHasNext method
- *
- * @return void
- */
- public function testHasNext()
- {
- $this->assertTrue($this->Paginator->hasNext());
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Article.nextPage', false);
- $this->assertFalse($this->Paginator->hasNext());
- }
- /**
- * testSortLinks method
- *
- * @return void
- */
- public function testSortLinks()
- {
- $request = new ServerRequest([
- 'url' => '/accounts/',
- 'params' => [
- 'plugin' => null, 'controller' => 'accounts', 'action' => 'index', 'pass' => []
- ],
- 'base' => '',
- 'webroot' => '/'
- ]);
- Router::setRequestInfo($request);
- $this->Paginator->options(['url' => ['param']]);
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Article' => [
- 'current' => 9,
- 'count' => 62,
- 'prevPage' => false,
- 'nextPage' => true,
- 'pageCount' => 7,
- 'sort' => 'date',
- 'direction' => 'asc',
- 'page' => 1,
- ]
- ]);
- $result = $this->Paginator->sort('title');
- $expected = [
- 'a' => ['href' => '/accounts/index/param?sort=title&direction=asc'],
- 'Title',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->sort('title', null, ['model' => 'Nope']);
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->sort('title', null, ['model' => 'Article']);
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->sort('date');
- $expected = [
- 'a' => ['href' => '/accounts/index/param?sort=date&direction=desc', 'class' => 'asc'],
- 'Date',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->sort('title', 'TestTitle');
- $expected = [
- 'a' => ['href' => '/accounts/index/param?sort=title&direction=asc'],
- 'TestTitle',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->sort('title', ['asc' => 'ascending', 'desc' => 'descending']);
- $expected = [
- 'a' => ['href' => '/accounts/index/param?sort=title&direction=asc'],
- 'ascending',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Article.sort', 'title');
- $result = $this->Paginator->sort('title', ['asc' => 'ascending', 'desc' => 'descending']);
- $expected = [
- 'a' => ['href' => '/accounts/index/param?sort=title&direction=desc', 'class' => 'asc'],
- 'descending',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'Article.title')
- ->withParam('paging.Article.direction', 'desc');
- $result = $this->Paginator->sort('title');
- $expected = [
- 'a' => ['href' => '/accounts/index/param?sort=title&direction=asc', 'class' => 'desc'],
- 'Title',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'Article.title')
- ->withParam('paging.Article.direction', 'asc');
- $result = $this->Paginator->sort('title');
- $expected = [
- 'a' => ['href' => '/accounts/index/param?sort=title&direction=desc', 'class' => 'asc'],
- 'Title',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'Article.title')
- ->withParam('paging.Article.direction', 'desc');
- $result = $this->Paginator->sort('title', 'Title', ['direction' => 'desc']);
- $expected = [
- 'a' => ['href' => '/accounts/index/param?sort=title&direction=asc', 'class' => 'desc'],
- 'Title',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'Article.title')
- ->withParam('paging.Article.direction', 'desc');
- $result = $this->Paginator->sort('title', 'Title', ['direction' => 'ASC']);
- $expected = [
- 'a' => ['href' => '/accounts/index/param?sort=title&direction=asc', 'class' => 'desc'],
- 'Title',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'Article.title')
- ->withParam('paging.Article.direction', 'asc');
- $result = $this->Paginator->sort('title', 'Title', ['direction' => 'asc']);
- $expected = [
- 'a' => ['href' => '/accounts/index/param?sort=title&direction=desc', 'class' => 'asc'],
- 'Title',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'Article.title')
- ->withParam('paging.Article.direction', 'asc');
- $result = $this->Paginator->sort('title', 'Title', ['direction' => 'desc']);
- $expected = [
- 'a' => ['href' => '/accounts/index/param?sort=title&direction=desc', 'class' => 'asc'],
- 'Title',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * test sort() with escape option
- */
- public function testSortEscape()
- {
- $result = $this->Paginator->sort('title', 'TestTitle >');
- $expected = [
- 'a' => ['href' => '/index?sort=title&direction=asc'],
- 'TestTitle >',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->sort('title', 'TestTitle >', ['escape' => true]);
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->sort('title', 'TestTitle >', ['escape' => false]);
- $expected = [
- 'a' => ['href' => '/index?sort=title&direction=asc'],
- 'TestTitle >',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * test that sort() works with virtual field order options.
- *
- * @return void
- */
- public function testSortLinkWithVirtualField()
- {
- $request = new ServerRequest([
- 'url' => '/accounts/',
- 'params' => [
- 'plugin' => null, 'controller' => 'accounts', 'action' => 'index', 'pass' => []
- ],
- 'base' => '',
- 'webroot' => '/'
- ]);
- Router::setRequestInfo($request);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'full_name')
- ->withParam('paging.Article.direction', 'asc');
- $result = $this->Paginator->sort('Article.full_name');
- $expected = [
- 'a' => ['href' => '/accounts/index?sort=Article.full_name&direction=desc', 'class' => 'asc'],
- 'Article Full Name',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->sort('full_name');
- $expected = [
- 'a' => ['href' => '/accounts/index?sort=full_name&direction=desc', 'class' => 'asc'],
- 'Full Name',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'full_name')
- ->withParam('paging.Article.direction', 'desc');
- $result = $this->Paginator->sort('Article.full_name');
- $expected = [
- 'a' => ['href' => '/accounts/index?sort=Article.full_name&direction=asc', 'class' => 'desc'],
- 'Article Full Name',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->sort('full_name');
- $expected = [
- 'a' => ['href' => '/accounts/index?sort=full_name&direction=asc', 'class' => 'desc'],
- 'Full Name',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * testSortLinksUsingDirectionOption method
- *
- * @return void
- */
- public function testSortLinksUsingDirectionOption()
- {
- $request = new ServerRequest([
- 'url' => '/accounts/',
- 'params' => [
- 'plugin' => null, 'controller' => 'accounts', 'action' => 'index', 'pass' => []
- ],
- 'base' => '',
- 'webroot' => '/'
- ]);
- Router::setRequestInfo($request);
- $this->Paginator->options(['url' => ['param']]);
- $result = $this->Paginator->sort('title', 'TestTitle', ['direction' => 'desc']);
- $expected = [
- 'a' => ['href' => '/accounts/index/param?sort=title&direction=desc'],
- 'TestTitle',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->sort('title', ['asc' => 'ascending', 'desc' => 'descending'], ['direction' => 'desc']);
- $expected = [
- 'a' => ['href' => '/accounts/index/param?sort=title&direction=desc'],
- 'descending',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * testSortLinksUsingDotNotation method
- *
- * @return void
- */
- public function testSortLinksUsingDotNotation()
- {
- $request = new ServerRequest([
- 'url' => '/accounts/',
- 'params' => [
- 'plugin' => null, 'controller' => 'accounts', 'action' => 'index', 'pass' => []
- ],
- 'base' => '',
- 'webroot' => '/'
- ]);
- Router::setRequestInfo($request);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'Article.title')
- ->withParam('paging.Article.direction', 'desc');
- $result = $this->Paginator->sort('Article.title');
- $expected = [
- 'a' => ['href' => '/accounts/index?sort=Article.title&direction=asc', 'class' => 'desc'],
- 'Article Title',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'Article.title')
- ->withParam('paging.Article.direction', 'desc');
- $result = $this->Paginator->sort('Article.title', 'Title');
- $expected = [
- 'a' => ['href' => '/accounts/index?sort=Article.title&direction=asc', 'class' => 'desc'],
- 'Title',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'Article.title')
- ->withParam('paging.Article.direction', 'asc');
- $result = $this->Paginator->sort('Article.title', 'Title');
- $expected = [
- 'a' => ['href' => '/accounts/index?sort=Article.title&direction=desc', 'class' => 'asc'],
- 'Title',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'Account.title')
- ->withParam('paging.Article.direction', 'asc');
- $result = $this->Paginator->sort('title');
- $expected = [
- 'a' => ['href' => '/accounts/index?sort=title&direction=asc'],
- 'Title',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * test multiple pagination sort links
- *
- * @return void
- */
- public function testSortLinksMultiplePagination()
- {
- $request = new ServerRequest([
- 'url' => '/accounts/',
- 'params' => [
- 'plugin' => null, 'controller' => 'accounts', 'action' => 'index', 'pass' => []
- ],
- 'base' => '',
- 'webroot' => '/'
- ]);
- Router::setRequestInfo($request);
- $this->Paginator->options(['model' => 'Articles']);
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Articles' => [
- 'current' => 9,
- 'count' => 62,
- 'prevPage' => false,
- 'nextPage' => true,
- 'pageCount' => 7,
- 'sort' => 'date',
- 'direction' => 'asc',
- 'page' => 1,
- 'scope' => 'article',
- ],
- 'Tags' => [
- 'current' => 1,
- 'count' => 100,
- 'prevPage' => false,
- 'nextPage' => true,
- 'pageCount' => 5,
- 'sort' => 'tag',
- 'direction' => 'asc',
- 'page' => 1,
- 'scope' => 'tags',
- ]
- ]);
- $result = $this->Paginator->sort('title', 'Title', ['model' => 'Articles']);
- $expected = [
- 'a' => ['href' => '/accounts/index?article%5Bsort%5D=title&article%5Bdirection%5D=asc'],
- 'Title',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->sort('tag', 'Tag', ['model' => 'Tags']);
- $expected = [
- 'a' => ['class' => 'asc', 'href' => '/accounts/index?tags%5Bsort%5D=tag&tags%5Bdirection%5D=desc'],
- 'Tag',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * Test creating paging links for missing models.
- *
- * @return void
- */
- public function testPagingLinksMissingModel()
- {
- $result = $this->Paginator->sort('title', 'Title', ['model' => 'Missing']);
- $expected = [
- 'a' => ['href' => '/index?sort=title&direction=asc'],
- 'Title',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->next('Next', ['model' => 'Missing']);
- $expected = [
- 'li' => ['class' => 'next disabled'],
- 'a' => ['href' => '', 'onclick' => 'return false;'],
- 'Next',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->prev('Prev', ['model' => 'Missing']);
- $expected = [
- 'li' => ['class' => 'prev disabled'],
- 'a' => ['href' => '', 'onclick' => 'return false;'],
- 'Prev',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * testSortKey method
- *
- * @return void
- */
- public function testSortKey()
- {
- $result = $this->Paginator->sortKey('Article', ['sort' => 'Article.title']);
- $this->assertEquals('Article.title', $result);
- $result = $this->Paginator->sortKey('Article', ['sort' => 'Article']);
- $this->assertEquals('Article', $result);
- }
- /**
- * 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 = $this->Paginator->request->withParam('paging.Article.sort', 'Article.body');
- $result = $this->Paginator->sortKey();
- $this->assertEquals('Article.body', $result);
- $result = $this->Paginator->sortKey('Article');
- $this->assertEquals('Article.body', $result);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'Article.body')
- ->withParam('paging.Article.order', 'DESC');
- $result = $this->Paginator->sortKey();
- $this->assertEquals('Article.body', $result);
- $result = $this->Paginator->sortKey('Article');
- $this->assertEquals('Article.body', $result);
- }
- /**
- * testSortDir method
- *
- * @return void
- */
- public function testSortDir()
- {
- $result = $this->Paginator->sortDir();
- $expected = 'asc';
- $this->assertEquals($expected, $result);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'Article.title')
- ->withParam('paging.Article.direction', 'desc');
- $result = $this->Paginator->sortDir();
- $this->assertEquals('desc', $result);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'Article.title')
- ->withParam('paging.Article.direction', 'asc');
- $result = $this->Paginator->sortDir();
- $this->assertEquals('asc', $result);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'title')
- ->withParam('paging.Article.direction', 'desc');
- $result = $this->Paginator->sortDir();
- $this->assertEquals('desc', $result);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'title')
- ->withParam('paging.Article.direction', 'asc');
- $result = $this->Paginator->sortDir();
- $this->assertEquals('asc', $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Article.direction', null);
- $result = $this->Paginator->sortDir('Article', ['direction' => 'asc']);
- $this->assertEquals('asc', $result);
- $result = $this->Paginator->sortDir('Article', ['direction' => 'desc']);
- $this->assertEquals('desc', $result);
- $result = $this->Paginator->sortDir('Article', ['direction' => 'asc']);
- $this->assertEquals('asc', $result);
- }
- /**
- * 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 = $this->Paginator->request
- ->withParam('paging.Article.sort', 'Article.body')
- ->withParam('paging.Article.direction', 'asc');
- $result = $this->Paginator->sortDir();
- $this->assertEquals('asc', $result);
- $result = $this->Paginator->sortDir('Article');
- $this->assertEquals('asc', $result);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'Article.body')
- ->withParam('paging.Article.direction', 'DESC');
- $result = $this->Paginator->sortDir();
- $this->assertEquals('desc', $result);
- $result = $this->Paginator->sortDir('Article');
- $this->assertEquals('desc', $result);
- }
- /**
- * testSortAdminLinks method
- *
- * @return void
- */
- public function testSortAdminLinks()
- {
- Router::reload();
- Router::connect('/admin/:controller/:action/*', ['prefix' => 'admin']);
- $request = new ServerRequest([
- 'url' => '/admin/users',
- 'params' => [
- 'plugin' => null, 'controller' => 'users', 'action' => 'index', 'prefix' => 'admin'
- ],
- 'base' => '',
- 'webroot' => '/'
- ]);
- Router::setRequestInfo($request);
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Article.page', 1);
- $result = $this->Paginator->next('Next');
- $expected = [
- 'li' => ['class' => 'next'],
- 'a' => ['href' => '/admin/users/index?page=2', 'rel' => 'next'],
- 'Next',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->options(['url' => ['param']]);
- $result = $this->Paginator->sort('title');
- $expected = [
- 'a' => ['href' => '/admin/users/index/param?sort=title&direction=asc'],
- 'Title',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->options(['url' => ['param']]);
- $result = $this->Paginator->sort('Article.title', 'Title');
- $expected = [
- 'a' => ['href' => '/admin/users/index/param?sort=Article.title&direction=asc'],
- 'Title',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * Test that generated URLs work without sort defined within the request
- *
- * @return void
- */
- public function testDefaultSortAndNoSort()
- {
- $request = new ServerRequest([
- 'url' => '/articles/',
- 'params' => [
- 'plugin' => null, 'controller' => 'articles', 'action' => 'index'
- ],
- 'base' => '',
- 'webroot' => '/'
- ]);
- Router::setRequestInfo($request);
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Article' => [
- 'page' => 1, 'current' => 3, 'count' => 13,
- 'prevPage' => false, 'nextPage' => true, 'pageCount' => 8,
- 'sortDefault' => 'Article.title', 'directionDefault' => 'ASC',
- 'sort' => null
- ]
- ]);
- $result = $this->Paginator->next('Next');
- $expected = [
- 'li' => ['class' => 'next'],
- 'a' => ['rel' => 'next', 'href' => '/articles/index?page=2'],
- 'Next',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * testUrlGeneration method
- *
- * @return void
- */
- public function testUrlGeneration()
- {
- $result = $this->Paginator->sort('controller');
- $expected = [
- 'a' => ['href' => '/index?sort=controller&direction=asc'],
- 'Controller',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->generateUrl();
- $this->assertEquals('/index', $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Article.page', 2);
- $result = $this->Paginator->generateUrl();
- $this->assertEquals('/index?page=2', $result);
- $options = ['sort' => 'Article', 'direction' => 'desc'];
- $result = $this->Paginator->generateUrl($options);
- $this->assertEquals('/index?page=2&sort=Article&direction=desc', $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Article.page', 3);
- $options = ['sort' => 'Article.name', 'direction' => 'desc'];
- $result = $this->Paginator->generateUrl($options);
- $this->assertEquals('/index?page=3&sort=Article.name&direction=desc', $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Article.page', 3);
- $options = ['sort' => 'Article.name', 'direction' => 'desc'];
- $result = $this->Paginator->generateUrl($options, null, ['escape' => false]);
- $this->assertEquals('/index?page=3&sort=Article.name&direction=desc', $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Article.page', 3);
- $options = ['sort' => 'Article.name', 'direction' => 'desc'];
- $result = $this->Paginator->generateUrl($options, null, ['fullBase' => true]);
- $this->assertEquals('http://localhost/index?page=3&sort=Article.name&direction=desc', $result);
- // @deprecated 3.3.5 Use fullBase array option instead.
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Article.page', 3);
- $options = ['sort' => 'Article.name', 'direction' => 'desc'];
- $result = $this->Paginator->generateUrl($options, null, true);
- $this->assertEquals('http://localhost/index?page=3&sort=Article.name&direction=desc', $result);
- }
- /**
- * Verify that sort links always result in a url that is page 1 (page not
- * present in the url)
- *
- * @param string $field
- * @param array $options
- * @param string $expected
- * @dataProvider urlGenerationResetsToPage1Provider
- */
- public function testUrlGenerationResetsToPage1($field, $options, $expected)
- {
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.page', 2)
- ->withParam('paging.Article.sort', 'name')
- ->withParam('paging.Article.direction', 'asc');
- $result = $this->Paginator->sort($field, null, ['url' => $options]);
- $this->assertSame($expected, $result);
- }
- /**
- * Returns data sets of:
- * * the name of the field being sorted on
- * * url paramters to pass to paginator sort
- * * expected result as a string
- *
- * @return array
- */
- public function urlGenerationResetsToPage1Provider()
- {
- return [
- 'Sorting the field currently sorted asc, asc' => [
- 'name',
- ['sort' => 'name', 'direction' => 'asc'],
- '<a class="asc" href="/index?sort=name&direction=asc">Name</a>'
- ],
- 'Sorting the field currently sorted asc, desc' => [
- 'name',
- ['sort' => 'name', 'direction' => 'desc'],
- '<a class="asc" href="/index?sort=name&direction=desc">Name</a>'
- ],
- 'Sorting other asc' => [
- 'other',
- ['sort' => 'other', 'direction' => 'asc'],
- '<a href="/index?sort=other&direction=asc">Other</a>'
- ],
- 'Sorting other desc' => [
- 'other',
- ['sort' => 'other', 'direction' => 'desc'],
- '<a href="/index?sort=other&direction=desc">Other</a>'
- ]
- ];
- }
- /**
- * test URL generation with prefix routes
- *
- * @return void
- */
- public function testGenerateUrlWithPrefixes()
- {
- Router::reload();
- Router::connect('/members/:controller/:action/*', ['prefix' => 'members']);
- Router::connect('/:controller/:action/*');
- $request = new ServerRequest([
- 'url' => '/posts/index/',
- 'params' => [
- 'plugin' => null, 'controller' => 'posts', 'action' => 'index', 'pass' => []
- ],
- 'base' => '',
- 'webroot' => '/'
- ]);
- Router::setRequestInfo($request);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.page', 2)
- ->withParam('paging.Article.prevPage', true);
- $options = ['prefix' => 'members'];
- $result = $this->Paginator->generateUrl($options);
- $expected = '/members/posts/index?page=2';
- $this->assertEquals($expected, $result);
- $result = $this->Paginator->sort('name', null, ['url' => $options]);
- $expected = [
- 'a' => ['href' => '/members/posts/index?sort=name&direction=asc'],
- 'Name',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->next('next', ['url' => $options]);
- $expected = [
- 'li' => ['class' => 'next'],
- 'a' => ['href' => '/members/posts/index?page=3', 'rel' => 'next'],
- 'next',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->prev('prev', ['url' => $options]);
- $expected = [
- 'li' => ['class' => 'prev'],
- 'a' => ['href' => '/members/posts/index', 'rel' => 'prev'],
- 'prev',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $options = ['prefix' => 'members', 'controller' => 'posts', 'sort' => 'name', 'direction' => 'desc'];
- $result = $this->Paginator->generateUrl($options);
- $expected = '/members/posts/index?page=2&sort=name&direction=desc';
- $this->assertEquals($expected, $result);
- $options = ['controller' => 'posts', 'sort' => 'Article.name', 'direction' => 'desc'];
- $result = $this->Paginator->generateUrl($options);
- $expected = '/posts/index?page=2&sort=Article.name&direction=desc';
- $this->assertEquals($expected, $result);
- }
- /**
- * test URL generation can leave prefix routes
- *
- * @return void
- */
- public function testGenerateUrlWithPrefixesLeavePrefix()
- {
- Router::reload();
- Router::connect('/members/:controller/:action/*', ['prefix' => 'members']);
- Router::connect('/:controller/:action/*');
- $request = new ServerRequest([
- 'params' => [
- 'prefix' => 'members',
- 'controller' => 'posts',
- 'action' => 'index',
- 'plugin' => null,
- 'paging' => [
- 'Articles' => ['page' => 2, 'prevPage' => true]
- ]
- ],
- 'webroot' => '/'
- ]);
- Router::setRequestInfo($request);
- $this->Paginator->request = $request;
- $result = $this->Paginator->generateUrl();
- $expected = '/members/posts/index?page=2';
- $this->assertEquals($expected, $result);
- $result = $this->Paginator->generateUrl(['prefix' => 'members']);
- $expected = '/members/posts/index?page=2';
- $this->assertEquals($expected, $result);
- $result = $this->Paginator->generateUrl(['prefix' => false]);
- $expected = '/posts/index?page=2';
- $this->assertEquals($expected, $result);
- $this->Paginator->options(['url' => ['prefix' => false]]);
- $result = $this->Paginator->generateUrl();
- $this->assertEquals($expected, $result, 'Setting prefix in options should work too.');
- }
- /**
- * test generateUrl with multiple pagination
- *
- * @return void
- */
- public function testGenerateUrlMultiplePagination()
- {
- $request = new ServerRequest([
- 'url' => '/posts/index/',
- 'params' => [
- 'plugin' => null, 'controller' => 'posts', 'action' => 'index', 'pass' => []
- ],
- 'base' => '',
- 'webroot' => '/'
- ]);
- Router::setRequestInfo($request);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.scope', 'article')
- ->withParam('paging.Article.page', 3)
- ->withParam('paging.Article.prevPage', true);
- $this->Paginator->options(['model' => 'Article']);
- $result = $this->Paginator->generateUrl([]);
- $expected = '/posts/index?article%5Bpage%5D=3';
- $this->assertEquals($expected, $result);
- $result = $this->Paginator->sort('name');
- $expected = [
- 'a' => ['href' => '/posts/index?article%5Bsort%5D=name&article%5Bdirection%5D=asc'],
- 'Name',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->next('next');
- $expected = [
- 'li' => ['class' => 'next'],
- 'a' => ['href' => '/posts/index?article%5Bpage%5D=4', 'rel' => 'next'],
- 'next',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->prev('prev');
- $expected = [
- 'li' => ['class' => 'prev'],
- 'a' => ['href' => '/posts/index?article%5Bpage%5D=2', 'rel' => 'prev'],
- 'prev',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->generateUrl(['sort' => 'name']);
- $expected = '/posts/index?article%5Bpage%5D=3&article%5Bsort%5D=name';
- $this->assertEquals($expected, $result);
- $result = $this->Paginator->generateUrl(['#' => 'foo']);
- $expected = '/posts/index?article%5Bpage%5D=3#foo';
- $this->assertEquals($expected, $result);
- }
- /**
- * test generateUrl with multiple pagination and query string values
- *
- * @return void
- */
- public function testGenerateUrlMultiplePaginationQueryStringData()
- {
- $request = new ServerRequest([
- 'url' => '/posts/index/',
- 'params' => [
- 'plugin' => null, 'controller' => 'posts', 'action' => 'index'
- ]
- ]);
- Router::setRequestInfo($request);
- $this->View->setRequest($this->Paginator->request
- ->withParam('paging.Article.scope', 'article')
- ->withParam('paging.Article.page', 3)
- ->withParam('paging.Article.prevPage', true)
- ->withQueryParams([
- 'article' => [
- 'puppy' => 'no'
- ]
- ])
- );
- // Need to run __construct to update _config['url']
- $paginator = new PaginatorHelper($this->View);
- $paginator->options(['model' => 'Article']);
- $result = $paginator->generateUrl(['sort' => 'name']);
- $expected = '/posts/index?article%5Bpage%5D=3&article%5Bsort%5D=name&article%5Bpuppy%5D=no';
- $this->assertEquals($expected, $result);
- $result = $paginator->generateUrl([]);
- $expected = '/posts/index?article%5Bpage%5D=3&article%5Bpuppy%5D=no';
- $this->assertEquals($expected, $result);
- }
- /**
- * testOptions method
- *
- * @return void
- */
- public function testOptions()
- {
- $this->Paginator->options = [];
- $this->Paginator->request = $this->Paginator->request->withAttribute('params', []);
- $options = ['paging' => ['Article' => [
- 'direction' => 'desc',
- 'sort' => 'title'
- ]]];
- $this->Paginator->options($options);
- $expected = ['Article' => [
- 'direction' => 'desc',
- 'sort' => 'title'
- ]];
- $this->assertEquals($expected, $this->Paginator->request->getParam('paging'));
- $this->Paginator->options = [];
- $this->Paginator->request = $this->Paginator->request->withAttribute('params', []);
- $options = ['Article' => [
- 'direction' => 'desc',
- 'sort' => 'title'
- ]];
- $this->Paginator->options($options);
- $this->assertEquals($expected, $this->Paginator->request->getParam('paging'));
- $options = ['paging' => ['Article' => [
- 'direction' => 'desc',
- 'sort' => 'Article.title'
- ]]];
- $this->Paginator->options($options);
- $expected = ['Article' => [
- 'direction' => 'desc',
- 'sort' => 'Article.title'
- ]];
- $this->assertEquals($expected, $this->Paginator->request->getParam('paging'));
- }
- /**
- * testPassedArgsMergingWithUrlOptions method
- *
- * @return void
- */
- public function testPassedArgsMergingWithUrlOptions()
- {
- $request = new ServerRequest([
- 'url' => '/articles/',
- 'params' => [
- 'plugin' => null, 'controller' => 'articles', 'action' => 'index', 'pass' => []
- ],
- ]);
- Router::setRequestInfo($request);
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Article' => [
- 'page' => 1, 'current' => 3, 'count' => 13,
- 'prevPage' => false, 'nextPage' => true, 'pageCount' => 8,
- 'sort' => null, 'direction' => null,
- ]
- ]);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('pass', [2])
- ->withQueryParams(['page' => 1, 'foo' => 'bar', 'x' => 'y', 'num' => 0]);
- $this->View->setRequest($this->Paginator->request);
- $this->Paginator = new PaginatorHelper($this->View);
- $result = $this->Paginator->sort('title');
- $expected = [
- 'a' => ['href' => '/articles/index/2?foo=bar&x=y&num=0&sort=title&direction=asc'],
- 'Title',
- '/a'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->numbers();
- $expected = [
- ['li' => ['class' => 'active']], '<a href=""', '1', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/articles/index/2?foo=bar&x=y&num=0&page=2']], '2', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/articles/index/2?foo=bar&x=y&num=0&page=3']], '3', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/articles/index/2?foo=bar&x=y&num=0&page=4']], '4', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/articles/index/2?foo=bar&x=y&num=0&page=5']], '5', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/articles/index/2?foo=bar&x=y&num=0&page=6']], '6', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/articles/index/2?foo=bar&x=y&num=0&page=7']], '7', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->next('Next');
- $expected = [
- 'li' => ['class' => 'next'],
- 'a' => ['href' => '/articles/index/2?foo=bar&x=y&num=0&page=2', 'rel' => 'next'],
- 'Next',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * Test that generated URLs don't include sort and direction parameters
- *
- * @return void
- */
- public function testDefaultSortRemovedFromUrl()
- {
- $request = new ServerRequest([
- 'url' => '/articles/',
- 'params' => [
- 'plugin' => null, 'controller' => 'articles', 'action' => 'index'
- ]
- ]);
- Router::setRequestInfo($request);
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Article' => [
- 'page' => 1, 'current' => 3, 'count' => 13,
- 'prevPage' => false, 'nextPage' => true, 'pageCount' => 8,
- 'sort' => 'Article.title', 'direction' => 'ASC',
- 'sortDefault' => 'Article.title', 'directionDefault' => 'ASC'
- ]
- ]);
- $result = $this->Paginator->next('Next');
- $expected = [
- 'li' => ['class' => 'next'],
- 'a' => ['rel' => 'next', 'href' => '/articles/index?page=2'],
- 'Next',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * Test the prev() method.
- *
- * @return void
- */
- public function testPrev()
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 1,
- 'current' => 3,
- 'count' => 13,
- 'prevPage' => false,
- 'nextPage' => true,
- 'pageCount' => 5,
- ]
- ]);
- $result = $this->Paginator->prev('<< Previous');
- $expected = [
- 'li' => ['class' => 'prev disabled'],
- 'a' => ['href' => '', 'onclick' => 'return false;'],
- '<< Previous',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->prev('<< Previous', ['disabledTitle' => 'Prev']);
- $expected = [
- 'li' => ['class' => 'prev disabled'],
- 'a' => ['href' => '', 'onclick' => 'return false;'],
- 'Prev',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->prev('<< Previous', ['disabledTitle' => false]);
- $this->assertEquals('', $result, 'disabled + no text = no link');
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Client.page', 2)
- ->withParam('paging.Client.prevPage', true);
- $result = $this->Paginator->prev('<< Previous');
- $expected = [
- 'li' => ['class' => 'prev'],
- 'a' => ['href' => '/index', 'rel' => 'prev'],
- '<< Previous',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->prev('Prev', [
- 'templates' => [
- 'prevActive' => '<a rel="prev" href="{{url}}">{{text}}</a>'
- ]
- ]);
- $expected = [
- 'a' => ['href' => '/index', 'rel' => 'prev'],
- 'Prev',
- '/a',
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * Test that prev() and the shared implementation underneath picks up from options
- *
- * @return void
- */
- public function testPrevWithOptions()
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 2, 'current' => 1, 'count' => 13, 'prevPage' => true,
- 'nextPage' => false, 'pageCount' => 2,
- 'limit' => 10,
- ]
- ]);
- $this->Paginator->options(['url' => [12, 'page' => 3]]);
- $result = $this->Paginator->prev('Prev', ['url' => ['foo' => 'bar']]);
- $expected = [
- 'li' => ['class' => 'prev'],
- 'a' => ['href' => '/index/12?limit=10&foo=bar', 'rel' => 'prev'],
- 'Prev',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * test the next() method.
- *
- * @return void
- */
- public function testNext()
- {
- $result = $this->Paginator->next('Next >>');
- $expected = [
- 'li' => ['class' => 'next'],
- 'a' => ['href' => '/index?page=2', 'rel' => 'next'],
- 'Next >>',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->next('Next', [
- 'templates' => [
- 'nextActive' => '<a rel="next" href="{{url}}">{{text}}</a>'
- ]
- ]);
- $expected = [
- 'a' => ['href' => '/index?page=2', 'rel' => 'next'],
- 'Next',
- '/a',
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->next('Next >>', ['escape' => false]);
- $expected = [
- 'li' => ['class' => 'next'],
- 'a' => ['href' => '/index?page=2', 'rel' => 'next'],
- 'preg:/Next >>/',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * test next() with disabled links
- *
- * @return void
- */
- public function testNextDisabled()
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 5,
- 'current' => 3,
- 'count' => 13,
- 'prevPage' => true,
- 'nextPage' => false,
- 'pageCount' => 5,
- ]
- ]);
- $result = $this->Paginator->next('Next >>');
- $expected = [
- 'li' => ['class' => 'next disabled'],
- 'a' => ['href' => '', 'onclick' => 'return false;'],
- 'Next >>',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->next('Next >>', ['disabledTitle' => 'Next']);
- $expected = [
- 'li' => ['class' => 'next disabled'],
- 'a' => ['href' => '', 'onclick' => 'return false;'],
- 'Next',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->next('Next >>', ['disabledTitle' => false]);
- $this->assertEquals('', $result, 'disabled + no text = no link');
- }
- /**
- * Test next() with a model argument.
- *
- * @return void
- */
- public function testNextAndPrevNonDefaultModel()
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 1,
- 'current' => 3,
- 'count' => 13,
- 'prevPage' => false,
- 'nextPage' => true,
- 'pageCount' => 5,
- ],
- 'Server' => [
- 'page' => 5,
- 'current' => 1,
- 'count' => 5,
- 'prevPage' => true,
- 'nextPage' => false,
- 'pageCount' => 5,
- ]
- ]);
- $result = $this->Paginator->next('Next', [
- 'model' => 'Client'
- ]);
- $expected = [
- 'li' => ['class' => 'next'],
- 'a' => ['href' => '/index?page=2', 'rel' => 'next'],
- 'Next',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->prev('Prev', [
- 'model' => 'Client'
- ]);
- $expected = '<li class="prev disabled"><a href="" onclick="return false;">Prev</a></li>';
- $this->assertEquals($expected, $result);
- $result = $this->Paginator->next('Next', [
- 'model' => 'Server'
- ]);
- $expected = '<li class="next disabled"><a href="" onclick="return false;">Next</a></li>';
- $this->assertEquals($expected, $result);
- $result = $this->Paginator->prev('Prev', [
- 'model' => 'Server'
- ]);
- $expected = [
- 'li' => ['class' => 'prev'],
- 'a' => ['href' => '/index?page=4', 'rel' => 'prev'],
- 'Prev',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * testNumbers method
- *
- * @return void
- */
- public function testNumbers()
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 8,
- 'current' => 3,
- 'count' => 30,
- 'prevPage' => false,
- 'nextPage' => 2,
- 'pageCount' => 15,
- ]
- ]);
- $result = $this->Paginator->numbers();
- $expected = [
- ['li' => []], ['a' => ['href' => '/index?page=4']], '4', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=5']], '5', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=6']], '6', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=7']], '7', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '8', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=9']], '9', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=10']], '10', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=11']], '11', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=12']], '12', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->numbers(['first' => 'first', 'last' => 'last']);
- $expected = [
- ['li' => ['class' => 'first']], ['a' => ['href' => '/index']], 'first', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4']], '4', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=5']], '5', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=6']], '6', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=7']], '7', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '8', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=9']], '9', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=10']], '10', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=11']], '11', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=12']], '12', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => ['class' => 'last']], ['a' => ['href' => '/index?page=15']], 'last', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->numbers(['first' => '2', 'last' => '8']);
- $expected = [
- ['li' => ['class' => 'first']], ['a' => ['href' => '/index']], '2', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4']], '4', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=5']], '5', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=6']], '6', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=7']], '7', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '8', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=9']], '9', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=10']], '10', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=11']], '11', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=12']], '12', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => ['class' => 'last']], ['a' => ['href' => '/index?page=15']], '8', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->numbers(['first' => '8', 'last' => '8']);
- $expected = [
- ['li' => ['class' => 'first']], ['a' => ['href' => '/index']], '8', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4']], '4', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=5']], '5', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=6']], '6', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=7']], '7', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '8', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=9']], '9', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=10']], '10', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=11']], '11', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=12']], '12', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => ['class' => 'last']], ['a' => ['href' => '/index?page=15']], '8', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 1,
- 'current' => 3,
- 'count' => 30,
- 'prevPage' => false,
- 'nextPage' => 2,
- 'pageCount' => 15,
- ]
- ]);
- $result = $this->Paginator->numbers();
- $expected = [
- ['li' => ['class' => 'active']], '<a href=""', '1', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=2']], '2', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=3']], '3', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4']], '4', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=5']], '5', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=6']], '6', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=7']], '7', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=8']], '8', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=9']], '9', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 14,
- 'current' => 3,
- 'count' => 30,
- 'prevPage' => false,
- 'nextPage' => 2,
- 'pageCount' => 15,
- ]
- ]);
- $result = $this->Paginator->numbers();
- $expected = [
- ['li' => []], ['a' => ['href' => '/index?page=7']], '7', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=8']], '8', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=9']], '9', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=10']], '10', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=11']], '11', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=12']], '12', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=13']], '13', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '14', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=15']], '15', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 2,
- 'current' => 3,
- 'count' => 27,
- 'prevPage' => false,
- 'nextPage' => 2,
- 'pageCount' => 9,
- ]
- ]);
- $result = $this->Paginator->numbers(['first' => 1]);
- $expected = [
- ['li' => []], ['a' => ['href' => '/index']], '1', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '2', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=3']], '3', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4']], '4', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=5']], '5', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=6']], '6', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=7']], '7', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=8']], '8', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=9']], '9', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->numbers(['last' => 1]);
- $expected = [
- ['li' => []], ['a' => ['href' => '/index']], '1', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '2', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=3']], '3', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4']], '4', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=5']], '5', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=6']], '6', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=7']], '7', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=8']], '8', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=9']], '9', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 15,
- 'current' => 3,
- 'count' => 30,
- 'prevPage' => false,
- 'nextPage' => 2,
- 'pageCount' => 15,
- ]
- ]);
- $result = $this->Paginator->numbers(['first' => 1]);
- $expected = [
- ['li' => []], ['a' => ['href' => '/index']], '1', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=7']], '7', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=8']], '8', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=9']], '9', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=10']], '10', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=11']], '11', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=12']], '12', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=13']], '13', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=14']], '14', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '15', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 10,
- 'current' => 3,
- 'count' => 30,
- 'prevPage' => false,
- 'nextPage' => 2,
- 'pageCount' => 15,
- ]
- ]);
- $result = $this->Paginator->numbers(['first' => 1, 'last' => 1]);
- $expected = [
- ['li' => []], ['a' => ['href' => '/index']], '1', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=6']], '6', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=7']], '7', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=8']], '8', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=9']], '9', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '10', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=11']], '11', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=12']], '12', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=13']], '13', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=14']], '14', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=15']], '15', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 6,
- 'current' => 15,
- 'count' => 623,
- 'prevPage' => 1,
- 'nextPage' => 1,
- 'pageCount' => 42,
- ]
- ]);
- $result = $this->Paginator->numbers(['first' => 1, 'last' => 1]);
- $expected = [
- ['li' => []], ['a' => ['href' => '/index']], '1', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=2']], '2', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=3']], '3', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4']], '4', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=5']], '5', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '6', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=7']], '7', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=8']], '8', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=9']], '9', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=10']], '10', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=42']], '42', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 37,
- 'current' => 15,
- 'count' => 623,
- 'prevPage' => 1,
- 'nextPage' => 1,
- 'pageCount' => 42,
- ]
- ]);
- $result = $this->Paginator->numbers(['first' => 1, 'last' => 1]);
- $expected = [
- ['li' => []], ['a' => ['href' => '/index']], '1', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=33']], '33', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=34']], '34', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=35']], '35', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=36']], '36', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '37', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=38']], '38', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=39']], '39', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=40']], '40', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=41']], '41', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=42']], '42', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * testNumbersPages method
- *
- * @return void
- */
- public function testNumbersMulti()
- {
- $expected = [
- 1 => '*1 2 3 4 5 6 7 ',
- 2 => '1 *2 3 4 5 6 7 ',
- 3 => '1 2 *3 4 5 6 7 ',
- 4 => '1 2 3 *4 5 6 7 ',
- 5 => '1 2 3 4 *5 6 7 ',
- 6 => '1 2 3 4 5 *6 7 ',
- 7 => '1 2 3 4 5 6 *7 ',
- ];
- $result = $this->getNumbersForMultiplePages(array_keys($expected), 7);
- $this->assertEquals($expected, $result);
- $result = $this->getNumbersForMultiplePages(array_keys($expected), 7, ['first' => 'F', 'last' => 'L']);
- $this->assertEquals($expected, $result);
- $expected = [
- 1 => '*1 2 3 4 5 6 7 8 9 ',
- 2 => '1 *2 3 4 5 6 7 8 9 ',
- 3 => '1 2 *3 4 5 6 7 8 9 ',
- 4 => '1 2 3 *4 5 6 7 8 9 ',
- 5 => '1 2 3 4 *5 6 7 8 9 ',
- 6 => '2 3 4 5 *6 7 8 9 10 ',
- 7 => '3 4 5 6 *7 8 9 10 11 ',
- 10 => '6 7 8 9 *10 11 12 13 14 ',
- 15 => '11 12 13 14 *15 16 17 18 19 ',
- 16 => '12 13 14 15 *16 17 18 19 20 ',
- 17 => '12 13 14 15 16 *17 18 19 20 ',
- 18 => '12 13 14 15 16 17 *18 19 20 ',
- 19 => '12 13 14 15 16 17 18 *19 20 ',
- 20 => '12 13 14 15 16 17 18 19 *20 ',
- ];
- $result = $this->getNumbersForMultiplePages(array_keys($expected), 20);
- $this->assertEquals($expected, $result);
- $expected = [
- 1 => '*1 2 3 4 5 6 7 8 9 ',
- 2 => '1 *2 3 4 5 6 7 8 9 ',
- 3 => '1 2 *3 4 5 6 7 8 9 ',
- 4 => '1 2 3 *4 5 6 7 8 9 ',
- 5 => '1 2 3 4 *5 6 7 8 9 ',
- 6 => '1 2 3 4 5 *6 7 8 9 10 ',
- 7 => '1 2 3 4 5 6 *7 8 9 10 11 ',
- 8 => '<F ... 4 5 6 7 *8 9 10 11 12 ',
- 9 => '<F ... 5 6 7 8 *9 10 11 12 13 ',
- 10 => '<F ... 6 7 8 9 *10 11 12 13 14 ',
- 15 => '<F ... 11 12 13 14 *15 16 17 18 19 ',
- 16 => '<F ... 12 13 14 15 *16 17 18 19 20 ',
- 17 => '<F ... 12 13 14 15 16 *17 18 19 20 ',
- 18 => '<F ... 12 13 14 15 16 17 *18 19 20 ',
- 19 => '<F ... 12 13 14 15 16 17 18 *19 20 ',
- 20 => '<F ... 12 13 14 15 16 17 18 19 *20 ',
- ];
- $result = $this->getNumbersForMultiplePages(array_keys($expected), 20, ['first' => 'F']);
- $this->assertEquals($expected, $result);
- $expected = [
- 1 => '*1 2 3 4 5 6 7 8 9 ',
- 2 => '1 *2 3 4 5 6 7 8 9 ',
- 3 => '1 2 *3 4 5 6 7 8 9 ',
- 4 => '1 2 3 *4 5 6 7 8 9 ',
- 5 => '1 2 3 4 *5 6 7 8 9 ',
- 6 => '1 2 3 4 5 *6 7 8 9 10 ',
- 7 => '1 2 3 4 5 6 *7 8 9 10 11 ',
- 8 => '1 2 3 4 5 6 7 *8 9 10 11 12 ',
- 9 => '1 2 ... 5 6 7 8 *9 10 11 12 13 ',
- 10 => '1 2 ... 6 7 8 9 *10 11 12 13 14 ',
- 15 => '1 2 ... 11 12 13 14 *15 16 17 18 19 ',
- 16 => '1 2 ... 12 13 14 15 *16 17 18 19 20 ',
- 17 => '1 2 ... 12 13 14 15 16 *17 18 19 20 ',
- 18 => '1 2 ... 12 13 14 15 16 17 *18 19 20 ',
- 19 => '1 2 ... 12 13 14 15 16 17 18 *19 20 ',
- 20 => '1 2 ... 12 13 14 15 16 17 18 19 *20 ',
- ];
- $result = $this->getNumbersForMultiplePages(array_keys($expected), 20, ['first' => 2]);
- $this->assertEquals($expected, $result);
- $expected = [
- 1 => '*1 2 3 4 5 6 7 8 9 ... L> ',
- 2 => '1 *2 3 4 5 6 7 8 9 ... L> ',
- 3 => '1 2 *3 4 5 6 7 8 9 ... L> ',
- 4 => '1 2 3 *4 5 6 7 8 9 ... L> ',
- 5 => '1 2 3 4 *5 6 7 8 9 ... L> ',
- 6 => '2 3 4 5 *6 7 8 9 10 ... L> ',
- 7 => '3 4 5 6 *7 8 9 10 11 ... L> ',
- 8 => '4 5 6 7 *8 9 10 11 12 ... L> ',
- 9 => '5 6 7 8 *9 10 11 12 13 ... L> ',
- 10 => '6 7 8 9 *10 11 12 13 14 ... L> ',
- 11 => '7 8 9 10 *11 12 13 14 15 ... L> ',
- 12 => '8 9 10 11 *12 13 14 15 16 ... L> ',
- 13 => '9 10 11 12 *13 14 15 16 17 ... L> ',
- 14 => '10 11 12 13 *14 15 16 17 18 19 20 ',
- 15 => '11 12 13 14 *15 16 17 18 19 20 ',
- 16 => '12 13 14 15 *16 17 18 19 20 ',
- 17 => '12 13 14 15 16 *17 18 19 20 ',
- 18 => '12 13 14 15 16 17 *18 19 20 ',
- 19 => '12 13 14 15 16 17 18 *19 20 ',
- 20 => '12 13 14 15 16 17 18 19 *20 ',
- ];
- $result = $this->getNumbersForMultiplePages(array_keys($expected), 20, ['last' => 'L']);
- $this->assertEquals($expected, $result);
- $expected = [
- 1 => '*1 2 3 4 5 6 7 8 9 ... L> ',
- 2 => '1 *2 3 4 5 6 7 8 9 ... L> ',
- 3 => '1 2 *3 4 5 6 7 8 9 ... L> ',
- 4 => '1 2 3 *4 5 6 7 8 9 ... L> ',
- 5 => '1 2 3 4 *5 6 7 8 9 ... L> ',
- 6 => '1 2 3 4 5 *6 7 8 9 10 ... L> ',
- 7 => '1 2 3 4 5 6 *7 8 9 10 11 ... L> ',
- 8 => '<F ... 4 5 6 7 *8 9 10 11 12 ... L> ',
- 9 => '<F ... 5 6 7 8 *9 10 11 12 13 ... L> ',
- 10 => '<F ... 6 7 8 9 *10 11 12 13 14 ... L> ',
- 11 => '<F ... 7 8 9 10 *11 12 13 14 15 ... L> ',
- 12 => '<F ... 8 9 10 11 *12 13 14 15 16 ... L> ',
- 13 => '<F ... 9 10 11 12 *13 14 15 16 17 ... L> ',
- 14 => '<F ... 10 11 12 13 *14 15 16 17 18 19 20 ',
- 15 => '<F ... 11 12 13 14 *15 16 17 18 19 20 ',
- 16 => '<F ... 12 13 14 15 *16 17 18 19 20 ',
- 17 => '<F ... 12 13 14 15 16 *17 18 19 20 ',
- 18 => '<F ... 12 13 14 15 16 17 *18 19 20 ',
- 19 => '<F ... 12 13 14 15 16 17 18 *19 20 ',
- 20 => '<F ... 12 13 14 15 16 17 18 19 *20 ',
- ];
- $result = $this->getNumbersForMultiplePages(array_keys($expected), 20, ['first' => 'F', 'last' => 'L']);
- $this->assertEquals($expected, $result);
- $expected = [
- 1 => '*1 2 3 4 5 6 7 8 9 ... 19 20 ',
- 2 => '1 *2 3 4 5 6 7 8 9 ... 19 20 ',
- 3 => '1 2 *3 4 5 6 7 8 9 ... 19 20 ',
- 4 => '1 2 3 *4 5 6 7 8 9 ... 19 20 ',
- 5 => '1 2 3 4 *5 6 7 8 9 ... 19 20 ',
- 6 => '1 2 3 4 5 *6 7 8 9 10 ... 19 20 ',
- 7 => '1 2 3 4 5 6 *7 8 9 10 11 ... 19 20 ',
- 8 => '1 2 3 4 5 6 7 *8 9 10 11 12 ... 19 20 ',
- 9 => '1 2 ... 5 6 7 8 *9 10 11 12 13 ... 19 20 ',
- 10 => '1 2 ... 6 7 8 9 *10 11 12 13 14 ... 19 20 ',
- 11 => '1 2 ... 7 8 9 10 *11 12 13 14 15 ... 19 20 ',
- 12 => '1 2 ... 8 9 10 11 *12 13 14 15 16 ... 19 20 ',
- 13 => '1 2 ... 9 10 11 12 *13 14 15 16 17 18 19 20 ',
- 14 => '1 2 ... 10 11 12 13 *14 15 16 17 18 19 20 ',
- 15 => '1 2 ... 11 12 13 14 *15 16 17 18 19 20 ',
- 16 => '1 2 ... 12 13 14 15 *16 17 18 19 20 ',
- 17 => '1 2 ... 12 13 14 15 16 *17 18 19 20 ',
- 18 => '1 2 ... 12 13 14 15 16 17 *18 19 20 ',
- 19 => '1 2 ... 12 13 14 15 16 17 18 *19 20 ',
- 20 => '1 2 ... 12 13 14 15 16 17 18 19 *20 ',
- ];
- $result = $this->getNumbersForMultiplePages(array_keys($expected), 20, ['first' => 2, 'last' => 2]);
- $this->assertEquals($expected, $result);
- $expected = [
- 1 => '*1 2 3 4 5 6 7 8 9 ... 19 20 ',
- 2 => '1 *2 3 4 5 6 7 8 9 ... 19 20 ',
- 3 => '1 2 *3 4 5 6 7 8 9 ... 19 20 ',
- 4 => '1 2 3 *4 5 6 7 8 9 ... 19 20 ',
- 5 => '1 2 3 4 *5 6 7 8 9 ... 19 20 ',
- 6 => '2 3 4 5 *6 7 8 9 10 ... 19 20 ',
- 7 => '3 4 5 6 *7 8 9 10 11 ... 19 20 ',
- 8 => '4 5 6 7 *8 9 10 11 12 ... 19 20 ',
- 9 => '5 6 7 8 *9 10 11 12 13 ... 19 20 ',
- 10 => '6 7 8 9 *10 11 12 13 14 ... 19 20 ',
- 11 => '7 8 9 10 *11 12 13 14 15 ... 19 20 ',
- 12 => '8 9 10 11 *12 13 14 15 16 ... 19 20 ',
- 13 => '9 10 11 12 *13 14 15 16 17 18 19 20 ',
- 14 => '10 11 12 13 *14 15 16 17 18 19 20 ',
- 15 => '11 12 13 14 *15 16 17 18 19 20 ',
- 16 => '12 13 14 15 *16 17 18 19 20 ',
- 17 => '12 13 14 15 16 *17 18 19 20 ',
- 18 => '12 13 14 15 16 17 *18 19 20 ',
- 19 => '12 13 14 15 16 17 18 *19 20 ',
- 20 => '12 13 14 15 16 17 18 19 *20 ',
- ];
- $result = $this->getNumbersForMultiplePages(array_keys($expected), 20, ['last' => 2]);
- $this->assertEquals($expected, $result);
- }
- /**
- * Retrieves result of PaginatorHelper::numbers for multiple pages
- *
- * @param int[] $pagesToCheck Pages to get result for
- * @param int $pageCount Number of total pages
- * @param array $options Options for PaginatorHelper::numbers
- * @return string[]
- */
- protected function getNumbersForMultiplePages($pagesToCheck, $pageCount, $options = [])
- {
- $options['templates'] = [
- 'first' => '<{{text}} ',
- 'last' => '{{text}}> ',
- 'number' => '{{text}} ',
- 'current' => '*{{text}} ',
- 'ellipsis' => '... ',
- ];
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 1,
- 'pageCount' => $pageCount,
- ]
- ]);
- $result = [];
- foreach ($pagesToCheck as $page) {
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Client.page', $page);
- $result[$page] = $this->Paginator->numbers($options);
- }
- return $result;
- }
- /**
- * Test that numbers() lets you overwrite templates.
- *
- * The templates file has no li elements.
- *
- * @return void
- */
- public function testNumbersTemplates()
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 8,
- 'current' => 3,
- 'count' => 30,
- 'prevPage' => false,
- 'nextPage' => 2,
- 'pageCount' => 15,
- ]
- ]);
- $result = $this->Paginator->numbers(['templates' => 'htmlhelper_tags']);
- $expected = [
- ['a' => ['href' => '/index?page=4']], '4', '/a',
- ['a' => ['href' => '/index?page=5']], '5', '/a',
- ['a' => ['href' => '/index?page=6']], '6', '/a',
- ['a' => ['href' => '/index?page=7']], '7', '/a',
- 'span' => ['class' => 'active'], '8', '/span',
- ['a' => ['href' => '/index?page=9']], '9', '/a',
- ['a' => ['href' => '/index?page=10']], '10', '/a',
- ['a' => ['href' => '/index?page=11']], '11', '/a',
- ['a' => ['href' => '/index?page=12']], '12', '/a',
- ];
- $this->assertHtml($expected, $result);
- $this->assertContains(
- '<li',
- $this->Paginator->templater()->get('current'),
- 'Templates were not restored.'
- );
- }
- /**
- * Test modulus option for numbers()
- *
- * @return void
- */
- public function testNumbersModulus()
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 1,
- 'current' => 10,
- 'count' => 30,
- 'prevPage' => false,
- 'nextPage' => 2,
- 'pageCount' => 3,
- ]
- ]);
- $result = $this->Paginator->numbers(['modulus' => 10]);
- $expected = [
- ['li' => ['class' => 'active']], '<a href=""', '1', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=2']], '2', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=3']], '3', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->numbers(['modulus' => 3]);
- $expected = [
- ['li' => ['class' => 'active']], '<a href=""', '1', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=2']], '2', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=3']], '3', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 4895,
- 'current' => 10,
- 'count' => 48962,
- 'prevPage' => 1,
- 'nextPage' => 1,
- 'pageCount' => 4897,
- ]
- ]);
- $result = $this->Paginator->numbers(['first' => 2, 'modulus' => 2, 'last' => 2]);
- $expected = [
- ['li' => []], ['a' => ['href' => '/index']], '1', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=2']], '2', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4894']], '4,894', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '4,895', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4896']], '4,896', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4897']], '4,897', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Client.page', 3);
- $result = $this->Paginator->numbers(['first' => 2, 'modulus' => 2, 'last' => 2]);
- $expected = [
- ['li' => []], ['a' => ['href' => '/index']], '1', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=2']], '2', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '3', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4']], '4', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4896']], '4,896', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4897']], '4,897', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->numbers(['first' => 5, 'modulus' => 5, 'last' => 5]);
- $expected = [
- ['li' => []], ['a' => ['href' => '/index']], '1', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=2']], '2', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '3', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4']], '4', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=5']], '5', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=6']], '6', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4893']], '4,893', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4894']], '4,894', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4895']], '4,895', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4896']], '4,896', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4897']], '4,897', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Client.page', 4893);
- $result = $this->Paginator->numbers(['first' => 5, 'modulus' => 4, 'last' => 5]);
- $expected = [
- ['li' => []], ['a' => ['href' => '/index']], '1', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=2']], '2', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=3']], '3', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4']], '4', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=5']], '5', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4891']], '4,891', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4892']], '4,892', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '4,893', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4894']], '4,894', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4895']], '4,895', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4896']], '4,896', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4897']], '4,897', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Client.page', 58);
- $result = $this->Paginator->numbers(['first' => 5, 'modulus' => 4, 'last' => 5]);
- $expected = [
- ['li' => []], ['a' => ['href' => '/index']], '1', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=2']], '2', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=3']], '3', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4']], '4', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=5']], '5', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=56']], '56', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=57']], '57', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '58', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=59']], '59', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=60']], '60', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4893']], '4,893', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4894']], '4,894', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4895']], '4,895', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4896']], '4,896', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4897']], '4,897', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Client.page', 5);
- $result = $this->Paginator->numbers(['first' => 5, 'modulus' => 4, 'last' => 5]);
- $expected = [
- ['li' => []], ['a' => ['href' => '/index']], '1', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=2']], '2', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=3']], '3', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4']], '4', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '5', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=6']], '6', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=7']], '7', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4893']], '4,893', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4894']], '4,894', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4895']], '4,895', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4896']], '4,896', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4897']], '4,897', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Client.page', 3);
- $result = $this->Paginator->numbers(['first' => 2, 'modulus' => 2, 'last' => 2]);
- $expected = [
- ['li' => []], ['a' => ['href' => '/index']], '1', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=2']], '2', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '3', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4']], '4', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4896']], '4,896', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4897']], '4,897', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Client.page', 3);
- $result = $this->Paginator->numbers(['first' => 2, 'modulus' => 0, 'last' => 2]);
- $expected = [
- ['li' => []], ['a' => ['href' => '/index']], '1', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=2']], '2', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '3', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4896']], '4,896', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4897']], '4,897', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * Test modulus option for numbers()
- *
- * @return void
- */
- public function testNumbersModulusMulti()
- {
- $expected = [
- 1 => '*1 2 3 4 ',
- 2 => '1 *2 3 4 ',
- 3 => '1 2 *3 4 ',
- 4 => '2 3 *4 5 ',
- 5 => '3 4 *5 6 ',
- 6 => '4 5 *6 7 ',
- 7 => '4 5 6 *7 ',
- ];
- $result = $this->getNumbersForMultiplePages(array_keys($expected), 7, ['modulus' => 3]);
- $this->assertEquals($expected, $result);
- $expected = [
- 1 => '*1 2 3 4 ... L> ',
- 2 => '1 *2 3 4 ... L> ',
- 3 => '1 2 *3 4 ... L> ',
- 4 => '1 2 3 *4 5 6 7 ',
- 5 => '1 2 3 4 *5 6 7 ',
- 6 => '<F ... 4 5 *6 7 ',
- 7 => '<F ... 4 5 6 *7 ',
- ];
- $result = $this->getNumbersForMultiplePages(array_keys($expected), 7, ['modulus' => 3, 'first' => 'F', 'last' => 'L']);
- $this->assertEquals($expected, $result);
- $expected = [
- 1 => '*1 2 3 ... 19 20 ',
- 2 => '1 *2 3 ... 19 20 ',
- 3 => '1 2 *3 4 ... 19 20 ',
- 4 => '1 2 3 *4 5 ... 19 20 ',
- 5 => '1 2 3 4 *5 6 ... 19 20 ',
- 6 => '1 2 ... 5 *6 7 ... 19 20 ',
- 15 => '1 2 ... 14 *15 16 ... 19 20 ',
- 16 => '1 2 ... 15 *16 17 18 19 20 ',
- 17 => '1 2 ... 16 *17 18 19 20 ',
- 18 => '1 2 ... 17 *18 19 20 ',
- 19 => '1 2 ... 18 *19 20 ',
- 20 => '1 2 ... 18 19 *20 ',
- ];
- $result = $this->getNumbersForMultiplePages(array_keys($expected), 20, ['first' => 2, 'modulus' => 2, 'last' => 2]);
- $this->assertEquals($expected, $result);
- $expected = [
- 1 => '*1 2 3 4 5 ... 16 17 18 19 20 ',
- 2 => '1 *2 3 4 5 ... 16 17 18 19 20 ',
- 3 => '1 2 *3 4 5 ... 16 17 18 19 20 ',
- 4 => '1 2 3 *4 5 6 ... 16 17 18 19 20 ',
- 5 => '1 2 3 4 *5 6 7 ... 16 17 18 19 20 ',
- 6 => '1 2 3 4 5 *6 7 8 ... 16 17 18 19 20 ',
- 7 => '1 2 3 4 5 6 *7 8 9 ... 16 17 18 19 20 ',
- 8 => '1 2 3 4 5 6 7 *8 9 10 ... 16 17 18 19 20 ',
- 9 => '1 2 3 4 5 6 7 8 *9 10 11 ... 16 17 18 19 20 ',
- 10 => '1 2 3 4 5 ... 8 9 *10 11 12 ... 16 17 18 19 20 ',
- 11 => '1 2 3 4 5 ... 9 10 *11 12 13 ... 16 17 18 19 20 ',
- 12 => '1 2 3 4 5 ... 10 11 *12 13 14 15 16 17 18 19 20 ',
- 13 => '1 2 3 4 5 ... 11 12 *13 14 15 16 17 18 19 20 ',
- 14 => '1 2 3 4 5 ... 12 13 *14 15 16 17 18 19 20 ',
- 15 => '1 2 3 4 5 ... 13 14 *15 16 17 18 19 20 ',
- 16 => '1 2 3 4 5 ... 14 15 *16 17 18 19 20 ',
- 17 => '1 2 3 4 5 ... 15 16 *17 18 19 20 ',
- 18 => '1 2 3 4 5 ... 16 17 *18 19 20 ',
- 19 => '1 2 3 4 5 ... 16 17 18 *19 20 ',
- 20 => '1 2 3 4 5 ... 16 17 18 19 *20 ',
- ];
- $result = $this->getNumbersForMultiplePages(array_keys($expected), 20, ['first' => 5, 'modulus' => 4, 'last' => 5]);
- $this->assertEquals($expected, $result);
- }
- /**
- * Tests that disabling modulus displays all page links.
- *
- * @return void
- */
- public function testModulusDisabled()
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 4,
- 'current' => 2,
- 'count' => 30,
- 'prevPage' => 1,
- 'nextPage' => 1,
- 'pageCount' => 6,
- ]
- ]);
- $result = $this->Paginator->numbers(['modulus' => false]);
- $expected = [
- ['li' => []], '<a href="/index"', '1', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=2']], '2', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=3']], '3', '/a', '/li',
- ['li' => ['class' => 'active']], ['a' => ['href' => '']], '4', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=5']], '5', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=6']], '6', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * Test that numbers() with url options.
- *
- * @return void
- */
- public function testNumbersWithUrlOptions()
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 8,
- 'current' => 3,
- 'count' => 30,
- 'prevPage' => false,
- 'nextPage' => 2,
- 'pageCount' => 15,
- ]
- ]);
- $result = $this->Paginator->numbers(['url' => ['#' => 'foo']]);
- $expected = [
- ['li' => []], ['a' => ['href' => '/index?page=4#foo']], '4', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=5#foo']], '5', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=6#foo']], '6', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=7#foo']], '7', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '8', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=9#foo']], '9', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=10#foo']], '10', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=11#foo']], '11', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=12#foo']], '12', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 3,
- 'current' => 10,
- 'count' => 48962,
- 'prevPage' => 1,
- 'nextPage' => 1,
- 'pageCount' => 4897,
- ]
- ]);
- $result = $this->Paginator->numbers([
- 'first' => 2,
- 'modulus' => 2,
- 'last' => 2,
- 'url' => ['foo' => 'bar']]);
- $expected = [
- ['li' => []], ['a' => ['href' => '/index?foo=bar']], '1', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=2&foo=bar']], '2', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '3', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4&foo=bar']], '4', '/a', '/li',
- ['li' => ['class' => 'ellipsis']], '…', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4896&foo=bar']], '4,896', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/index?page=4897&foo=bar']], '4,897', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * test numbers() with routing parameters.
- *
- * @return void
- */
- public function testNumbersRouting()
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 2,
- 'current' => 2,
- 'count' => 30,
- 'prevPage' => false,
- 'nextPage' => 3,
- 'pageCount' => 3,
- ]
- ]);
- $request = new ServerRequest([
- 'params' => ['controller' => 'clients', 'action' => 'index', 'plugin' => null],
- 'url' => '/clients/index?page=2'
- ]);
- Router::setRequestInfo($request);
- $result = $this->Paginator->numbers();
- $expected = [
- ['li' => []], ['a' => ['href' => '/clients/index']], '1', '/a', '/li',
- ['li' => ['class' => 'active']], '<a href=""', '2', '/a', '/li',
- ['li' => []], ['a' => ['href' => '/clients/index?page=3']], '3', '/a', '/li',
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * Test that numbers() works with the non default model.
- *
- * @return void
- */
- public function testNumbersNonDefaultModel()
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 1,
- 'current' => 3,
- 'count' => 13,
- 'prevPage' => false,
- 'nextPage' => true,
- 'pageCount' => 5,
- ],
- 'Server' => [
- 'page' => 5,
- 'current' => 1,
- 'count' => 5,
- 'prevPage' => true,
- 'nextPage' => false,
- 'pageCount' => 5,
- ]
- ]);
- $result = $this->Paginator->numbers(['model' => 'Server']);
- $this->assertContains('<li class="active"><a href="">5</a></li>', $result);
- $this->assertNotContains('<li class="active"><a href="">1</a></li>', $result);
- $result = $this->Paginator->numbers(['model' => 'Client']);
- $this->assertContains('<li class="active"><a href="">1</a></li>', $result);
- $this->assertNotContains('<li class="active"><a href="">5</a></li>', $result);
- }
- /**
- * test first() and last() with tag options
- *
- * @return void
- */
- public function testFirstAndLastTag()
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Article.page', 2);
- $result = $this->Paginator->first('<<');
- $expected = [
- 'li' => ['class' => 'first'],
- 'a' => ['href' => '/index'],
- '<<',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->first('5');
- $expected = [
- 'li' => ['class' => 'first'],
- 'a' => ['href' => '/index'],
- '5',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->last(2);
- $expected = [
- '<li',
- ['a' => ['href' => '/index?page=6']], '6', '/a',
- '/li',
- '<li',
- ['a' => ['href' => '/index?page=7']], '7', '/a',
- '/li',
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->last('9');
- $expected = [
- 'li' => ['class' => 'last'],
- 'a' => ['href' => '/index?page=7'],
- '9',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * test that on the last page you don't get a link ot the last page.
- *
- * @return void
- */
- public function testLastNoOutput()
- {
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.page', 15)
- ->withParam('paging.Article.pageCount', 15);
- $result = $this->Paginator->last();
- $expected = '';
- $this->assertEquals($expected, $result);
- }
- /**
- * test first() with a the model parameter.
- *
- * @return void
- */
- public function testFirstNonDefaultModel()
- {
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.page', 1)
- ->withParam('paging.Client', [
- 'page' => 3,
- 'current' => 3,
- 'count' => 13,
- 'prevPage' => false,
- 'nextPage' => true,
- 'pageCount' => 5,
- ]);
- $result = $this->Paginator->first('first', ['model' => 'Article']);
- $this->assertEquals('', $result);
- $result = $this->Paginator->first('first', ['model' => 'Client']);
- $expected = [
- 'li' => ['class' => 'first'],
- 'a' => ['href' => '/index'],
- 'first',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * test first() on the first page.
- *
- * @return void
- */
- public function testFirstEmpty()
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Article.page', 1);
- $result = $this->Paginator->first();
- $expected = '';
- $this->assertEquals($expected, $result);
- }
- /**
- * test first() and options()
- *
- * @return void
- */
- public function testFirstFullBaseUrl()
- {
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.page', 3)
- ->withParam('paging.Article.direction', 'DESC')
- ->withParam('paging.Article.sort', 'Article.title');
- $this->Paginator->options(['url' => ['_full' => true]]);
- $result = $this->Paginator->first();
- $expected = [
- 'li' => ['class' => 'first'],
- ['a' => [
- 'href' => Configure::read('App.fullBaseUrl') . '/index?sort=Article.title&direction=DESC'
- ]],
- '<< first',
- '/a',
- '/li',
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * test first() on the fence-post
- *
- * @return void
- */
- public function testFirstBoundaries()
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Article.page', 3);
- $result = $this->Paginator->first();
- $expected = [
- 'li' => ['class' => 'first'],
- 'a' => ['href' => '/index'],
- '<< first',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->first(2);
- $expected = [
- '<li',
- ['a' => ['href' => '/index']], '1', '/a',
- '/li',
- '<li',
- ['a' => ['href' => '/index?page=2']], '2', '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Article.page', 2);
- $result = $this->Paginator->first(3);
- $this->assertEquals('', $result, 'When inside the first links range, no links should be made');
- }
- /**
- * test params() method
- *
- * @return void
- */
- public function testParams()
- {
- $result = $this->Paginator->params();
- $this->assertArrayHasKey('page', $result);
- $this->assertArrayHasKey('pageCount', $result);
- $result = $this->Paginator->params('Nope');
- $this->assertEquals([], $result);
- }
- /**
- * test param() method
- *
- * @return void
- */
- public function testParam()
- {
- $result = $this->Paginator->param('count');
- $this->assertSame(62, $result);
- $result = $this->Paginator->param('imaginary');
- $this->assertNull($result);
- }
- /**
- * test last() method
- *
- * @return void
- */
- public function testLast()
- {
- $result = $this->Paginator->last();
- $expected = [
- 'li' => ['class' => 'last'],
- 'a' => ['href' => '/index?page=7'],
- 'last >>',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->last(1);
- $expected = [
- '<li',
- 'a' => ['href' => '/index?page=7'],
- '7',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- $this->Paginator->request = $this->Paginator->request->withParam('paging.Article.page', 6);
- $result = $this->Paginator->last(2);
- $expected = [
- '<li',
- ['a' => ['href' => '/index?page=6']], '6', '/a',
- '/li',
- '<li',
- ['a' => ['href' => '/index?page=7']], '7', '/a',
- '/li',
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->last(3);
- $this->assertEquals('', $result, 'When inside the last links range, no links should be made');
- }
- /**
- * test the options for last()
- *
- * @return void
- */
- public function testLastOptions()
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 4,
- 'current' => 3,
- 'count' => 30,
- 'prevPage' => false,
- 'nextPage' => 2,
- 'pageCount' => 15,
- 'sort' => 'Client.name',
- 'direction' => 'DESC',
- ]
- ]);
- $result = $this->Paginator->last();
- $expected = [
- 'li' => ['class' => 'last'],
- 'a' => [
- 'href' => '/index?page=15&sort=Client.name&direction=DESC',
- ],
- 'last >>', '/a',
- '/li',
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->last(1);
- $expected = [
- '<li',
- ['a' => ['href' => '/index?page=15&sort=Client.name&direction=DESC']], '15', '/a',
- '/li',
- ];
- $this->assertHtml($expected, $result);
- $result = $this->Paginator->last(2);
- $expected = [
- '<li',
- ['a' => ['href' => '/index?page=14&sort=Client.name&direction=DESC']], '14', '/a',
- '/li',
- '<li',
- ['a' => ['href' => '/index?page=15&sort=Client.name&direction=DESC']], '15', '/a',
- '/li',
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * test last() with a the model parameter.
- *
- * @return void
- */
- public function testLastNonDefaultModel()
- {
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.page', 7)
- ->withParam('paging.Client', [
- 'page' => 3,
- 'current' => 3,
- 'count' => 13,
- 'prevPage' => false,
- 'nextPage' => true,
- 'pageCount' => 5,
- ]);
- $result = $this->Paginator->last('last', ['model' => 'Article']);
- $this->assertEquals('', $result);
- $result = $this->Paginator->last('last', ['model' => 'Client']);
- $expected = [
- 'li' => ['class' => 'last'],
- 'a' => ['href' => '/index?page=5'],
- 'last',
- '/a',
- '/li'
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * testCounter method
- *
- * @return void
- */
- public function testCounter()
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 1,
- 'current' => 3,
- 'count' => 13,
- 'perPage' => 3,
- 'prevPage' => false,
- 'nextPage' => true,
- 'pageCount' => 5,
- 'limit' => 3,
- 'sort' => 'Client.name',
- 'order' => 'DESC',
- ]
- ]);
- $input = 'Page {{page}} of {{pages}}, showing {{current}} records out of {{count}} total, ';
- $input .= 'starting on record {{start}}, ending on {{end}}';
- $expected = 'Page 1 of 5, showing 3 records out of 13 total, starting on record 1, ';
- $expected .= 'ending on 3';
- $result = $this->Paginator->counter($input);
- $this->assertEquals($expected, $result);
- $result = $this->Paginator->counter(['format' => 'pages']);
- $expected = '1 of 5';
- $this->assertEquals($expected, $result);
- $result = $this->Paginator->counter(['format' => 'range']);
- $expected = '1 - 3 of 13';
- $this->assertEquals($expected, $result);
- $result = $this->Paginator->counter('Showing {{page}} of {{pages}} {{model}}');
- $this->assertEquals('Showing 1 of 5 clients', $result);
- }
- /**
- * Tests that numbers are formatted according to the locale when using counter()
- *
- * @return void
- */
- public function testCounterBigNumbers()
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Client' => [
- 'page' => 1523,
- 'current' => 1230,
- 'count' => 234567,
- 'perPage' => 3000,
- 'prevPage' => false,
- 'nextPage' => true,
- 'pageCount' => 1000,
- 'limit' => 5000,
- 'sort' => 'Client.name',
- 'order' => 'DESC',
- ]
- ]);
- $input = 'Page {{page}} of {{pages}}, showing {{current}} records out of {{count}} total, ';
- $input .= 'starting on record {{start}}, ending on {{end}}';
- $expected = 'Page 1,523 of 1,000, showing 1,230 records out of 234,567 total, ';
- $expected .= 'starting on record 4,566,001, ending on 234,567';
- $result = $this->Paginator->counter($input);
- $this->assertEquals($expected, $result);
- I18n::setLocale('de-DE');
- $expected = 'Page 1.523 of 1.000, showing 1.230 records out of 234.567 total, ';
- $expected .= 'starting on record 4.566.001, ending on 234.567';
- $result = $this->Paginator->counter($input);
- $this->assertEquals($expected, $result);
- }
- /**
- * testHasPage method
- *
- * @return void
- */
- public function testHasPage()
- {
- $result = $this->Paginator->hasPage('Article', 15);
- $this->assertFalse($result);
- $result = $this->Paginator->hasPage('UndefinedModel', 2);
- $this->assertFalse($result);
- $result = $this->Paginator->hasPage('Article', 2);
- $this->assertTrue($result);
- $result = $this->Paginator->hasPage(2);
- $this->assertTrue($result);
- }
- /**
- * testNextLinkUsingDotNotation method
- *
- * @return void
- */
- public function testNextLinkUsingDotNotation()
- {
- $request = new ServerRequest([
- 'url' => '/accounts/',
- 'params' => [
- 'plugin' => null, 'controller' => 'accounts', 'action' => 'index'
- ]
- ]);
- Router::setRequestInfo($request);
- $this->Paginator->request = $this->Paginator->request
- ->withParam('paging.Article.sort', 'Article.title')
- ->withParam('paging.Article.direction', 'asc')
- ->withParam('paging.Article.page', 1);
- $test = ['url' => [
- 'page' => '1',
- 'sort' => 'Article.title',
- 'direction' => 'asc',
- ]];
- $this->Paginator->options($test);
- $result = $this->Paginator->next('Next');
- $expected = [
- 'li' => ['class' => 'next'],
- 'a' => [
- 'href' => '/accounts/index?page=2&sort=Article.title&direction=asc',
- 'rel' => 'next'
- ],
- 'Next',
- '/a',
- '/li',
- ];
- $this->assertHtml($expected, $result);
- }
- /**
- * test the current() method
- *
- * @return void
- */
- public function testCurrent()
- {
- $result = $this->Paginator->current();
- $this->assertEquals($this->Paginator->request->getParam('paging.Article.page'), $result);
- $result = $this->Paginator->current('Incorrect');
- $this->assertEquals(1, $result);
- }
- /**
- * test the total() method
- *
- * @return void
- */
- public function testTotal()
- {
- $result = $this->Paginator->total();
- $this->assertSame($this->Paginator->request->getParam('paging.Article.pageCount'), $result);
- $result = $this->Paginator->total('Incorrect');
- $this->assertSame(0, $result);
- }
- /**
- * test the defaultModel() method
- *
- * @return void
- */
- public function testNoDefaultModel()
- {
- $this->Paginator->request = new ServerRequest();
- $this->assertNull($this->Paginator->defaultModel());
- $this->Paginator->defaultModel('Article');
- $this->assertEquals('Article', $this->Paginator->defaultModel());
- $this->Paginator->options(['model' => 'Client']);
- $this->assertEquals('Client', $this->Paginator->defaultModel());
- }
- /**
- * test the numbers() method when there is only one page
- *
- * @return void
- */
- public function testWithOnePage()
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Article' => [
- 'page' => 1,
- 'current' => 2,
- 'count' => 2,
- 'prevPage' => false,
- 'nextPage' => true,
- 'pageCount' => 1,
- ]
- ]);
- $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 = $this->Paginator->request->withParam('paging', [
- 'Article' => [
- 'page' => 0,
- 'current' => 0,
- 'count' => 0,
- 'perPage' => 10,
- 'prevPage' => false,
- 'nextPage' => false,
- 'pageCount' => 0,
- 'limit' => 10,
- ]
- ]);
- $result = $this->Paginator->counter(['format' => 'pages']);
- $expected = '0 of 1';
- $this->assertEquals($expected, $result);
- }
- /**
- * Test data for meta()
- *
- * @return array
- */
- public function dataMetaProvider()
- {
- return [
- // Verifies that no next and prev links are created for single page results.
- [1, false, false, 1, [], ''],
- // Verifies that first and last pages are created for single page results.
- [1, false, false, 1, ['first' => true, 'last' => true], '<link href="http://localhost/index" rel="first"/>' .
- '<link href="http://localhost/index" rel="last"/>'],
- // Verifies that first page is created for single page results.
- [1, false, false, 1, ['first' => true], '<link href="http://localhost/index" rel="first"/>'],
- // Verifies that last page is created for single page results.
- [1, false, false, 1, ['last' => true], '<link href="http://localhost/index" rel="last"/>'],
- // Verifies that page 1 only has a next link.
- [1, false, true, 2, [], '<link href="http://localhost/index?page=2" rel="next"/>'],
- // Verifies that page 1 only has next, first and last link.
- [1, false, true, 2, ['first' => true, 'last' => true], '<link href="http://localhost/index?page=2" rel="next"/>' .
- '<link href="http://localhost/index" rel="first"/>' .
- '<link href="http://localhost/index?page=2" rel="last"/>'],
- // Verifies that page 1 only has next and first link.
- [1, false, true, 2, ['first' => true], '<link href="http://localhost/index?page=2" rel="next"/>' .
- '<link href="http://localhost/index" rel="first"/>'],
- // Verifies that page 1 only has next and last link.
- [1, false, true, 2, ['last' => true], '<link href="http://localhost/index?page=2" rel="next"/>' .
- '<link href="http://localhost/index?page=2" rel="last"/>'],
- // Verifies that the last page only has a prev link.
- [2, true, false, 2, [], '<link href="http://localhost/index" rel="prev"/>'],
- // Verifies that the last page only has a prev, first and last link.
- [2, true, false, 2, ['first' => true, 'last' => true], '<link href="http://localhost/index" rel="prev"/>' .
- '<link href="http://localhost/index" rel="first"/>' .
- '<link href="http://localhost/index?page=2" rel="last"/>'],
- // Verifies that a page in the middle has both links.
- [5, true, true, 10, [], '<link href="http://localhost/index?page=4" rel="prev"/>' .
- '<link href="http://localhost/index?page=6" rel="next"/>'],
- // Verifies that a page in the middle has both links.
- [5, true, true, 10, ['first' => true, 'last' => true], '<link href="http://localhost/index?page=4" rel="prev"/>' .
- '<link href="http://localhost/index?page=6" rel="next"/>' .
- '<link href="http://localhost/index" rel="first"/>' .
- '<link href="http://localhost/index?page=10" rel="last"/>']
- ];
- }
- /**
- * @param int $page
- * @param int $prevPage
- * @param int $nextPage
- * @param int $pageCount
- * @param array $options
- * @param string $expected
- * @dataProvider dataMetaProvider
- */
- public function testMeta($page, $prevPage, $nextPage, $pageCount, $options, $expected)
- {
- $this->Paginator->request = $this->Paginator->request->withParam('paging', [
- 'Article' => [
- 'page' => $page,
- 'prevPage' => $prevPage,
- 'nextPage' => $nextPage,
- 'pageCount' => $pageCount,
- ]
- ]);
- $result = $this->Paginator->meta($options);
- $this->assertSame($expected, $result);
- $this->assertEquals('', $this->View->fetch('meta'));
- $result = $this->Paginator->meta($options + ['block' => true]);
- $this->assertNull($result);
- $this->assertSame($expected, $this->View->fetch('meta'));
- }
- /**
- * test the limitControl() method
- *
- * @return void
- */
- public function testLimitControl()
- {
- $out = $this->Paginator->limitControl([1 => 1]);
- $expected = [
- ['form' => ['method' => 'get', 'accept-charset' => 'utf-8', 'action' => '/']],
- ['div' => ['class' => 'input select']],
- ['label' => ['for' => 'limit']],
- 'View',
- '/label',
- ['select' => ['name' => 'limit', 'id' => 'limit', 'onChange' => 'this.form.submit()']],
- ['option' => ['value' => '1']],
- '1',
- '/option',
- '/select',
- '/div',
- '/form'
- ];
- $this->assertHtml($expected, $out);
- $out = $this->Paginator->limitControl([1 => 1, 5 => 5], null, ['class' => 'form-control']);
- $expected = [
- ['form' => ['method' => 'get', 'accept-charset' => 'utf-8', 'action' => '/']],
- ['div' => ['class' => 'input select']],
- ['label' => ['for' => 'limit']],
- 'View',
- '/label',
- ['select' => ['name' => 'limit', 'id' => 'limit', 'onChange' => 'this.form.submit()', 'class' => 'form-control']],
- ['option' => ['value' => '1']],
- '1',
- '/option',
- ['option' => ['value' => '5']],
- '5',
- '/option',
- '/select',
- '/div',
- '/form'
- ];
- $this->assertHtml($expected, $out);
- $out = $this->Paginator->limitControl([], null, ['class' => 'form-control']);
- $expected = [
- ['form' => ['method' => 'get', 'accept-charset' => 'utf-8', 'action' => '/']],
- ['div' => ['class' => 'input select']],
- ['label' => ['for' => 'limit']],
- 'View',
- '/label',
- ['select' => ['name' => 'limit', 'id' => 'limit', 'onChange' => 'this.form.submit()', 'class' => 'form-control']],
- ['option' => ['value' => '20']],
- '20',
- '/option',
- ['option' => ['value' => '50']],
- '50',
- '/option',
- ['option' => ['value' => '100']],
- '100',
- '/option',
- '/select',
- '/div',
- '/form'
- ];
- $this->assertHtml($expected, $out);
- $out = $this->Paginator->limitControl();
- $expected = [
- ['form' => ['method' => 'get', 'accept-charset' => 'utf-8', 'action' => '/']],
- ['div' => ['class' => 'input select']],
- ['label' => ['for' => 'limit']],
- 'View',
- '/label',
- ['select' => ['name' => 'limit', 'id' => 'limit', 'onChange' => 'this.form.submit()']],
- ['option' => ['value' => '20']],
- '20',
- '/option',
- ['option' => ['value' => '50']],
- '50',
- '/option',
- ['option' => ['value' => '100']],
- '100',
- '/option',
- '/select',
- '/div',
- '/form'
- ];
- $this->assertHtml($expected, $out);
- }
- }
|