function LibraryDiscoveryCollectorTest::testResolveCacheMiss

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryCollectorTest.php \Drupal\Tests\Core\Asset\LibraryDiscoveryCollectorTest::testResolveCacheMiss()
  2. 8.9.x core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryCollectorTest.php \Drupal\Tests\Core\Asset\LibraryDiscoveryCollectorTest::testResolveCacheMiss()
  3. 11.x core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryCollectorTest.php \Drupal\Tests\Core\Asset\LibraryDiscoveryCollectorTest::testResolveCacheMiss()

Tests the resolve cache miss function.

@covers ::resolveCacheMiss

File

core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryCollectorTest.php, line 109

Class

LibraryDiscoveryCollectorTest
@coversDefaultClass \Drupal\Core\Asset\LibraryDiscoveryCollector[[api-linebreak]] @group Asset

Namespace

Drupal\Tests\Core\Asset

Code

public function testResolveCacheMiss() : void {
  $this->activeTheme = $this->getMockBuilder(ActiveTheme::class)
    ->disableOriginalConstructor()
    ->getMock();
  $this->themeManager
    ->expects($this->exactly(5))
    ->method('getActiveTheme')
    ->willReturn($this->activeTheme);
  $this->activeTheme
    ->expects($this->once())
    ->method('getName')
    ->willReturn('kitten_theme');
  $this->libraryDiscoveryCollector = new LibraryDiscoveryCollector($this->cache, $this->lock, $this->libraryDiscoveryParser, $this->themeManager);
  $this->libraryDiscoveryParser
    ->expects($this->once())
    ->method('buildByExtension')
    ->with('test')
    ->willReturn($this->libraryData);
  $this->assertSame($this->libraryData, $this->libraryDiscoveryCollector
    ->get('test'));
  $this->assertSame($this->libraryData, $this->libraryDiscoveryCollector
    ->get('test'));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.