function LibraryDiscoveryCollectorTest::testLibrariesExtendDeprecated

Same name and namespace in other branches
  1. 10 core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryCollectorTest.php \Drupal\Tests\Core\Asset\LibraryDiscoveryCollectorTest::testLibrariesExtendDeprecated()
  2. 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 220

Class

LibraryDiscoveryCollectorTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Asset%21LibraryDiscoveryCollector.php/class/LibraryDiscoveryCollector/9" title="A CacheCollector implementation for building library extension info." class="local">\Drupal\Core\Asset\LibraryDiscoveryCollector</a> @group Asset

Namespace

Drupal\Tests\Core\Asset

Code

public function testLibrariesExtendDeprecated() {
    $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.