You are here

class YamlDiscoveryDecoratorTest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Plugin/Discovery/YamlDiscoveryDecoratorTest.php \Drupal\Tests\Core\Plugin\Discovery\YamlDiscoveryDecoratorTest

YamlDiscoveryDecorator unit tests.

@group Plugin

Hierarchy

Expanded class hierarchy of YamlDiscoveryDecoratorTest

File

core/tests/Drupal/Tests/Core/Plugin/Discovery/YamlDiscoveryDecoratorTest.php, line 18
Contains \Drupal\Tests\Core\Plugin\Discovery\YamlDiscoveryDecoratorTest.

Namespace

Drupal\Tests\Core\Plugin\Discovery
View source
class YamlDiscoveryDecoratorTest extends UnitTestCase {

  /**
   * The YamlDiscovery instance to test.
   *
   * @var \Drupal\Core\Plugin\Discovery\YamlDiscoveryDecorator
   */
  protected $discoveryDecorator;

  /**
   * Expected provider => key mappings for testing.
   *
   * @var array
   */
  protected $expectedKeys = array(
    'test_1' => 'test_1_a',
    'another_provider_1' => 'test_1_b',
    'another_provider_2' => 'test_2_a',
    'test_2' => 'test_2_b',
    'decorated_1' => 'decorated_test_1',
    'decorated_2' => 'decorated_test_2',
  );
  protected function setUp() {
    parent::setUp();
    $base_path = __DIR__ . '/Fixtures';

    // Set up the directories to search.
    $directories = array(
      'test_1' => $base_path . '/test_1',
      'test_2' => $base_path . '/test_2',
    );
    $definitions = array(
      'decorated_test_1' => array(
        'id' => 'decorated_test_1',
        'name' => 'Decorated test 1',
        'provider' => 'decorated_1',
      ),
      'decorated_test_2' => array(
        'id' => 'decorated_test_2',
        'name' => 'Decorated test 1',
        'provider' => 'decorated_2',
      ),
    );
    $decorated = $this
      ->getMock('Drupal\\Component\\Plugin\\Discovery\\DiscoveryInterface');
    $decorated
      ->expects($this
      ->once())
      ->method('getDefinitions')
      ->will($this
      ->returnValue($definitions));
    $this->discoveryDecorator = new YamlDiscoveryDecorator($decorated, 'test', $directories);
  }

  /**
   * Tests the getDefinitions() method.
   */
  public function testGetDefinitions() {
    $definitions = $this->discoveryDecorator
      ->getDefinitions();
    $this
      ->assertInternalType('array', $definitions);
    $this
      ->assertCount(6, $definitions);
    foreach ($this->expectedKeys as $expected_key) {
      $this
        ->assertArrayHasKey($expected_key, $definitions);
    }
    foreach ($definitions as $id => $definition) {
      foreach (array(
        'name',
        'id',
        'provider',
      ) as $key) {
        $this
          ->assertArrayHasKey($key, $definition);
      }
      $this
        ->assertEquals($id, $definition['id']);
      $this
        ->assertEquals(array_search($id, $this->expectedKeys), $definition['provider']);
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root.
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName protected function Mocks a block with a block plugin.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed in array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
YamlDiscoveryDecoratorTest::$discoveryDecorator protected property The YamlDiscovery instance to test.
YamlDiscoveryDecoratorTest::$expectedKeys protected property Expected provider => key mappings for testing.
YamlDiscoveryDecoratorTest::setUp protected function Overrides UnitTestCase::setUp
YamlDiscoveryDecoratorTest::testGetDefinitions public function Tests the getDefinitions() method.