ThemeTest.php

Same filename in this branch
  1. 11.x core/modules/system/tests/src/Functional/System/ThemeTest.php
  2. 11.x core/modules/system/tests/src/Functional/Theme/ThemeTest.php
  3. 11.x core/modules/taxonomy/tests/src/Functional/ThemeTest.php
Same filename and directory in other branches
  1. 9 core/modules/system/tests/src/Kernel/Theme/ThemeTest.php
  2. 9 core/modules/system/tests/src/Functional/System/ThemeTest.php
  3. 9 core/modules/system/tests/src/Functional/Theme/ThemeTest.php
  4. 9 core/modules/taxonomy/tests/src/Functional/ThemeTest.php
  5. 8.9.x core/modules/system/tests/src/Kernel/Theme/ThemeTest.php
  6. 8.9.x core/modules/system/tests/src/Functional/System/ThemeTest.php
  7. 8.9.x core/modules/system/tests/src/Functional/Theme/ThemeTest.php
  8. 8.9.x core/modules/taxonomy/tests/src/Functional/ThemeTest.php
  9. 10 core/modules/system/tests/src/Kernel/Theme/ThemeTest.php
  10. 10 core/modules/system/tests/src/Functional/System/ThemeTest.php
  11. 10 core/modules/system/tests/src/Functional/Theme/ThemeTest.php
  12. 10 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

declare (strict_types=1);
namespace Drupal\Tests\system\Kernel\Theme;

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.
   *
   * Drupal/Core/Theme/ThemeManagerInterface::addDefaultTemplateVariables())
   * 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() : void {
    $theme_test_render_element = [
      'elements' => [
        '#attributes' => [
          'data-foo' => 'bar',
        ],
      ],
      'attributes' => [
        'id' => 'some_attribute',
      ],
    ];
    $this->assertThemeOutput('theme_test_render_element', $theme_test_render_element, '<div id="some_attribute" data-foo="bar" data-variables-are-preprocessed></div>' . "\n");
  }
  
  /**
   * Tests that ThemeManager renders the expected data types.
   */
  public function testThemeDataTypes() : void {
    // 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.
    $types = [
      'null' => NULL,
      'false' => FALSE,
      'integer' => 1,
      'string' => 'foo',
      'empty_string' => '',
    ];
    foreach ($types as $type => $example) {
      $output = \Drupal::theme()->render('theme_test_foo', [
        'foo' => $example,
      ]);
      $this->assertTrue($output instanceof MarkupInterface || is_string($output), "\\Drupal::theme() returns an object that implements MarkupInterface or a string for data 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.');
      }
    }
    // suggestion_not_implemented is not an implemented theme hook so
    // \Drupal::theme() service should return FALSE instead of a string.
    $output = \Drupal::theme()->render([
      'suggestion_not_implemented',
    ], []);
    $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() : void {
    // 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() : void {
    $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_base_theme' => 'Theme test base theme',
    ];
    $sub_theme_list = [
      'test_subsubtheme' => 'Theme test subsubtheme',
      'test_subtheme' => 'Theme test subtheme',
    ];
    $this->assertSame($sub_theme_list, $themes['test_base_theme']->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_base_theme']->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() : void {
    $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() : void {
    $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() : void {
    // 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() : void {
    // 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.