You are here

public function PagerTest::testLimit 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::testLimit()

Tests the some pager plugin.

File

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

Class

PagerTest
Tests the pluggable pager system.

Namespace

Drupal\views\Tests\Plugin

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.
  $this
    ->drupalCreateContentType(array(
    'type' => 'page',
  ));
  for ($i = 0; $i < 11; $i++) {
    $this
      ->drupalCreateNode();
  }
  $view = Views::getView('test_pager_some');
  $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 = Views::getView('test_pager_some');
  $view
    ->setDisplay();
  $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
    ->usePager());
  $this
    ->assertFalse($view->pager
    ->useCountQuery());
}