public function ConfigEntityMapperTest::testEntityGetterAndSetter in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/config_translation/tests/src/Unit/ConfigEntityMapperTest.php \Drupal\Tests\config_translation\Unit\ConfigEntityMapperTest::testEntityGetterAndSetter()
Tests ConfigEntityMapper::setEntity() and ConfigEntityMapper::getEntity().
File
- core/
modules/ config_translation/ tests/ src/ Unit/ ConfigEntityMapperTest.php, line 104 - Contains \Drupal\Tests\config_translation\Unit\ConfigEntityMapperTest.
Class
- ConfigEntityMapperTest
- Tests the functionality provided by the configuration entity mapper.
Namespace
Drupal\Tests\config_translation\UnitCode
public function testEntityGetterAndSetter() {
$this->entity
->expects($this
->once())
->method('id')
->with()
->will($this
->returnValue('entity_id'));
$entity_type = $this
->getMock('Drupal\\Core\\Config\\Entity\\ConfigEntityTypeInterface');
$entity_type
->expects($this
->any())
->method('getConfigPrefix')
->will($this
->returnValue('config_prefix'));
$this->entityManager
->expects($this
->once())
->method('getDefinition')
->with('configurable_language')
->will($this
->returnValue($entity_type));
// No entity is set.
$this
->assertNull($this->configEntityMapper
->getEntity());
$result = $this->configEntityMapper
->setEntity($this->entity);
$this
->assertTrue($result);
// Ensure that the getter provides the entity.
$this
->assertEquals($this->entity, $this->configEntityMapper
->getEntity());
// Ensure that the configuration name was added to the mapper.
$plugin_definition = $this->configEntityMapper
->getPluginDefinition();
$this
->assertTrue(in_array('config_prefix.entity_id', $plugin_definition['names']));
// Make sure setEntity() returns FALSE when called a second time.
$result = $this->configEntityMapper
->setEntity($this->entity);
$this
->assertFalse($result);
}