AreaTextTest.php

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

Namespace

Drupal\Tests\views\Kernel\Handler

File

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

View source
<?php

namespace Drupal\Tests\views\Kernel\Handler;

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

/**
 * Tests the core views_handler_area_text handler.
 *
 * @group views
 * @see \Drupal\views\Plugin\views\area\Text
 */
class AreaTextTest extends ViewsKernelTestBase {
    protected static $modules = [
        'system',
        'user',
        'filter',
    ];
    
    /**
     * Views used by this test.
     *
     * @var array
     */
    public static $testViews = [
        'test_view',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function setUp($import_test_views = TRUE) : void {
        parent::setUp();
        $this->installConfig([
            'system',
            'filter',
        ]);
        $this->installEntitySchema('user');
    }
    public function testAreaText() {
        
        /** @var \Drupal\Core\Render\RendererInterface $renderer */
        $renderer = $this->container
            ->get('renderer');
        $view = Views::getView('test_view');
        $view->setDisplay();
        // add a text header
        $string = $this->randomMachineName();
        $view->displayHandlers
            ->get('default')
            ->overrideOption('header', [
            'area' => [
                'id' => 'area',
                'table' => 'views',
                'field' => 'area',
                'content' => [
                    'value' => $string,
                ],
            ],
        ]);
        // Execute the view.
        $this->executeView($view);
        $view->display_handler->handlers['header']['area']->options['content']['format'] = $this->randomString();
        $build = $view->display_handler->handlers['header']['area']
            ->render();
        $this->assertEquals('', $renderer->renderRoot($build), 'Nonexistent format should return empty markup.');
        $view->display_handler->handlers['header']['area']->options['content']['format'] = filter_default_format();
        $build = $view->display_handler->handlers['header']['area']
            ->render();
        $this->assertEquals(check_markup($string), $renderer->renderRoot($build), 'Existent format should return something');
        // Empty results, and it shouldn't be displayed .
        $this->assertEquals([], $view->display_handler->handlers['header']['area']
            ->render(TRUE), 'No result should lead to no header');
        // Empty results, and it should be displayed.
        $view->display_handler->handlers['header']['area']->options['empty'] = TRUE;
        $build = $view->display_handler->handlers['header']['area']
            ->render(TRUE);
        $this->assertEquals(check_markup($string), $renderer->renderRoot($build), 'No result, but empty enabled lead to a full header');
    }

}

Classes

Title Deprecated Summary
AreaTextTest Tests the core views_handler_area_text handler.

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