AreaResultTest.php

Same filename and directory in other branches
  1. 9 core/modules/views/tests/src/Kernel/Handler/AreaResultTest.php
  2. 8.9.x core/modules/views/tests/src/Kernel/Handler/AreaResultTest.php
  3. 10 core/modules/views/tests/src/Kernel/Handler/AreaResultTest.php

Namespace

Drupal\Tests\views\Kernel\Handler

File

core/modules/views/tests/src/Kernel/Handler/AreaResultTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\views\Kernel\Handler;

use Drupal\Tests\views\Kernel\ViewsKernelTestBase;
use Drupal\views\Views;

/**
 * Tests the result area handler.
 *
 * @group views
 * @see \Drupal\views\Plugin\views\area\Result
 */
class AreaResultTest extends ViewsKernelTestBase {
  
  /**
   * {@inheritdoc}
   */
  public static $testViews = [
    'test_area_result',
  ];
  
  /**
   * Tests the results area handler.
   */
  public function testResult() : void {
    $view = Views::getView('test_area_result');
    $view->setDisplay('default');
    $this->executeView($view);
    $output = $view->render();
    $output = \Drupal::service('renderer')->renderRoot($output);
    $this->setRawContent($output);
    $this->assertText('start: 1 | end: 5 | total: 5 | label: test_area_result | per page: 0 | current page: 1 | current record count: 5 | page count: 1');
    // Make sure that potentially dangerous content was stripped.
    $this->assertNoRaw('<script />');
  }
  
  /**
   * Tests the results area handler.
   */
  public function testResultEmpty() : void {
    $view = Views::getView('test_area_result');
    // Test that the area is displayed if we have checked the empty checkbox.
    $view->setDisplay('default');
    // Add a filter that will make the result set empty.
    $view->displayHandlers
      ->get('default')
      ->overrideOption('filters', [
      'name' => [
        'id' => 'name',
        'table' => 'views_test_data',
        'field' => 'name',
        'relationship' => 'none',
        'operator' => '=',
        'value' => 'non-existing-name',
      ],
    ]);
    $this->executeView($view);
    $output = $view->render();
    $output = \Drupal::service('renderer')->renderRoot($output);
    $this->setRawContent($output);
    $this->assertText('start: 0 | end: 0 | total: 0 | label: test_area_result | per page: 0 | current page: 1 | current record count: 0 | page count: 1');
    $this->assertRaw('<header>');
    // Test that the area is not displayed if we have not checked the empty
    // checkbox.
    $view->setDisplay('page_1');
    $this->executeView($view);
    $output = $view->render();
    $output = \Drupal::service('renderer')->renderRoot($output);
    $this->setRawContent($output);
    $this->assertNoText('start: 0 | end: 0 | total: 0 | label: test_area_result | per page: 0 | current page: 1 | current record count: 0 | page count: 1');
    // Make sure the empty header region isn't rendered.
    $this->assertNoRaw('<header>');
  }

}

Classes

Title Deprecated Summary
AreaResultTest Tests the result area handler.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.