You are here

public function BlockConfigEntityUnitTest::testCalculateDependencies in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/block/tests/src/Unit/BlockConfigEntityUnitTest.php \Drupal\Tests\block\Unit\BlockConfigEntityUnitTest::testCalculateDependencies()
  2. 10 core/modules/block/tests/src/Unit/BlockConfigEntityUnitTest.php \Drupal\Tests\block\Unit\BlockConfigEntityUnitTest::testCalculateDependencies()

@covers ::calculateDependencies

File

core/modules/block/tests/src/Unit/BlockConfigEntityUnitTest.php, line 93

Class

BlockConfigEntityUnitTest
@coversDefaultClass \Drupal\block\Entity\Block @group block

Namespace

Drupal\Tests\block\Unit

Code

public function testCalculateDependencies() {
  $this->themeHandler
    ->themeExists('stark')
    ->willReturn(TRUE);
  $values = [
    'theme' => 'stark',
  ];

  // Mock the entity under test so that we can mock getPluginCollections().
  $entity = $this
    ->getMockBuilder('\\Drupal\\block\\Entity\\Block')
    ->setConstructorArgs([
    $values,
    $this->entityTypeId,
  ])
    ->setMethods([
    'getPluginCollections',
  ])
    ->getMock();

  // Create a configurable plugin that would add a dependency.
  $instance_id = $this
    ->randomMachineName();
  $this->moduleHandler
    ->moduleExists('test')
    ->willReturn(TRUE);
  $instance = new TestConfigurablePlugin([], $instance_id, [
    'provider' => 'test',
  ]);

  // Create a plugin collection to contain the instance.
  $plugin_collection = $this
    ->getMockBuilder('\\Drupal\\Core\\Plugin\\DefaultLazyPluginCollection')
    ->disableOriginalConstructor()
    ->setMethods([
    'get',
  ])
    ->getMock();
  $plugin_collection
    ->expects($this
    ->atLeastOnce())
    ->method('get')
    ->with($instance_id)
    ->will($this
    ->returnValue($instance));
  $plugin_collection
    ->addInstanceId($instance_id);

  // Return the mocked plugin collection.
  $entity
    ->expects($this
    ->once())
    ->method('getPluginCollections')
    ->will($this
    ->returnValue([
    $plugin_collection,
  ]));
  $dependencies = $entity
    ->calculateDependencies()
    ->getDependencies();
  $this
    ->assertContains('test', $dependencies['module']);
  $this
    ->assertContains('stark', $dependencies['theme']);
}