public function RdfMappingConfigEntityUnitTest::testCalculateDependencies in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/rdf/tests/src/Unit/RdfMappingConfigEntityUnitTest.php \Drupal\Tests\rdf\Unit\RdfMappingConfigEntityUnitTest::testCalculateDependencies()
@covers ::calculateDependencies
File
- core/
modules/ rdf/ tests/ src/ Unit/ RdfMappingConfigEntityUnitTest.php, line 73 - Contains \Drupal\Tests\rdf\Unit\RdfMappingConfigEntityUnitTest.
Class
- RdfMappingConfigEntityUnitTest
- @coversDefaultClass \Drupal\rdf\Entity\RdfMapping @group rdf
Namespace
Drupal\Tests\rdf\UnitCode
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,
);
$target_entity_type
->expects($this
->any())
->method('getBundleEntityType')
->will($this
->returnValue(NULL));
$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->entityTypeId)
->will($this
->returnValue($this->entityType));
$entity = new RdfMapping($values, $this->entityTypeId);
$dependencies = $entity
->calculateDependencies()
->getDependencies();
$this
->assertArrayNotHasKey('config', $dependencies);
$this
->assertContains('test_module', $dependencies['module']);
}