You are here

class EntityDisplayModeBaseUnitTest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Config/Entity/EntityDisplayModeBaseUnitTest.php \Drupal\Tests\Core\Config\Entity\EntityDisplayModeBaseUnitTest

@coversDefaultClass \Drupal\Core\Entity\EntityDisplayModeBase @group Config

Hierarchy

Expanded class hierarchy of EntityDisplayModeBaseUnitTest

File

core/tests/Drupal/Tests/Core/Config/Entity/EntityDisplayModeBaseUnitTest.php, line 17
Contains \Drupal\Tests\Core\Config\Entity\EntityDisplayModeBaseUnitTest.

Namespace

Drupal\Tests\Core\Config\Entity
View source
class EntityDisplayModeBaseUnitTest extends UnitTestCase {

  /**
   * The entity under test.
   *
   * @var \Drupal\Core\Entity\EntityDisplayModeBase|\PHPUnit_Framework_MockObject_MockObject
   */
  protected $entity;

  /**
   * The entity type used for testing.
   *
   * @var \Drupal\Core\Entity\EntityTypeInterface|\PHPUnit_Framework_MockObject_MockObject
   */
  protected $entityInfo;

  /**
   * The entity manager used for testing.
   *
   * @var \Drupal\Core\Entity\EntityManagerInterface|\PHPUnit_Framework_MockObject_MockObject
   */
  protected $entityManager;

  /**
   * The ID of the type of the entity under test.
   *
   * @var string
   */
  protected $entityType;

  /**
   * The UUID generator used for testing.
   *
   * @var \Drupal\Component\Uuid\UuidInterface|\PHPUnit_Framework_MockObject_MockObject
   */
  protected $uuid;

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    $this->entityType = $this
      ->randomMachineName();
    $this->entityInfo = $this
      ->getMock('\\Drupal\\Core\\Entity\\EntityTypeInterface');
    $this->entityInfo
      ->expects($this
      ->any())
      ->method('getProvider')
      ->will($this
      ->returnValue('entity'));
    $this->entityManager = $this
      ->getMock('\\Drupal\\Core\\Entity\\EntityManagerInterface');
    $this->uuid = $this
      ->getMock('\\Drupal\\Component\\Uuid\\UuidInterface');
    $container = new ContainerBuilder();
    $container
      ->set('entity.manager', $this->entityManager);
    $container
      ->set('uuid', $this->uuid);
    \Drupal::setContainer($container);
  }

  /**
   * @covers ::calculateDependencies
   */
  public function testCalculateDependencies() {
    $target_entity_type_id = $this
      ->randomMachineName(16);
    $target_entity_type = $this
      ->getMock('\\Drupal\\Core\\Entity\\EntityTypeInterface');
    $target_entity_type
      ->expects($this
      ->any())
      ->method('getProvider')
      ->will($this
      ->returnValue('test_module'));
    $values = array(
      'targetEntityType' => $target_entity_type_id,
    );
    $this->entityManager
      ->expects($this
      ->at(0))
      ->method('getDefinition')
      ->with($target_entity_type_id)
      ->will($this
      ->returnValue($target_entity_type));
    $this->entityManager
      ->expects($this
      ->at(1))
      ->method('getDefinition')
      ->with($this->entityType)
      ->will($this
      ->returnValue($this->entityInfo));
    $this->entity = $this
      ->getMockBuilder('\\Drupal\\Core\\Entity\\EntityDisplayModeBase')
      ->setConstructorArgs(array(
      $values,
      $this->entityType,
    ))
      ->setMethods(array(
      'getFilterFormat',
    ))
      ->getMock();
    $dependencies = $this->entity
      ->calculateDependencies()
      ->getDependencies();
    $this
      ->assertContains('test_module', $dependencies['module']);
  }

  /**
   * @covers ::setTargetType
   */
  public function testSetTargetType() {

    // Generate mock.
    $mock = $this
      ->getMock('Drupal\\Core\\Entity\\EntityDisplayModeBase', NULL, array(
      array(
        'something' => 'nothing',
      ),
      'test_type',
    ));

    // Some test values.
    $bad_target = 'uninitialized';
    $target = 'test_target_type';

    // Gain access to the protected property.
    $property = new \ReflectionProperty($mock, 'targetEntityType');
    $property
      ->setAccessible(TRUE);

    // Set the property to a known state.
    $property
      ->setValue($mock, $bad_target);

    // Set the target type.
    $mock
      ->setTargetType($target);

    // Test the outcome.
    $this
      ->assertNotEquals($bad_target, $property
      ->getValue($mock));
    $this
      ->assertEquals($target, $property
      ->getValue($mock));
  }

  /**
   * @covers ::getTargetType
   */
  public function testGetTargetType() {

    // Generate mock.
    $mock = $this
      ->getMock('Drupal\\Core\\Entity\\EntityDisplayModeBase', NULL, array(
      array(
        'something' => 'nothing',
      ),
      'test_type',
    ));

    // A test value.
    $target = 'test_target_type';

    // Gain access to the protected property.
    $property = new \ReflectionProperty($mock, 'targetEntityType');
    $property
      ->setAccessible(TRUE);

    // Set the property to a known state.
    $property
      ->setValue($mock, $target);

    // Get the target type.
    $value = $mock
      ->getTargetType($target);

    // Test the outcome.
    $this
      ->assertEquals($value, $property
      ->getValue($mock));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
EntityDisplayModeBaseUnitTest::$entity protected property The entity under test.
EntityDisplayModeBaseUnitTest::$entityInfo protected property The entity type used for testing.
EntityDisplayModeBaseUnitTest::$entityManager protected property The entity manager used for testing.
EntityDisplayModeBaseUnitTest::$entityType protected property The ID of the type of the entity under test.
EntityDisplayModeBaseUnitTest::$uuid protected property The UUID generator used for testing.
EntityDisplayModeBaseUnitTest::setUp protected function Overrides UnitTestCase::setUp
EntityDisplayModeBaseUnitTest::testCalculateDependencies public function @covers ::calculateDependencies
EntityDisplayModeBaseUnitTest::testGetTargetType public function @covers ::getTargetType
EntityDisplayModeBaseUnitTest::testSetTargetType public function @covers ::setTargetType
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.