You are here

public function YamlDiscoveryTest::testGetDefinitions in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Plugin/Discovery/YamlDiscoveryTest.php \Drupal\Tests\Core\Plugin\Discovery\YamlDiscoveryTest::testGetDefinitions()
  2. 10 core/tests/Drupal/Tests/Core/Plugin/Discovery/YamlDiscoveryTest.php \Drupal\Tests\Core\Plugin\Discovery\YamlDiscoveryTest::testGetDefinitions()

Tests the getDefinitions() method.

File

core/tests/Drupal/Tests/Core/Plugin/Discovery/YamlDiscoveryTest.php, line 51

Class

YamlDiscoveryTest
@coversDefaultClass \Drupal\Core\Plugin\Discovery\YamlDiscovery @group Plugin

Namespace

Drupal\Tests\Core\Plugin\Discovery

Code

public function testGetDefinitions() {
  $definitions = $this->discovery
    ->getDefinitions();
  $this
    ->assertIsArray($definitions);
  $this
    ->assertCount(4, $definitions);
  foreach ($this->expectedKeys as $expected_key) {
    $this
      ->assertArrayHasKey($expected_key, $definitions);
  }
  foreach ($definitions as $id => $definition) {
    foreach ([
      'name',
      'id',
      'provider',
    ] as $key) {
      $this
        ->assertArrayHasKey($key, $definition);
    }
    $this
      ->assertEquals($id, $definition['id']);
    $this
      ->assertEquals(array_search($id, $this->expectedKeys), $definition['provider']);
  }
}