| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Paginator
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- /**
- * @see Zend_Paginator
- */
- require_once 'Zend/Paginator.php';
- /**
- * @see Zend_Paginator_Adapter_Null
- */
- require_once 'Zend/Paginator/Adapter/Null.php';
- /**
- * @see PHPUnit_Framework_TestCase
- */
- /**
- * @category Zend
- * @package Zend_Paginator
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Paginator
- */
- class Zend_Paginator_Adapter_NullTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var Zend_Paginator_Adapter_Array
- */
- private $_adapter;
- /**
- * Prepares the environment before running a test.
- */
- protected function setUp ()
- {
- parent::setUp();
- $this->_adapter = new Zend_Paginator_Adapter_Null(101);
- }
- /**
- * Cleans up the environment after running a test.
- */
- protected function tearDown()
- {
- $this->_adapter = null;
- parent::tearDown();
- }
- public function testGetsItems()
- {
- $actual = $this->_adapter->getItems(0, 10);
- $this->assertEquals(array_fill(0, 10, null), $actual);
- }
- public function testReturnsCorrectCount()
- {
- $this->assertEquals(101, $this->_adapter->count());
- }
- /**
- * @group ZF-3873
- */
- public function testAdapterReturnsCorrectValues()
- {
- $paginator = Zend_Paginator::factory(2);
- $paginator->setCurrentPageNumber(1);
- $paginator->setItemCountPerPage(5);
- $pages = $paginator->getPages();
- $this->assertEquals(2, $pages->currentItemCount);
- $this->assertEquals(2, $pages->lastItemNumber);
- $paginator = Zend_Paginator::factory(19);
- $paginator->setCurrentPageNumber(4);
- $paginator->setItemCountPerPage(5);
- $pages = $paginator->getPages();
- $this->assertEquals(4, $pages->currentItemCount);
- $this->assertEquals(19, $pages->lastItemNumber);
- }
- /**
- * @group ZF-4151
- */
- public function testEmptySet() {
- $this->_adapter = new Zend_Paginator_Adapter_Null(0);
- $actual = $this->_adapter->getItems(0, 10);
- $this->assertEquals(array(), $actual);
- }
-
- /**
- * Verify that the fix for ZF-4151 doesn't create an OBO error
- */
- public function testSetOfOne() {
- $this->_adapter = new Zend_Paginator_Adapter_Null(1);
- $actual = $this->_adapter->getItems(0, 10);
- $this->assertEquals(array_fill(0, 1, null), $actual);
- }
- }
|