You are here

class ResultTest in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/tests/src/Unit/Plugin/area/ResultTest.php \Drupal\Tests\views\Unit\Plugin\area\ResultTest

@coversDefaultClass \Drupal\views\Plugin\views\area\Result @group views

Hierarchy

Expanded class hierarchy of ResultTest

2 string references to 'ResultTest'
ResultTest::providerTestResultArea in core/modules/views/tests/src/Unit/Plugin/area/ResultTest.php
Data provider for testResultArea.
ResultTest::setUp in core/modules/views/tests/src/Unit/Plugin/area/ResultTest.php

File

core/modules/views/tests/src/Unit/Plugin/area/ResultTest.php, line 19

Namespace

Drupal\Tests\views\Unit\Plugin\area
View source
class ResultTest extends UnitTestCase {

  /**
   * The view executable object.
   *
   * @var \Drupal\views\ViewExecutable
   */
  protected $view;

  /**
   * The Result handler.
   *
   * @var \Drupal\views\Plugin\views\area\Result
   */
  protected $resultHandler;
  protected function setUp() {
    parent::setUp();
    $storage = $this
      ->prophesize(View::class);
    $storage
      ->label()
      ->willReturn('ResultTest');
    $storage
      ->set(Argument::cetera())
      ->willReturn(NULL);
    $user = $this
      ->prophesize(AccountInterface::class)
      ->reveal();
    $views_data = $this
      ->prophesize(ViewsData::class)
      ->reveal();
    $route_provider = $this
      ->prophesize(RouteProviderInterface::class)
      ->reveal();
    $this->view = new ViewExecutable($storage
      ->reveal(), $user, $views_data, $route_provider);
    $this->resultHandler = new Result([], 'result', []);
    $this->resultHandler->view = $this->view;
  }

  /**
   * Tests the query method.
   */
  public function testQuery() {
    $this
      ->assertNull($this->view->get_total_rows);

    // @total should set get_total_rows.
    $this->resultHandler->options['content'] = '@total';
    $this->resultHandler
      ->query();
    $this
      ->assertTrue($this->view->get_total_rows);

    // A different token should not.
    $this->view->get_total_rows = NULL;
    $this->resultHandler->options['content'] = '@current_page';
    $this->resultHandler
      ->query();
    $this
      ->assertNull($this->view->get_total_rows);
  }

  /**
   * Tests the rendered output of the Result area handler.
   *
   * @param string $content
   *   The content to use when rendering the handler.
   * @param string $expected
   *   The expected content string.
   * @param int $items_per_page
   *   The items per page of the configuration.
   *
   * @dataProvider providerTestResultArea
   */
  public function testResultArea($content, $expected, $items_per_page = 0) {
    $this
      ->setupViewPager($items_per_page);
    $this->resultHandler->options['content'] = $content;
    $this
      ->assertEquals([
      '#markup' => $expected,
    ], $this->resultHandler
      ->render());
  }

  /**
   * Data provider for testResultArea.
   *
   * @return array
   */
  public function providerTestResultArea() {
    return [
      [
        '@label',
        'ResultTest',
      ],
      [
        '@start',
        '1',
      ],
      [
        '@start',
        '1',
        1,
      ],
      [
        '@end',
        '100',
      ],
      [
        '@end',
        '1',
        1,
      ],
      [
        '@total',
        '100',
      ],
      [
        '@total',
        '100',
        1,
      ],
      [
        '@per_page',
        '0',
      ],
      [
        '@per_page',
        '1',
        1,
      ],
      [
        '@current_page',
        '1',
      ],
      [
        '@current_page',
        '1',
        1,
      ],
      [
        '@current_record_count',
        '100',
      ],
      [
        '@current_record_count',
        '1',
        1,
      ],
      [
        '@page_count',
        '1',
      ],
      [
        '@page_count',
        '100',
        1,
      ],
      [
        '@start | @end | @total',
        '1 | 100 | 100',
      ],
      [
        '@start | @end | @total',
        '1 | 1 | 100',
        1,
      ],
    ];
  }

  /**
   * Sets up a mock pager on the view executable object.
   *
   * @param int $items_per_page
   *   The value to return from getItemsPerPage().
   */
  protected function setupViewPager($items_per_page = 0) {
    $pager = $this
      ->prophesize(PagerPluginBase::class);
    $pager
      ->getItemsPerPage()
      ->willReturn($items_per_page)
      ->shouldBeCalledTimes(1);
    $pager
      ->getCurrentPage()
      ->willReturn(0)
      ->shouldBeCalledTimes(1);
    $this->view->pager = $pager
      ->reveal();
    $this->view->style_plugin = new \stdClass();
    $this->view->total_rows = 100;
    $this->view->result = [
      1,
      2,
      3,
      4,
      5,
    ];
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
ResultTest::$resultHandler protected property The Result handler.
ResultTest::$view protected property The view executable object.
ResultTest::providerTestResultArea public function Data provider for testResultArea.
ResultTest::setUp protected function Overrides UnitTestCase::setUp
ResultTest::setupViewPager protected function Sets up a mock pager on the view executable object.
ResultTest::testQuery public function Tests the query method.
ResultTest::testResultArea public function Tests the rendered output of the Result area handler.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.