ThemeHandlerTest.php in Drupal 9
File
core/tests/Drupal/Tests/Core/Extension/ThemeHandlerTest.php
View source
<?php
namespace Drupal\Tests\Core\Extension;
use Composer\Autoload\ClassLoader;
use Drupal\Core\Extension\Extension;
use Drupal\Core\Extension\ThemeExtensionList;
use Drupal\Core\Extension\ThemeHandler;
use Drupal\Tests\UnitTestCase;
class ThemeHandlerTest extends UnitTestCase {
protected $configFactory;
protected $themeList;
protected $themeHandler;
protected function setUp() : void {
parent::setUp();
$this->configFactory = $this
->getConfigFactoryStub([
'core.extension' => [
'module' => [],
'theme' => [],
'disabled' => [
'theme' => [],
],
],
]);
$this->themeList = $this
->getMockBuilder(ThemeExtensionList::class)
->disableOriginalConstructor()
->getMock();
$this->themeHandler = new StubThemeHandler($this->root, $this->configFactory, $this->themeList);
$container = $this
->createMock('Symfony\\Component\\DependencyInjection\\ContainerInterface');
$container
->expects($this
->any())
->method('get')
->with('class_loader')
->will($this
->returnValue($this
->createMock(ClassLoader::class)));
\Drupal::setContainer($container);
}
public function testRebuildThemeData() {
$this->themeList
->expects($this
->once())
->method('reset')
->willReturnSelf();
$this->themeList
->expects($this
->once())
->method('getList')
->will($this
->returnValue([
'seven' => new Extension($this->root, 'theme', 'core/themes/seven/seven.info.yml', 'seven.theme'),
]));
$theme_data = $this->themeHandler
->rebuildThemeData();
$this
->assertCount(1, $theme_data);
$info = $theme_data['seven'];
$this
->assertInstanceOf('Drupal\\Core\\Extension\\Extension', $info);
$this
->assertEquals('seven', $info
->getName());
$this
->assertEquals('core/themes/seven/seven.info.yml', $info
->getPathname());
$this
->assertEquals('core/themes/seven/seven.theme', $info
->getExtensionPathname());
}
public function testThemeLibrariesEmpty() {
$theme = new Extension($this->root, 'theme', 'core/modules/system/tests/themes/test_theme_libraries_empty', 'test_theme_libraries_empty.info.yml');
try {
$this->themeHandler
->addTheme($theme);
$this
->assertTrue(TRUE, 'Empty libraries key in theme.info.yml does not cause PHP warning');
} catch (\Exception $e) {
$this
->fail('Empty libraries key in theme.info.yml causes PHP warning.');
}
}
}
class StubThemeHandler extends ThemeHandler {
protected $clearedCssCache;
protected $registryRebuild;
protected function clearCssCache() {
$this->clearedCssCache = TRUE;
}
protected function themeRegistryRebuild() {
$this->registryRebuild = TRUE;
}
}