You are here

function InspectionTest::testInspection in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/src/Tests/Plugin/InspectionTest.php \Drupal\system\Tests\Plugin\InspectionTest::testInspection()

Ensure the test plugins correctly implement getPluginId() and getPluginDefinition().

File

core/modules/system/src/Tests/Plugin/InspectionTest.php, line 20
Contains \Drupal\system\Tests\Plugin\InspectionTest.

Class

InspectionTest
Tests that plugins implementing PluginInspectionInterface are inspectable.

Namespace

Drupal\system\Tests\Plugin

Code

function testInspection() {
  foreach (array(
    'user_login',
  ) as $id) {
    $plugin = $this->testPluginManager
      ->createInstance($id);
    $expected_definition = $this->testPluginExpectedDefinitions[$id];
    $this
      ->assertIdentical($plugin
      ->getPluginId(), $id);
    $this
      ->assertIdentical($this->testPluginManager
      ->getDefinition($id), $expected_definition);
    $this
      ->assertIdentical($plugin
      ->getPluginDefinition(), $expected_definition);
  }

  // Skip the 'menu' derived blocks, because MockMenuBlock does not implement
  // PluginInspectionInterface. The others do by extending PluginBase.
  foreach (array(
    'user_login',
    'layout',
  ) as $id) {
    $plugin = $this->mockBlockManager
      ->createInstance($id);
    $expected_definition = $this->mockBlockExpectedDefinitions[$id];
    $this
      ->assertIdentical($plugin
      ->getPluginId(), $id);
    $this
      ->assertIdentical($this
      ->castSafeStrings($this->mockBlockManager
      ->getDefinition($id)), $expected_definition);
    $this
      ->assertIdentical($this
      ->castSafeStrings($plugin
      ->getPluginDefinition()), $expected_definition);
  }

  // Test a plugin manager that provides defaults.
  foreach (array(
    'test_block1',
    'test_block2',
  ) as $id) {
    $plugin = $this->defaultsTestPluginManager
      ->createInstance($id);
    $expected_definition = $this->defaultsTestPluginExpectedDefinitions[$id];
    $this
      ->assertIdentical($plugin
      ->getPluginId(), $id);
    $this
      ->assertIdentical($this->defaultsTestPluginManager
      ->getDefinition($id), $expected_definition);
    $this
      ->assertIdentical($this
      ->castSafeStrings($plugin
      ->getPluginDefinition()), $expected_definition);
  }
}