ThemeEarlyInitializationTest.php in Drupal 8
Same filename and directory in other branches
Namespace
Drupal\Tests\system\Functional\ThemeFile
core/modules/system/tests/src/Functional/Theme/ThemeEarlyInitializationTest.phpView source
<?php
namespace Drupal\Tests\system\Functional\Theme;
use Drupal\Tests\BrowserTestBase;
/**
* Tests that the theme system can be correctly initialized early in the page
* request.
*
* @group Theme
*/
class ThemeEarlyInitializationTest extends BrowserTestBase {
/**
* Modules to enable.
*
* @var array
*/
public static $modules = [
'theme_test',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'classy';
/**
* Test that the theme system can generate output in a request listener.
*/
public 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
Name | Description |
---|---|
ThemeEarlyInitializationTest | Tests that the theme system can be correctly initialized early in the page request. |