ThemeTest.php

Same filename in this branch
  1. 9 core/modules/system/tests/src/Functional/System/ThemeTest.php
  2. 9 core/modules/system/tests/src/Functional/Theme/ThemeTest.php
  3. 9 core/modules/taxonomy/tests/src/Functional/ThemeTest.php
Same filename in other branches
  1. 8.9.x core/modules/system/tests/src/Kernel/Theme/ThemeTest.php
  2. 8.9.x core/modules/system/tests/src/Functional/System/ThemeTest.php
  3. 8.9.x core/modules/system/tests/src/Functional/Theme/ThemeTest.php
  4. 8.9.x core/modules/taxonomy/tests/src/Functional/ThemeTest.php
  5. 10 core/modules/system/tests/src/Kernel/Theme/ThemeTest.php
  6. 10 core/modules/system/tests/src/Functional/System/ThemeTest.php
  7. 10 core/modules/system/tests/src/Functional/Theme/ThemeTest.php
  8. 10 core/modules/taxonomy/tests/src/Functional/ThemeTest.php
  9. 11.x core/modules/system/tests/src/Kernel/Theme/ThemeTest.php
  10. 11.x core/modules/system/tests/src/Functional/System/ThemeTest.php
  11. 11.x core/modules/system/tests/src/Functional/Theme/ThemeTest.php
  12. 11.x core/modules/taxonomy/tests/src/Functional/ThemeTest.php

Namespace

Drupal\Tests\system\Kernel\Theme

File

core/modules/system/tests/src/Kernel/Theme/ThemeTest.php

View source
<?php

namespace Drupal\Tests\system\Kernel\Theme;

use Drupal\Component\Render\FormattableMarkup;
use Drupal\KernelTests\KernelTestBase;
use Drupal\Component\Render\MarkupInterface;

/**
 * Tests low-level theme functions.
 *
 * @group Theme
 */
