| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- <?php
- declare(strict_types=1);
- /**
- * 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 3.5.0
- * @license https://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Datasource\Paging;
- use Cake\Core\Exception\CakeException;
- use Cake\ORM\Entity;
- use Cake\TestSuite\TestCase;
- class NumericPaginatorTest extends TestCase
- {
- use PaginatorTestTrait;
- /**
- * fixtures property
- *
- * @var list<string>
- */
- protected array $fixtures = [
- 'core.Posts', 'core.Articles', 'core.Tags', 'core.ArticlesTags',
- 'core.Authors', 'core.AuthorsTags',
- ];
- /**
- * test paginate() and custom find, to make sure the correct count is returned.
- */
- public function testPaginateCustomFind(): void
- {
- $titleExtractor = function ($result) {
- $ids = [];
- foreach ($result as $record) {
- $ids[] = $record->title;
- }
- return $ids;
- };
- $table = $this->getTableLocator()->get('PaginatorPosts');
- $data = ['author_id' => 3, 'title' => 'Fourth Post', 'body' => 'Article Body, unpublished', 'published' => 'N'];
- $result = $table->save(new Entity($data));
- $this->assertNotEmpty($result);
- $result = $this->Paginator->paginate($table);
- $this->assertCount(4, $result, '4 rows should come back');
- $this->assertEquals(['First Post', 'Second Post', 'Third Post', 'Fourth Post'], $titleExtractor($result));
- $pagingParams = $result->pagingParams();
- $this->assertSame(4, $pagingParams['count']);
- $this->assertSame(4, $pagingParams['totalCount']);
- $settings = ['finder' => 'published'];
- $result = $this->Paginator->paginate($table, [], $settings);
- $this->assertCount(3, $result, '3 rows should come back');
- $this->assertEquals(['First Post', 'Second Post', 'Third Post'], $titleExtractor($result));
- $pagingParams = $result->pagingParams();
- $this->assertSame(3, $pagingParams['count']);
- $this->assertSame(3, $pagingParams['totalCount']);
- $settings = ['finder' => 'published', 'limit' => 2, 'page' => 2];
- $result = $this->Paginator->paginate($table, [], $settings);
- $this->assertCount(1, $result, '1 rows should come back');
- $this->assertEquals(['Third Post'], $titleExtractor($result));
- $pagingParams = $result->pagingParams();
- $this->assertSame(1, $pagingParams['count']);
- $this->assertSame(3, $pagingParams['totalCount']);
- $this->assertSame(2, $pagingParams['pageCount']);
- $settings = ['finder' => 'published', 'limit' => 2];
- $result = $this->Paginator->paginate($table, [], $settings);
- $this->assertCount(2, $result, '2 rows should come back');
- $this->assertEquals(['First Post', 'Second Post'], $titleExtractor($result));
- $pagingParams = $result->pagingParams();
- $this->assertSame(2, $pagingParams['count']);
- $this->assertSame(3, $pagingParams['totalCount']);
- $this->assertSame(2, $pagingParams['pageCount']);
- $this->assertTrue($pagingParams['hasNextPage']);
- $this->assertFalse($pagingParams['hasPrevPage']);
- $this->assertSame(2, $pagingParams['perPage']);
- $this->assertNull($pagingParams['limit']);
- }
- /**
- * Test that special paginate types are called and that the type param doesn't leak out into defaults or options.
- */
- public function testPaginateCustomFinder(): void
- {
- $settings = [
- 'PaginatorPosts' => [
- 'finder' => 'published',
- 'maxLimit' => 10,
- ],
- ];
- $table = $this->getTableLocator()->get('PaginatorPosts');
- $this->assertSame(3, $table->find('published')->count());
- $table->updateAll(['published' => 'N'], ['id' => 2]);
- $result = $this->Paginator->paginate($table, [], $settings);
- $pagingParams = $result->pagingParams();
- $this->assertSame(1, $pagingParams['start']);
- $this->assertSame(2, $pagingParams['end']);
- $this->assertSame(2, $pagingParams['totalCount']);
- $this->assertFalse($pagingParams['hasNextPage']);
- }
- /**
- * test direction setting.
- */
- public function testPaginateDefaultDirection(): void
- {
- $settings = [
- 'PaginatorPosts' => [
- 'order' => ['Other.title' => 'ASC'],
- ],
- ];
- $table = $this->getTableLocator()->get('PaginatorPosts');
- $result = $this->Paginator->paginate($table, [], $settings);
- $pagingParams = $result->pagingParams();
- $this->assertSame('Other.title', $pagingParams['sort']);
- $this->assertNull($pagingParams['direction']);
- }
- /**
- * https://github.com/cakephp/cakephp/issues/16909
- *
- * @return void
- */
- public function testPaginateOrderWithNumericKeyAndSortSpecified(): void
- {
- $this->expectException(CakeException::class);
- $this->expectExceptionMessage(
- 'The `order` config must be an associative array.'
- . ' Found invalid value with numeric key: `PaginatorPosts.title ASC`'
- );
- $settings = [
- 'PaginatorPosts' => [
- 'order' => ['PaginatorPosts.title ASC'],
- ],
- ];
- $table = $this->getTableLocator()->get('PaginatorPosts');
- $this->Paginator->paginate($table, ['sort' => 'title'], $settings);
- }
- public function testDeprecationWarningForExtraSettings(): void
- {
- $this->expectWarningMessageMatches(
- '/Passing query options as paginator settings is no longer supported/',
- function () {
- $table = $this->getTableLocator()->get('PaginatorPosts');
- $this->Paginator->paginate($table, [], ['fields' => ['title']]);
- }
- );
- }
- }
|