public function PagerTest::testNoLimit in Drupal 8
Same name and namespace in other branches
- 9 core/modules/views/tests/src/Functional/Plugin/PagerTest.php \Drupal\Tests\views\Functional\Plugin\PagerTest::testNoLimit()
- 10 core/modules/views/tests/src/Functional/Plugin/PagerTest.php \Drupal\Tests\views\Functional\Plugin\PagerTest::testNoLimit()
Tests the none-pager-query.
File
- core/
modules/ views/ tests/ src/ Functional/ Plugin/ PagerTest.php, line 164
Class
- PagerTest
- Tests the pluggable pager system.
Namespace
Drupal\Tests\views\Functional\PluginCode
public function testNoLimit() {
// Create 11 nodes and make sure that everyone is returned.
// We create 11 nodes, because the default pager plugin had 10 items per page.
$this
->drupalCreateContentType([
'type' => 'page',
]);
for ($i = 0; $i < 11; $i++) {
$this
->drupalCreateNode();
}
$view = Views::getView('test_pager_none');
$this
->executeView($view);
$this
->assertCount(11, $view->result, 'Make sure that every item is returned in the result');
// Setup and test a offset.
$view = Views::getView('test_pager_none');
$view
->setDisplay();
$pager = [
'type' => 'none',
'options' => [
'offset' => 3,
],
];
$view->display_handler
->setOption('pager', $pager);
$this
->executeView($view);
$this
->assertCount(8, $view->result, 'Make sure that every item beside the first three is returned in the result');
// Check some public functions.
$this
->assertFalse($view->pager
->usePager());
$this
->assertFalse($view->pager
->useCountQuery());
$this
->assertEqual($view->pager
->getItemsPerPage(), 0);
}