class ThemeTest extends KernelTestBase {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'theme_test',
        'node',
        'system',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        \Drupal::service('theme_installer')->install([
            'test_theme',
        ]);
    }
    
    /**
     * Tests attribute merging.
     *
     * Render arrays that use a render element and templates (and hence call
     * template_preprocess()) must ensure the attributes at different occasions
     * are all merged correctly:
     *   - $variables['attributes'] as passed in to the theme hook implementation.
     *   - the render element's #attributes
     *   - any attributes set in the template's preprocessing function
     */
    public function testAttributeMerging() {
        $theme_test_render_element = [
            'elements' => [
                '#attributes' => [
                    'data-foo' => 'bar',
                ],
            ],
            'attributes' => [
                'id' => 'bazinga',
            ],
        ];
        $this->assertThemeOutput('theme_test_render_element', $theme_test_render_element, '<div id="bazinga" data-foo="bar" data-variables-are-preprocessed></div>' . "\n");
    }
    
    /**
     * Tests that ThemeManager renders the expected data types.
     */
    public function testThemeDataTypes() {
        // theme_test_false is an implemented theme hook so \Drupal::theme() service
        // should return a string or an object that implements MarkupInterface,
        // even though the theme function itself can return anything.
        $foos = [
            'null' => NULL,
            'false' => FALSE,
            'integer' => 1,
            'string' => 'foo',
            'empty_string' => '',
        ];
        foreach ($foos as $type => $example) {
            $output = \Drupal::theme()->render('theme_test_foo', [
                'foo' => $example,
            ]);
            $this->assertTrue($output instanceof MarkupInterface || is_string($output), new FormattableMarkup('\\Drupal::theme() returns an object that implements MarkupInterface or a string for data type @type.', [
                '@type' => $type,
            ]));
            if ($output instanceof MarkupInterface) {
                $this->assertSame((string) $example, $output->__toString());
            }
            elseif (is_string($output)) {
                $this->assertSame('', $output, 'A string will be return when the theme returns an empty string.');
            }
        }
        // suggestionnotimplemented is not an implemented theme hook so \Drupal::theme() service
        // should return FALSE instead of a string.
        $output = \Drupal::theme()->render([
            'suggestionnotimplemented',
        ], []);
        $this->assertFalse($output, '\\Drupal::theme() returns FALSE when a hook suggestion is not implemented.');
    }
    
    /**
     * Tests function theme_get_suggestions() for SA-CORE-2009-003.
     */
    public function testThemeSuggestions() {
        // Set the front page as something random otherwise the CLI
        // test runner fails.
        $this->config('system.site')
            ->set('page.front', '/nobody-home')
            ->save();
        $args = [
            'node',
            '1',
            'edit',
        ];
        $suggestions = theme_get_suggestions($args, 'page');
        $this->assertEquals([
            'page__node',
            'page__node__%',
            'page__node__1',
            'page__node__edit',
        ], $suggestions, 'Found expected node edit page suggestions');
        // Check attack vectors.
        $args = [
            'node',
            '\\1',
        ];
        $suggestions = theme_get_suggestions($args, 'page');
        $this->assertEquals([
            'page__node',
            'page__node__%',
            'page__node__1',
        ], $suggestions, 'Removed invalid \\ from suggestions');
        $args = [
            'node',
            '1/',
        ];
        $suggestions = theme_get_suggestions($args, 'page');
        $this->assertEquals([
            'page__node',
            'page__node__%',
            'page__node__1',
        ], $suggestions, 'Removed invalid / from suggestions');
        $args = [
            'node',
            "1\x00",
        ];
        $suggestions = theme_get_suggestions($args, 'page');
        $this->assertEquals([
            'page__node',
            'page__node__%',
            'page__node__1',
        ], $suggestions, 'Removed invalid \\0 from suggestions');
        // Define path with hyphens to be used to generate suggestions.
        $args = [
            'node',
            '1',
            'hyphen-path',
        ];
        $result = [
            'page__node',
            'page__node__%',
            'page__node__1',
            'page__node__hyphen_path',
        ];
        $suggestions = theme_get_suggestions($args, 'page');
        $this->assertEquals($result, $suggestions, 'Found expected page suggestions for paths containing hyphens.');
    }
    
    /**
     * Tests the listInfo() function.
     */
    public function testListThemes() {
        $this->container
            ->get('theme_installer')
            ->install([
            'test_subtheme',
        ]);
        $theme_handler = $this->container
            ->get('theme_handler');
        $themes = $theme_handler->listInfo();
        // Check if ThemeHandlerInterface::listInfo() retrieves enabled themes.
        $this->assertSame(1, $themes['test_theme']->status, 'Installed theme detected');
        // Check if ThemeHandlerInterface::listInfo() returns disabled themes.
        // Check for base theme and subtheme lists.
        $base_theme_list = [
            'test_basetheme' => 'Theme test base theme',
        ];
        $sub_theme_list = [
            'test_subsubtheme' => 'Theme test subsubtheme',
            'test_subtheme' => 'Theme test subtheme',
        ];
        $this->assertSame($sub_theme_list, $themes['test_basetheme']->sub_themes, 'Base theme\'s object includes list of subthemes.');
        $this->assertSame($base_theme_list, $themes['test_subtheme']->base_themes, 'Subtheme\'s object includes list of base themes.');
        // Check for theme engine in subtheme.
        $this->assertSame('twig', $themes['test_subtheme']->engine, 'Subtheme\'s object includes the theme engine.');
        // Check for theme engine prefix.
        $this->assertSame('twig', $themes['test_basetheme']->prefix, 'Base theme\'s object includes the theme engine prefix.');
        $this->assertSame('twig', $themes['test_subtheme']->prefix, 'Subtheme\'s object includes the theme engine prefix.');
    }
    
    /**
     * Tests child element rendering for 'render element' theme hooks.
     */
    public function testDrupalRenderChildren() {
        $element = [
            '#theme' => 'theme_test_render_element_children',
            'child' => [
                '#markup' => 'Foo',
            ],
        ];
        $this->assertThemeOutput('theme_test_render_element_children', $element, 'Foo', "\\Drupal::service('renderer')->render() avoids #theme recursion loop when rendering a render element.");
        $element = [
            '#theme_wrappers' => [
                'theme_test_render_element_children',
            ],
            'child' => [
                '#markup' => 'Foo',
            ],
        ];
        $this->assertThemeOutput('theme_test_render_element_children', $element, 'Foo', "\\Drupal::service('renderer')->render() avoids #theme_wrappers recursion loop when rendering a render element.");
    }
    
    /**
     * Tests drupal_find_theme_templates().
     */
    public function testFindThemeTemplates() {
        $registry = $this->container
            ->get('theme.registry')
            ->get();
        $templates = drupal_find_theme_templates($registry, '.html.twig', $this->getThemePath('test_theme'));
        $this->assertEquals('node--1', $templates['node__1']['template'], 'Template node--1.html.twig was found in test_theme.');
    }
    
    /**
     * Tests the update registry is correct during theme install and uninstall.
     */
    public function testThemeUpdateManagement() {
        // Install modules the theme is dependent on and enable the post update
        // function.
        \Drupal::state()->set('test_theme_depending_on_modules.post_update', TRUE);
        \Drupal::service('module_installer')->install([
            'test_module_required_by_theme',
            'test_another_module_required_by_theme',
        ]);
        
        /** @var \Drupal\Core\Update\UpdateRegistry $post_update_registry */
        $post_update_registry = \Drupal::service('update.post_update_registry');
        $this->assertEmpty($post_update_registry->getUpdateFunctions('test_theme_depending_on_modules'), 'No updates test_theme_depending_on_modules for prior to install.');
        \Drupal::service('theme_installer')->install([
            'test_theme_depending_on_modules',
        ]);
        // Ensure the post update function has been added to the list of
        // existing updates.
        $this->assertContains('test_theme_depending_on_modules_post_update_module_install', \Drupal::service('keyvalue')->get('post_update')
            ->get('existing_updates'));
        \Drupal::service('theme_installer')->uninstall([
            'test_theme_depending_on_modules',
        ]);
        // Ensure the post update function has been removed from the list of
        // existing updates.
        $this->assertNotContains('test_theme_depending_on_modules_post_update_module_install', \Drupal::service('keyvalue')->get('post_update')
            ->get('existing_updates'));
    }
    
    /**
     * Tests the update registry is correct during theme install and uninstall.
     */
    public function testThemeUpdateManagementRemovedPostUpdates() {
        // Install modules the theme is dependent on and enable the removed post
        // updates function.
        \Drupal::state()->set('test_theme_depending_on_modules.removed_post_updates', TRUE);
        \Drupal::service('module_installer')->install([
            'test_module_required_by_theme',
            'test_another_module_required_by_theme',
        ]);
        $post_update_registry = \Drupal::service('update.post_update_registry');
        $this->assertEmpty($post_update_registry->getUpdateFunctions('test_theme_depending_on_modules'), 'No updates test_theme_depending_on_modules for prior to install.');
        \Drupal::service('theme_installer')->install([
            'test_theme_depending_on_modules',
        ]);
        // Ensure the removed post update function has been added to the list of
        // existing updates.
        $this->assertContains('test_theme_depending_on_modules_post_update_foo', \Drupal::service('keyvalue')->get('post_update')
            ->get('existing_updates'));
        \Drupal::service('theme_installer')->uninstall([
            'test_theme_depending_on_modules',
        ]);
        // Ensure the removed post update function has been removed from the list of
        // existing updates.
        $this->assertNotContains('test_theme_depending_on_modules_post_update_foo', \Drupal::service('keyvalue')->get('post_update')
            ->get('existing_updates'));
    }

}

Classes

Title Deprecated Summary
ThemeTest Tests low-level theme functions.

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