2011-03-31 03:01:04 +02:00
|
|
|
<?php
|
2016-06-15 06:03:16 +02:00
|
|
|
|
2016-10-14 03:30:05 +02:00
|
|
|
namespace SilverStripe\ORM\Tests;
|
|
|
|
|
2016-06-15 06:03:16 +02:00
|
|
|
use SilverStripe\ORM\ArrayList;
|
|
|
|
use SilverStripe\ORM\DataObject;
|
2016-08-19 00:51:35 +02:00
|
|
|
use SilverStripe\ORM\PaginatedList;
|
|
|
|
use SilverStripe\Dev\SapphireTest;
|
2017-03-24 03:50:39 +01:00
|
|
|
use SilverStripe\ORM\Queries\SQLSelect;
|
2016-10-14 03:30:05 +02:00
|
|
|
use SilverStripe\ORM\Tests\DataObjectTest\Player;
|
2016-08-19 00:51:35 +02:00
|
|
|
use SilverStripe\View\ArrayData;
|
2017-09-27 07:41:08 +02:00
|
|
|
use SilverStripe\Control\HTTPRequest;
|
2016-08-19 00:51:35 +02:00
|
|
|
|
2011-03-31 03:01:04 +02:00
|
|
|
/**
|
2016-08-19 00:51:35 +02:00
|
|
|
* Tests for the {@link SilverStripe\ORM\PaginatedList} class.
|
2011-03-31 03:01:04 +02:00
|
|
|
*/
|
2016-12-16 05:34:21 +01:00
|
|
|
class PaginatedListTest extends SapphireTest
|
|
|
|
{
|
|
|
|
|
|
|
|
protected static $fixture_file = 'DataObjectTest.yml';
|
|
|
|
|
2017-06-22 12:50:45 +02:00
|
|
|
public static function getExtraDataObjects()
|
2016-12-16 05:34:21 +01:00
|
|
|
{
|
|
|
|
return array_merge(
|
|
|
|
DataObjectTest::$extra_data_objects,
|
|
|
|
ManyManyListTest::$extra_data_objects
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testPageStart()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
|
|
|
$this->assertEquals(0, $list->getPageStart(), 'The start defaults to 0.');
|
|
|
|
|
|
|
|
$list->setPageStart(10);
|
|
|
|
$this->assertEquals(10, $list->getPageStart(), 'You can set the page start.');
|
|
|
|
|
2020-04-20 19:58:09 +02:00
|
|
|
$list = new PaginatedList(new ArrayList(), ['start' => 50]);
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertEquals(50, $list->getPageStart(), 'The page start can be read from the request.');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetTotalItems()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
|
|
|
$this->assertEquals(0, $list->getTotalItems());
|
|
|
|
|
|
|
|
$list->setTotalItems(10);
|
|
|
|
$this->assertEquals(10, $list->getTotalItems());
|
|
|
|
|
|
|
|
$list = new PaginatedList(
|
|
|
|
new ArrayList(
|
2020-04-20 19:58:09 +02:00
|
|
|
[
|
|
|
|
new ArrayData([]),
|
|
|
|
new ArrayData([])
|
|
|
|
]
|
2016-12-16 05:34:21 +01:00
|
|
|
)
|
|
|
|
);
|
|
|
|
$this->assertEquals(2, $list->getTotalItems());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSetPaginationFromQuery()
|
|
|
|
{
|
2017-03-24 03:50:39 +01:00
|
|
|
$query = $this->getMockBuilder(SQLSelect::class)->getMock();
|
2016-12-16 05:34:21 +01:00
|
|
|
$query->expects($this->once())
|
|
|
|
->method('getLimit')
|
2020-04-20 19:58:09 +02:00
|
|
|
->will($this->returnValue(['limit' => 15, 'start' => 30]));
|
2016-12-16 05:34:21 +01:00
|
|
|
$query->expects($this->once())
|
|
|
|
->method('unlimitedRowCount')
|
|
|
|
->will($this->returnValue(100));
|
|
|
|
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
|
|
|
$list->setPaginationFromQuery($query);
|
|
|
|
|
|
|
|
$this->assertEquals(15, $list->getPageLength());
|
|
|
|
$this->assertEquals(30, $list->getPageStart());
|
|
|
|
$this->assertEquals(100, $list->getTotalItems());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSetCurrentPage()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
|
|
|
$list->setPageLength(10);
|
|
|
|
$list->setCurrentPage(10);
|
|
|
|
|
|
|
|
$this->assertEquals(10, $list->CurrentPage());
|
|
|
|
$this->assertEquals(90, $list->getPageStart());
|
|
|
|
|
|
|
|
// Test disabled paging
|
|
|
|
$list->setPageLength(0);
|
|
|
|
$this->assertEquals(1, $list->CurrentPage());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetIterator()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(
|
2017-09-27 10:16:59 +02:00
|
|
|
new ArrayList([
|
2020-04-20 19:58:09 +02:00
|
|
|
new DataObject(['Num' => 1]),
|
|
|
|
new DataObject(['Num' => 2]),
|
|
|
|
new DataObject(['Num' => 3]),
|
|
|
|
new DataObject(['Num' => 4]),
|
|
|
|
new DataObject(['Num' => 5]),
|
2017-09-27 10:16:59 +02:00
|
|
|
])
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
$list->setPageLength(2);
|
|
|
|
|
2017-09-27 09:25:37 +02:00
|
|
|
$this->assertListEquals(
|
2020-04-20 19:58:09 +02:00
|
|
|
[['Num' => 1], ['Num' => 2]],
|
2017-09-27 09:25:37 +02:00
|
|
|
ArrayList::create($list->getIterator()->getInnerIterator()->getArrayCopy())
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
$list->setCurrentPage(2);
|
2017-09-27 09:25:37 +02:00
|
|
|
$this->assertListEquals(
|
2020-04-20 19:58:09 +02:00
|
|
|
[['Num' => 3], ['Num' => 4]],
|
2017-09-27 09:25:37 +02:00
|
|
|
ArrayList::create($list->getIterator()->getInnerIterator()->getArrayCopy())
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
$list->setCurrentPage(3);
|
2017-09-27 09:25:37 +02:00
|
|
|
$this->assertListEquals(
|
2020-04-20 19:58:09 +02:00
|
|
|
[['Num' => 5]],
|
2017-09-27 09:25:37 +02:00
|
|
|
ArrayList::create($list->getIterator()->getInnerIterator()->getArrayCopy())
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
$list->setCurrentPage(999);
|
2017-09-27 09:25:37 +02:00
|
|
|
$this->assertListEquals(
|
2020-04-20 19:58:09 +02:00
|
|
|
[],
|
2017-09-27 09:25:37 +02:00
|
|
|
ArrayList::create($list->getIterator()->getInnerIterator()->getArrayCopy())
|
|
|
|
);
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
// Test disabled paging
|
|
|
|
$list->setPageLength(0);
|
|
|
|
$list->setCurrentPage(1);
|
2017-09-27 09:25:37 +02:00
|
|
|
$this->assertListEquals(
|
2017-09-27 10:16:59 +02:00
|
|
|
[
|
2020-04-20 19:58:09 +02:00
|
|
|
['Num' => 1],
|
|
|
|
['Num' => 2],
|
|
|
|
['Num' => 3],
|
|
|
|
['Num' => 4],
|
|
|
|
['Num' => 5],
|
2017-09-27 10:16:59 +02:00
|
|
|
],
|
2017-09-27 09:25:37 +02:00
|
|
|
ArrayList::create($list->getIterator()->getInnerIterator()->getArrayCopy())
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
// Test with dataobjectset
|
|
|
|
$players = Player::get();
|
|
|
|
$list = new PaginatedList($players);
|
|
|
|
$list->setPageLength(1);
|
|
|
|
$list->getIterator();
|
|
|
|
$this->assertEquals(
|
|
|
|
4,
|
|
|
|
$list->getTotalItems(),
|
|
|
|
'Getting an iterator should not trim the list to the page length.'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testPages()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
|
|
|
$list->setPageLength(10);
|
|
|
|
$list->setTotalItems(50);
|
|
|
|
|
2017-09-27 10:16:59 +02:00
|
|
|
$this->assertCount(5, $list->Pages());
|
|
|
|
$this->assertCount(3, $list->Pages(3));
|
|
|
|
$this->assertCount(5, $list->Pages(15));
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
$list->setCurrentPage(3);
|
|
|
|
|
2020-04-20 19:58:09 +02:00
|
|
|
$expectAll = [
|
|
|
|
['PageNum' => 1],
|
|
|
|
['PageNum' => 2],
|
|
|
|
['PageNum' => 3, 'CurrentBool' => true],
|
|
|
|
['PageNum' => 4],
|
|
|
|
['PageNum' => 5],
|
|
|
|
];
|
2017-09-27 09:25:37 +02:00
|
|
|
$this->assertListEquals($expectAll, $list->Pages());
|
2016-12-16 05:34:21 +01:00
|
|
|
|
2020-04-20 19:58:09 +02:00
|
|
|
$expectLimited = [
|
|
|
|
['PageNum' => 2],
|
|
|
|
['PageNum' => 3, 'CurrentBool' => true],
|
|
|
|
['PageNum' => 4],
|
|
|
|
];
|
2017-09-27 09:25:37 +02:00
|
|
|
$this->assertListEquals($expectLimited, $list->Pages(3));
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
// Disable paging
|
|
|
|
$list->setPageLength(0);
|
2020-04-20 19:58:09 +02:00
|
|
|
$expectAll = [
|
|
|
|
['PageNum' => 1, 'CurrentBool' => true],
|
|
|
|
];
|
2017-09-27 09:25:37 +02:00
|
|
|
$this->assertListEquals($expectAll, $list->Pages());
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testPaginationSummary()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
|
|
|
|
|
|
|
$list->setPageLength(10);
|
|
|
|
$list->setTotalItems(250);
|
|
|
|
$list->setCurrentPage(6);
|
|
|
|
|
2020-04-20 19:58:09 +02:00
|
|
|
$expect = [
|
|
|
|
['PageNum' => 1],
|
|
|
|
['PageNum' => null],
|
|
|
|
['PageNum' => 4],
|
|
|
|
['PageNum' => 5],
|
|
|
|
['PageNum' => 6, 'CurrentBool' => true],
|
|
|
|
['PageNum' => 7],
|
|
|
|
['PageNum' => 8],
|
|
|
|
['PageNum' => null],
|
|
|
|
['PageNum' => 25],
|
|
|
|
];
|
2017-09-27 09:25:37 +02:00
|
|
|
$this->assertListEquals($expect, $list->PaginationSummary(4));
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
// Disable paging
|
|
|
|
$list->setPageLength(0);
|
2020-04-20 19:58:09 +02:00
|
|
|
$expect = [
|
|
|
|
['PageNum' => 1, 'CurrentBool' => true]
|
|
|
|
];
|
2017-09-27 09:25:37 +02:00
|
|
|
$this->assertListEquals($expect, $list->PaginationSummary(4));
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testLimitItems()
|
|
|
|
{
|
|
|
|
$list = new ArrayList(range(1, 50));
|
|
|
|
$list = new PaginatedList($list);
|
|
|
|
|
|
|
|
$list->setCurrentPage(3);
|
2017-09-27 10:16:59 +02:00
|
|
|
$this->assertCount(10, $list->getIterator()->getInnerIterator());
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
$list->setLimitItems(false);
|
2017-09-27 10:16:59 +02:00
|
|
|
$this->assertCount(50, $list->getIterator()->getInnerIterator());
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testCurrentPage()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
|
|
|
$list->setTotalItems(50);
|
|
|
|
|
|
|
|
$this->assertEquals(1, $list->CurrentPage());
|
|
|
|
$list->setPageStart(10);
|
|
|
|
$this->assertEquals(2, $list->CurrentPage());
|
|
|
|
$list->setPageStart(40);
|
|
|
|
$this->assertEquals(5, $list->CurrentPage());
|
|
|
|
|
|
|
|
// Disable paging
|
|
|
|
$list->setPageLength(0);
|
|
|
|
$this->assertEquals(1, $list->CurrentPage());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testTotalPages()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
|
|
|
|
|
|
|
$list->setPageLength(1);
|
|
|
|
$this->assertEquals(0, $list->TotalPages());
|
|
|
|
|
|
|
|
$list->setTotalItems(1);
|
|
|
|
$this->assertEquals(1, $list->TotalPages());
|
|
|
|
|
|
|
|
$list->setTotalItems(5);
|
|
|
|
$this->assertEquals(5, $list->TotalPages());
|
|
|
|
|
|
|
|
// Disable paging
|
|
|
|
$list->setPageLength(0);
|
|
|
|
$this->assertEquals(1, $list->TotalPages());
|
|
|
|
|
|
|
|
$list->setTotalItems(0);
|
|
|
|
$this->assertEquals(0, $list->TotalPages());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testMoreThanOnePage()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
|
|
|
|
|
|
|
$list->setPageLength(1);
|
|
|
|
$list->setTotalItems(1);
|
|
|
|
$this->assertFalse($list->MoreThanOnePage());
|
|
|
|
|
|
|
|
$list->setTotalItems(2);
|
|
|
|
$this->assertTrue($list->MoreThanOnePage());
|
|
|
|
|
|
|
|
// Disable paging
|
|
|
|
$list->setPageLength(0);
|
|
|
|
$this->assertFalse($list->MoreThanOnePage());
|
|
|
|
}
|
|
|
|
|
2021-11-07 21:26:21 +01:00
|
|
|
public function testFirstPage()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
|
|
|
$this->assertTrue($list->FirstPage());
|
|
|
|
$list->setCurrentPage(2);
|
|
|
|
$this->assertFalse($list->FirstPage());
|
|
|
|
}
|
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
public function testNotFirstPage()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
|
|
|
$this->assertFalse($list->NotFirstPage());
|
|
|
|
$list->setCurrentPage(2);
|
|
|
|
$this->assertTrue($list->NotFirstPage());
|
2021-11-07 21:26:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testLastPage()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
|
|
|
$list->setTotalItems(50);
|
|
|
|
|
|
|
|
$this->assertFalse($list->LastPage());
|
|
|
|
$list->setCurrentPage(5);
|
|
|
|
$this->assertTrue($list->LastPage());
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testNotLastPage()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
|
|
|
$list->setTotalItems(50);
|
|
|
|
|
|
|
|
$this->assertTrue($list->NotLastPage());
|
|
|
|
$list->setCurrentPage(5);
|
|
|
|
$this->assertFalse($list->NotLastPage());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testFirstItem()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
|
|
|
$this->assertEquals(1, $list->FirstItem());
|
|
|
|
$list->setPageStart(10);
|
|
|
|
$this->assertEquals(11, $list->FirstItem());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testLastItem()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
|
|
|
$list->setPageLength(10);
|
|
|
|
$list->setTotalItems(25);
|
|
|
|
|
|
|
|
$list->setCurrentPage(1);
|
|
|
|
$this->assertEquals(10, $list->LastItem());
|
|
|
|
$list->setCurrentPage(2);
|
|
|
|
$this->assertEquals(20, $list->LastItem());
|
|
|
|
$list->setCurrentPage(3);
|
|
|
|
$this->assertEquals(25, $list->LastItem());
|
|
|
|
|
|
|
|
// Disable paging
|
|
|
|
$list->setPageLength(0);
|
|
|
|
$this->assertEquals(25, $list->LastItem());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testFirstLink()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString('start=0', $list->FirstLink());
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
|
2017-09-27 10:16:59 +02:00
|
|
|
public function testFirstLinkContainsCurrentGetParameters()
|
|
|
|
{
|
2017-09-27 07:41:08 +02:00
|
|
|
$request = new HTTPRequest(
|
|
|
|
'GET',
|
2017-09-27 10:16:59 +02:00
|
|
|
'http://example.com/my-cool-page',
|
2017-09-27 07:41:08 +02:00
|
|
|
['awesomeness' => 'nextLevel', 'start' => 20]
|
|
|
|
);
|
|
|
|
$list = new PaginatedList(new ArrayList(), $request);
|
|
|
|
$list->setTotalItems(50);
|
|
|
|
$list->setPageLength(10);
|
|
|
|
|
2017-09-27 10:16:59 +02:00
|
|
|
// check the query string has correct parameters
|
2022-04-14 03:12:59 +02:00
|
|
|
$queryString = parse_url($list->FirstLink() ?? '', PHP_URL_QUERY);
|
|
|
|
parse_str($queryString ?? '', $queryParams);
|
2017-09-27 10:16:59 +02:00
|
|
|
|
|
|
|
$this->assertArrayHasKey('awesomeness', $queryParams);
|
|
|
|
$this->assertequals('nextLevel', $queryParams['awesomeness']);
|
|
|
|
$this->assertArrayHasKey('start', $queryParams);
|
|
|
|
$this->assertequals(0, $queryParams['start']);
|
2017-09-27 07:41:08 +02:00
|
|
|
}
|
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
public function testLastLink()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
|
|
|
$list->setPageLength(10);
|
|
|
|
$list->setTotalItems(100);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString('start=90', $list->LastLink());
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
// Disable paging
|
|
|
|
$list->setPageLength(0);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString('start=0', $list->LastLink());
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
|
2017-09-27 10:16:59 +02:00
|
|
|
public function testLastLinkContainsCurrentGetParameters()
|
|
|
|
{
|
2017-09-27 07:41:08 +02:00
|
|
|
$request = new HTTPRequest(
|
|
|
|
'GET',
|
2017-09-27 10:16:59 +02:00
|
|
|
'http://example.com/my-cool-page',
|
2017-09-27 07:41:08 +02:00
|
|
|
['awesomeness' => 'nextLevel']
|
|
|
|
);
|
|
|
|
$list = new PaginatedList(new ArrayList(), $request);
|
|
|
|
$list->setTotalItems(50);
|
|
|
|
$list->setPageLength(10);
|
|
|
|
|
2017-09-27 10:16:59 +02:00
|
|
|
// check the query string has correct parameters
|
2022-04-14 03:12:59 +02:00
|
|
|
$queryString = parse_url($list->LastLink() ?? '', PHP_URL_QUERY);
|
|
|
|
parse_str($queryString ?? '', $queryParams);
|
2017-09-27 10:16:59 +02:00
|
|
|
|
|
|
|
$this->assertArrayHasKey('awesomeness', $queryParams);
|
|
|
|
$this->assertequals('nextLevel', $queryParams['awesomeness']);
|
|
|
|
$this->assertArrayHasKey('start', $queryParams);
|
|
|
|
$this->assertequals(40, $queryParams['start']);
|
2017-09-27 07:41:08 +02:00
|
|
|
}
|
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
public function testNextLink()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
|
|
|
$list->setTotalItems(50);
|
|
|
|
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString('start=10', $list->NextLink());
|
2016-12-16 05:34:21 +01:00
|
|
|
$list->setCurrentPage(2);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString('start=20', $list->NextLink());
|
2016-12-16 05:34:21 +01:00
|
|
|
$list->setCurrentPage(3);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString('start=30', $list->NextLink());
|
2016-12-16 05:34:21 +01:00
|
|
|
$list->setCurrentPage(4);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString('start=40', $list->NextLink());
|
2016-12-16 05:34:21 +01:00
|
|
|
$list->setCurrentPage(5);
|
|
|
|
$this->assertNull($list->NextLink());
|
|
|
|
|
|
|
|
// Disable paging
|
|
|
|
$list->setCurrentPage(1);
|
|
|
|
$list->setPageLength(0);
|
|
|
|
$this->assertNull($list->NextLink());
|
|
|
|
}
|
|
|
|
|
2017-09-27 10:16:59 +02:00
|
|
|
public function testNextLinkContainsCurrentGetParameters()
|
|
|
|
{
|
2017-09-27 07:41:08 +02:00
|
|
|
$request = new HTTPRequest(
|
|
|
|
'GET',
|
2017-09-27 10:16:59 +02:00
|
|
|
'http://example.com/my-cool-page',
|
2017-09-27 07:41:08 +02:00
|
|
|
['awesomeness' => 'nextLevel']
|
|
|
|
);
|
|
|
|
$list = new PaginatedList(new ArrayList(), $request);
|
|
|
|
$list->setTotalItems(50);
|
|
|
|
$list->setPageLength(10);
|
|
|
|
|
2017-09-27 10:16:59 +02:00
|
|
|
// check the query string has correct parameters
|
2022-04-14 03:12:59 +02:00
|
|
|
$queryString = parse_url($list->NextLink() ?? '', PHP_URL_QUERY);
|
|
|
|
parse_str($queryString ?? '', $queryParams);
|
2017-09-27 10:16:59 +02:00
|
|
|
|
|
|
|
$this->assertArrayHasKey('awesomeness', $queryParams);
|
|
|
|
$this->assertequals('nextLevel', $queryParams['awesomeness']);
|
|
|
|
$this->assertArrayHasKey('start', $queryParams);
|
|
|
|
$this->assertequals(10, $queryParams['start']);
|
2017-09-27 07:41:08 +02:00
|
|
|
}
|
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
public function testPrevLink()
|
|
|
|
{
|
|
|
|
$list = new PaginatedList(new ArrayList());
|
|
|
|
$list->setTotalItems(50);
|
|
|
|
|
|
|
|
$this->assertNull($list->PrevLink());
|
|
|
|
$list->setCurrentPage(2);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString('start=0', $list->PrevLink());
|
2016-12-16 05:34:21 +01:00
|
|
|
$list->setCurrentPage(3);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString('start=10', $list->PrevLink());
|
2016-12-16 05:34:21 +01:00
|
|
|
$list->setCurrentPage(5);
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->assertStringContainsString('start=30', $list->PrevLink());
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
// Disable paging
|
|
|
|
$list->setPageLength(0);
|
|
|
|
$this->assertNull($list->PrevLink());
|
|
|
|
}
|
2017-09-27 07:41:08 +02:00
|
|
|
|
2017-09-27 10:16:59 +02:00
|
|
|
public function testPrevLinkContainsCurrentGetParameters()
|
|
|
|
{
|
2017-09-27 07:41:08 +02:00
|
|
|
$request = new HTTPRequest(
|
|
|
|
'GET',
|
2017-09-27 10:16:59 +02:00
|
|
|
'http://example.com/my-cool-page',
|
2017-09-27 07:41:08 +02:00
|
|
|
['awesomeness' => 'nextLevel', 'start' => '30']
|
|
|
|
);
|
|
|
|
$list = new PaginatedList(new ArrayList(), $request);
|
|
|
|
$list->setTotalItems(50);
|
|
|
|
$list->setPageLength(10);
|
|
|
|
|
2017-09-27 10:16:59 +02:00
|
|
|
// check the query string has correct parameters
|
2022-04-14 03:12:59 +02:00
|
|
|
$queryString = parse_url($list->PrevLink() ?? '', PHP_URL_QUERY);
|
|
|
|
parse_str($queryString ?? '', $queryParams);
|
2017-09-27 10:16:59 +02:00
|
|
|
|
|
|
|
$this->assertArrayHasKey('awesomeness', $queryParams);
|
|
|
|
$this->assertequals('nextLevel', $queryParams['awesomeness']);
|
|
|
|
$this->assertArrayHasKey('start', $queryParams);
|
|
|
|
$this->assertequals(20, $queryParams['start']);
|
2017-09-27 07:41:08 +02:00
|
|
|
}
|
2012-03-24 04:04:52 +01:00
|
|
|
}
|