function LibraryDiscoveryCollectorTest::testLibrariesExtendDeprecated
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryCollectorTest.php \Drupal\Tests\Core\Asset\LibraryDiscoveryCollectorTest::testLibrariesExtendDeprecated()
- 11.x core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryCollectorTest.php \Drupal\Tests\Core\Asset\LibraryDiscoveryCollectorTest::testLibrariesExtendDeprecated()
Tests a deprecated library with an extend.
@covers ::applyLibrariesExtend
@group legacy
File
-
core/
tests/ Drupal/ Tests/ Core/ Asset/ LibraryDiscoveryCollectorTest.php, line 224
Class
- LibraryDiscoveryCollectorTest
- @coversDefaultClass \Drupal\Core\Asset\LibraryDiscoveryCollector @group Asset
Namespace
Drupal\Tests\Core\AssetCode
public function testLibrariesExtendDeprecated() : void {
$this->expectDeprecation('Theme "test" is extending a deprecated library. The "test/test_4" asset library is deprecated in drupal:X.0.0 and is removed from drupal:Y.0.0. Use the test_3 library instead. See https://www.example.com');
$this->activeTheme = $this->getMockBuilder(ActiveTheme::class)
->disableOriginalConstructor()
->getMock();
$this->themeManager
->expects($this->any())
->method('getActiveTheme')
->willReturn($this->activeTheme);
$this->activeTheme
->expects($this->once())
->method('getName')
->willReturn('kitten_theme');
$this->activeTheme
->expects($this->atLeastOnce())
->method('getLibrariesExtend')
->willReturn([
'test/test_4' => [
'kitten_theme/extend',
],
]);
$this->libraryDiscoveryParser
->expects($this->exactly(2))
->method('buildByExtension')
->willReturnMap([
[
'test',
$this->libraryData,
],
[
'kitten_theme',
[
'extend' => [
'css' => [
'theme' => [
'baz.css' => [],
],
],
],
],
],
]);
$library_discovery_collector = new LibraryDiscoveryCollector($this->cache, $this->lock, $this->libraryDiscoveryParser, $this->themeManager);
$library_discovery_collector->get('test');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.