mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-04 06:37:55 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			109 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			109 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @link http://www.yiiframework.com/
 | 
						|
 * @copyright Copyright (c) 2008 Yii Software LLC
 | 
						|
 * @license http://www.yiiframework.com/license/
 | 
						|
 */
 | 
						|
 | 
						|
namespace yiiunit\framework\data;
 | 
						|
 | 
						|
use yii\data\Pagination;
 | 
						|
use yiiunit\TestCase;
 | 
						|
 | 
						|
/**
 | 
						|
 * @group data
 | 
						|
 */
 | 
						|
class PaginationTest extends TestCase
 | 
						|
{
 | 
						|
    protected function setUp()
 | 
						|
    {
 | 
						|
        parent::setUp();
 | 
						|
        $this->mockWebApplication([
 | 
						|
            'components' => [
 | 
						|
                'urlManager' => [
 | 
						|
                    'scriptUrl' => '/index.php',
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Data provider for [[testCreateUrl()]].
 | 
						|
     * @return array test data
 | 
						|
     */
 | 
						|
    public function dataProviderCreateUrl()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            [
 | 
						|
                2,
 | 
						|
                null,
 | 
						|
                '/index.php?r=item%2Flist&page=3',
 | 
						|
                null,
 | 
						|
            ],
 | 
						|
            [
 | 
						|
                2,
 | 
						|
                5,
 | 
						|
                '/index.php?r=item%2Flist&page=3&per-page=5',
 | 
						|
                null,
 | 
						|
            ],
 | 
						|
            [
 | 
						|
                2,
 | 
						|
                null,
 | 
						|
                '/index.php?r=item%2Flist&q=test&page=3',
 | 
						|
                ['q' => 'test'],
 | 
						|
            ],
 | 
						|
            [
 | 
						|
                2,
 | 
						|
                5,
 | 
						|
                '/index.php?r=item%2Flist&q=test&page=3&per-page=5',
 | 
						|
                ['q' => 'test'],
 | 
						|
            ],
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @dataProvider dataProviderCreateUrl
 | 
						|
     *
 | 
						|
     * @param int $page
 | 
						|
     * @param int $pageSize
 | 
						|
     * @param string $expectedUrl
 | 
						|
     * @param array $params
 | 
						|
     */
 | 
						|
    public function testCreateUrl($page, $pageSize, $expectedUrl, $params)
 | 
						|
    {
 | 
						|
        $pagination = new Pagination();
 | 
						|
        $pagination->route = 'item/list';
 | 
						|
        $pagination->params = $params;
 | 
						|
        $this->assertEquals($expectedUrl, $pagination->createUrl($page, $pageSize));
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @depends testCreateUrl
 | 
						|
     */
 | 
						|
    public function testForcePageParam()
 | 
						|
    {
 | 
						|
        $pagination = new Pagination();
 | 
						|
        $pagination->route = 'item/list';
 | 
						|
 | 
						|
        $pagination->forcePageParam = true;
 | 
						|
        $this->assertEquals('/index.php?r=item%2Flist&page=1', $pagination->createUrl(0));
 | 
						|
 | 
						|
        $pagination->forcePageParam = false;
 | 
						|
        $this->assertEquals('/index.php?r=item%2Flist', $pagination->createUrl(0));
 | 
						|
    }
 | 
						|
 | 
						|
    public function testValidatePage()
 | 
						|
    {
 | 
						|
        $pagination = new Pagination();
 | 
						|
        $pagination->validatePage = true;
 | 
						|
        $pagination->pageSize = 10;
 | 
						|
        $pagination->totalCount = 100;
 | 
						|
 | 
						|
        $pagination->setPage(999, true);
 | 
						|
        $this->assertEquals(9, $pagination->getPage());
 | 
						|
 | 
						|
        $pagination->setPage(999, false);
 | 
						|
        $this->assertEquals(999, $pagination->getPage());
 | 
						|
    }
 | 
						|
}
 |