You are here

public function PagerTest::testNoLimit in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/views/src/Tests/Plugin/PagerTest.php \Drupal\views\Tests\Plugin\PagerTest::testNoLimit()

Tests the none-pager-query.

File

core/modules/views/src/Tests/Plugin/PagerTest.php, line 130
Contains \Drupal\views\Tests\Plugin\PagerTest.

Class

PagerTest
Tests the pluggable pager system.

Namespace

Drupal\views\Tests\Plugin

Code

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(array(
    'type' => 'page',
  ));
  for ($i = 0; $i < 11; $i++) {
    $this
      ->drupalCreateNode();
  }
  $view = Views::getView('test_pager_none');
  $this
    ->executeView($view);
  $this
    ->assertEqual(count($view->result), 11, 'Make sure that every item is returned in the result');

  // Setup and test a offset.
  $view = Views::getView('test_pager_none');
  $view
    ->setDisplay();
  $pager = array(
    'type' => 'none',
    'options' => array(
      'offset' => 3,
    ),
  );
  $view->display_handler
    ->setOption('pager', $pager);
  $this
    ->executeView($view);
  $this
    ->assertEqual(count($view->result), 8, '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);
}