Document the newly added pagination template variable. Update the tests to look for it and test it

This commit is contained in:
Colin Kuskie 2008-11-24 02:23:48 +00:00
parent 9110697a3a
commit 2a40ab2e6c
3 changed files with 27 additions and 15 deletions

View file

@ -48,18 +48,22 @@ cmp_bag([25..49], $p->getPageData(2), 'page 2 data correct');
cmp_bag([ ], $p->getPageData(5), 'page 5 data correct');
# Test getPageLinks
cmp_deeply(
[
map { +{
my $expectedPages;
$expectedPages = [ map { +{
'pagination.text' => ( $_ + 1 ),
'pagination.range' => ( 25 * $_ + 1 ) . "-" . ( $_ * 25 + 25 <= $endingRowNum + 1 ? $_ * 25 + 25 : $endingRowNum + 1 ), # First row number - Last row number
'pagination.url' => ( $_ != 0 ? $url . '?pn=' . ( $_ + 1 ) : '' ), # Current page has no URL
} } (0..$NumberOfPages-1)
],
} } (0..$NumberOfPages-1) ];
$expectedPages->[0]->{'pagination.activePage'} = 'true';
cmp_deeply(
($p->getPageLinks)[0],
$expectedPages,
'page links correct',
);
$startingRowNum = 0;
$endingRowNum = 100;
@paginatingData = ($startingRowNum..$endingRowNum);
@ -83,16 +87,19 @@ is('100', $p->getPage(5), '(101) page 5 stringification okay');
is($p->getPageNumber, 1, 'Default page number is 1'); ##Additional page numbers are specified at instantiation
# Test getPageLinks
cmp_deeply(
($p->getPageLinks)[0],
[
map { +{
$expectedPages = [ map { +{
'pagination.text' => ( $_ + 1 ),
'pagination.range' => ( 25 * $_ + 1 ) . "-" . ( $_ * 25 + 25 <= $endingRowNum + 1 ? $_ * 25 + 25 : $endingRowNum + 1 ), # First row number - Last row number
'pagination.url' => ( $_ != 0 ? $url . '?pn=' . ( $_ + 1 ) : '' ), # Current page has no URL
} } (0..$NumberOfPages-1)
],
} } (0..$NumberOfPages-1) ];
$expectedPages->[0]->{'pagination.activePage'} = 'true';
# Test getPageLinks
cmp_deeply(
($p->getPageLinks)[0],
$expectedPages,
'page links correct',
);