You are here

ThemeEarlyInitializationTest.php in Zircon Profile 8

File

core/modules/system/src/Tests/Theme/ThemeEarlyInitializationTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\system\Tests\Theme\ThemeEarlyInitializationTest.
 */
namespace Drupal\system\Tests\Theme;

use Drupal\simpletest\WebTestBase;

/**
 * Tests that the theme system can be correctly initialized early in the page
 * request.
 *
 * @group Theme
 */
class ThemeEarlyInitializationTest extends WebTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'theme_test',
  );

  /**
   * Test that the theme system can generate output in a request listener.
   */
  function testRequestListener() {
    $this
      ->drupalGet('theme-test/request-listener');

    // Verify that themed output generated in the request listener appears.
    $this
      ->assertRaw('Themed output generated in a KernelEvents::REQUEST listener');

    // Verify that the default theme's CSS still appears even though the theme
    // system was initialized early.
    $this
      ->assertRaw('classy/css/components/action-links.css');
  }

}

Classes

Namesort descending Description
ThemeEarlyInitializationTest Tests that the theme system can be correctly initialized early in the page request.