ThemeTest.php

Same filename in this branch
  1. 11.x core/modules/system/tests/src/Kernel/Theme/ThemeTest.php
  2. 11.x core/modules/system/tests/src/Functional/System/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\Functional\Theme

File

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

View source
<?php

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

use Drupal\Component\Serialization\Json;
use Drupal\Tests\BrowserTestBase;
use Drupal\Core\Routing\RouteObjectInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Route;

/**
 * Tests low-level theme functions.
 *
 * @group Theme
 */
class ThemeTest extends BrowserTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'theme_test',
    'node',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'starterkit_theme';
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    \Drupal::service('theme_installer')->install([
      'test_theme',
    ]);
  }
  
  /**
   * Ensures preprocess functions run even for suggestion implementations.
   *
   * The theme hook used by this test has its base preprocess function in a
   * separate file, so this test also ensures that the file is correctly loaded
   * when needed.
   */
  public function testPreprocessForSuggestions() : void {
    // Test with both an unprimed and primed theme registry.
    \Drupal::service('theme.registry')->reset();
    for ($i = 0; $i < 2; $i++) {
      $this->drupalGet('theme-test/suggestion');
      $this->assertSession()
        ->pageTextContains('Theme hook implementor=theme-test--suggestion.html.twig. Foo=template_preprocess_theme_test');
    }
  }
  
  /**
   * Tests the priority of some theme negotiators.
   */
  public function testNegotiatorPriorities() : void {
    $this->drupalGet('theme-test/priority');
    // Ensure that the custom theme negotiator was not able to set the theme.
    $this->assertSession()
      ->pageTextNotContains('Theme hook implementor=theme-test--suggestion.html.twig. Foo=template_preprocess_theme_test');
  }
  
  /**
   * Ensures that non-HTML requests never initialize themes.
   */
  public function testThemeOnNonHtmlRequest() : void {
    $this->drupalGet('theme-test/non-html');
    $json = Json::decode($this->getSession()
      ->getPage()
      ->getContent());
    $this->assertFalse($json['theme_initialized']);
  }
  
  /**
   * Ensure page-front template suggestion is added when on front page.
   */
  public function testFrontPageThemeSuggestion() : void {
    // Set the current route to user.login because theme_get_suggestions() will
    // query it to see if we are on the front page.
    $request = Request::create('/user/login');
    $request->attributes
      ->set(RouteObjectInterface::ROUTE_NAME, 'user.login');
    $request->attributes
      ->set(RouteObjectInterface::ROUTE_OBJECT, new Route('/user/login'));
    \Drupal::requestStack()->push($request);
    $this->config('system.site')
      ->set('page.front', '/user/login')
      ->save();
    $suggestions = theme_get_suggestions([
      'user',
      'login',
    ], 'page');
    // Set it back to not annoy the batch runner.
    \Drupal::requestStack()->pop();
    $this->assertContains('page__front', $suggestions, 'Front page template was suggested.');
  }
  
  /**
   * Tests theme can provide classes.
   */
  public function testClassLoading() : void {
    // Install test theme and set it as default.
    $this->config('system.theme')
      ->set('default', 'test_theme')
      ->save();
    $this->resetAll();
    // Visit page controller and confirm that the theme class is loaded.
    $this->drupalGet('/theme-test/test-theme-class');
    $this->assertSession()
      ->pageTextContains('Loading ThemeClass was successful.');
  }
  
  /**
   * Ensures a theme's .info.yml file is able to override a module CSS file from being added to the page.
   *
   * @see test_theme.info.yml
   */
  public function testCSSOverride() : void {
    // Reuse the same page as in testPreprocessForSuggestions(). We're testing
    // what is output to the HTML HEAD based on what is in a theme's .info.yml
    // file, so it doesn't matter what page we get, as long as it is themed with
    // the test theme. First we test with CSS aggregation disabled.
    $config = $this->config('system.performance');
    $config->set('css.preprocess', 0);
    $config->save();
    $this->drupalGet('theme-test/suggestion');
    // We add a "?" to the assertion, because drupalSettings may include
    // information about the file; we only really care about whether it appears
    // in a LINK or STYLE tag, for which Drupal always adds a query string for
    // cache control.
    $this->assertSession()
      ->responseNotContains('js.module.css?');
    // Also test with aggregation enabled, simply ensuring no PHP errors are
    // triggered during drupal_build_css_cache() when a source file doesn't
    // exist. Then allow remaining tests to continue with aggregation disabled
    // by default.
    $config->set('css.preprocess', 1);
    $config->save();
    $this->drupalGet('theme-test/suggestion');
    $config->set('css.preprocess', 0);
    $config->save();
  }
  
  /**
   * Ensures a themes template is overridable based on the 'template' filename.
   */
  public function testTemplateOverride() : void {
    $this->config('system.theme')
      ->set('default', 'test_theme')
      ->save();
    $this->drupalGet('theme-test/template-test');
    $this->assertSession()
      ->pageTextContains('Success: Template overridden.');
  }
  
  /**
   * Tests that the page variable is not prematurely flattened.
   *
   * Some modules check the page array in template_preprocess_html(), so we
   * ensure that it has not been rendered prematurely.
   */
  public function testPreprocessHtml() : void {
    $this->drupalGet('');
    $this->assertSession()
      ->elementsCount('xpath', '/body[@theme_test_page_variable="Page variable is an array."]', 1);
    $this->assertSession()
      ->pageTextContains('theme test page bottom markup');
  }
  
  /**
   * Tests that region attributes can be manipulated via preprocess functions.
   */
  public function testRegionClass() : void {
    \Drupal::service('module_installer')->install([
      'block',
      'theme_region_test',
    ]);
    // Place a block.
    $this->drupalPlaceBlock('system_main_block', [
      'region' => 'sidebar_first',
    ]);
    $this->drupalGet('');
    $elements = $this->cssSelect(".region-sidebar-first.new_class");
    $this->assertCount(1, $elements, 'New class found.');
  }
  
  /**
   * Ensures suggestion preprocess functions run for default implementations.
   *
   * The theme hook used by this test has its base preprocess function in a
   * separate file, so this test also ensures that the file is correctly loaded
   * when needed.
   */
  public function testSuggestionPreprocessForDefaults() : void {
    $this->config('system.theme')
      ->set('default', 'test_theme')
      ->save();
    // Test with both an unprimed and primed theme registry.
    \Drupal::service('theme.registry')->reset();
    for ($i = 0; $i < 2; $i++) {
      $this->drupalGet('theme-test/preprocess-suggestions');
      $items = $this->cssSelect('.suggestion');
      $expected_values = [
        'Suggestion',
        'Kitten',
        'Monkey',
        'Kitten',
        'Flamingo',
      ];
      foreach ($expected_values as $key => $value) {
        $this->assertEquals((string) $value, $items[$key]->getText());
      }
    }
  }
  
  /**
   * Ensures that preprocess callbacks can be defined.
   */
  public function testPreprocessCallback() : void {
    $this->drupalGet('theme-test/preprocess-callback');
    $this->assertSession()
      ->pageTextContains('Make Drupal full of kittens again!');
  }

}

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.