public function ViewsPagerTest::testLimit in Views (for Drupal 7) 7.3
Tests the some pager plugin.
File
- tests/
views_pager.test, line 210 - Definition of ViewsPagerTest.
Class
- ViewsPagerTest
- Tests the pluggable pager system.
Code
public function testLimit() {
// Create 11 nodes and make sure that everyone is returned. We create 11
// nodes, because the default pager plugin had 10 items per page.
for ($i = 0; $i < 11; $i++) {
$this
->drupalCreateNode();
}
$view = $this
->viewsPagerLimit();
$view
->set_display('default');
$this
->executeView($view);
$this
->assertEqual(count($view->result), 5, 'Make sure that only a certain count of items is returned');
$view
->destroy();
// Setup and test a offset.
$view = $this
->viewsPagerLimit();
$view
->set_display('default');
$pager = array(
'type' => 'none',
'options' => array(
'offset' => 8,
'items_per_page' => 5,
),
);
$view->display_handler
->set_option('pager', $pager);
$this
->executeView($view);
$this
->assertEqual(count($view->result), 3, 'Make sure that only a certain count of items is returned');
// Check some public functions.
$this
->assertFalse($view->query->pager
->use_pager());
$this
->assertFalse($view->query->pager
->use_count_query());
}