You are here

public function DerivativeDiscoveryDecoratorTest::testGetDerivativeFetcherWithAnnotationObjects in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Plugin/Discovery/DerivativeDiscoveryDecoratorTest.php \Drupal\Tests\Core\Plugin\Discovery\DerivativeDiscoveryDecoratorTest::testGetDerivativeFetcherWithAnnotationObjects()

Tests the getDerivativeFetcher method with objects instead of arrays.

File

core/tests/Drupal/Tests/Core/Plugin/Discovery/DerivativeDiscoveryDecoratorTest.php, line 65
Contains \Drupal\Tests\Core\Plugin\Discovery\DerivativeDiscoveryDecoratorTest.

Class

DerivativeDiscoveryDecoratorTest
Unit tests for the derivative discovery decorator.

Namespace

Drupal\Tests\Core\Plugin\Discovery

Code

public function testGetDerivativeFetcherWithAnnotationObjects() {
  $definitions = array();
  $definitions['non_container_aware_discovery'] = (object) array(
    'id' => 'non_container_aware_discovery',
    'deriver' => '\\Drupal\\Tests\\Core\\Plugin\\Discovery\\TestDerivativeDiscoveryWithObject',
  );
  $this->discoveryMain
    ->expects($this
    ->any())
    ->method('getDefinitions')
    ->will($this
    ->returnValue($definitions));
  $discovery = new DerivativeDiscoveryDecorator($this->discoveryMain);
  $definitions = $discovery
    ->getDefinitions();

  // Ensure that both test derivatives got added.
  $this
    ->assertEquals(2, count($definitions));
  $this
    ->assertInstanceOf('\\stdClass', $definitions['non_container_aware_discovery:test_discovery_0']);
  $this
    ->assertEquals('non_container_aware_discovery', $definitions['non_container_aware_discovery:test_discovery_0']->id);
  $this
    ->assertEquals('\\Drupal\\Tests\\Core\\Plugin\\Discovery\\TestDerivativeDiscoveryWithObject', $definitions['non_container_aware_discovery:test_discovery_0']->deriver);
  $this
    ->assertInstanceOf('\\stdClass', $definitions['non_container_aware_discovery:test_discovery_1']);
  $this
    ->assertEquals('non_container_aware_discovery', $definitions['non_container_aware_discovery:test_discovery_1']->id);
  $this
    ->assertEquals('\\Drupal\\Tests\\Core\\Plugin\\Discovery\\TestDerivativeDiscoveryWithObject', $definitions['non_container_aware_discovery:test_discovery_1']->deriver);
}