public function PagerTest::testLimit in Views (for Drupal 7) 8.3
Tests the some pager plugin.
File
- lib/
Drupal/ views/ Tests/ Plugin/ PagerTest.php, line 163 - Definition of Drupal\views\Tests\Plugin\PagerTest.
Class
- PagerTest
- Tests the pluggable pager system.
Namespace
Drupal\views\Tests\PluginCode
public function testLimit() {
$saved_view = $this
->createViewFromConfig('test_pager_some');
// 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 = $saved_view
->cloneView();
$this
->executeView($view);
$this
->assertEqual(count($view->result), 5, 'Make sure that only a certain count of items is returned');
// Setup and test a offset.
$view = $this
->getView($saved_view);
$pager = array(
'type' => 'none',
'options' => array(
'offset' => 8,
'items_per_page' => 5,
),
);
$view->display_handler
->setOption('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->pager
->use_pager());
$this
->assertFalse($view->pager
->use_count_query());
}