View source
<?php
namespace Drupal\Tests\Core\Entity;
use Drupal\Component\Plugin\Exception\PluginNotFoundException;
use Drupal\Core\Cache\Cache;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Cache\CacheTagsInvalidatorInterface;
use Drupal\Core\Config\Entity\ConfigEntityStorageInterface;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\ContentEntityTypeInterface;
use Drupal\Core\Entity\EntityDisplayRepositoryInterface;
use Drupal\Core\Entity\EntityFieldManager;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityTypeBundleInfoInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Entity\EntityTypeRepositoryInterface;
use Drupal\Core\Entity\FieldableEntityInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Field\BaseFieldDefinition;
use Drupal\Core\Field\FieldDefinitionInterface;
use Drupal\Core\Field\FieldStorageDefinitionInterface;
use Drupal\Core\Field\FieldTypePluginManagerInterface;
use Drupal\Core\Field\Plugin\Field\FieldType\BooleanItem;
use Drupal\Core\KeyValueStore\KeyValueFactoryInterface;
use Drupal\Core\KeyValueStore\KeyValueStoreInterface;
use Drupal\Core\Language\Language;
use Drupal\Core\Language\LanguageManagerInterface;
use Drupal\Core\StringTranslation\TranslationInterface;
use Drupal\Core\TypedData\TypedDataManagerInterface;
use Drupal\Tests\UnitTestCase;
use Prophecy\Argument;
use Symfony\Component\DependencyInjection\ContainerInterface;
class EntityFieldManagerTest extends UnitTestCase {
protected $typedDataManager;
protected $moduleHandler;
protected $cacheBackend;
protected $cacheTagsInvalidator;
protected $languageManager;
protected $keyValueFactory;
protected $eventDispatcher;
protected $entityTypeManager;
protected $entityTypeRepository;
protected $entityTypeBundleInfo;
protected $entityDisplayRepository;
protected $entityFieldManager;
protected $container;
protected $entityType;
public function setUp() {
parent::setUp();
$this->container = $this
->prophesize(ContainerInterface::class);
\Drupal::setContainer($this->container
->reveal());
$this->typedDataManager = $this
->prophesize(TypedDataManagerInterface::class);
$this->typedDataManager
->getDefinition('field_item:boolean')
->willReturn([
'class' => BooleanItem::class,
]);
$this->container
->get('typed_data_manager')
->willReturn($this->typedDataManager
->reveal());
$this->moduleHandler = $this
->prophesize(ModuleHandlerInterface::class);
$this->moduleHandler
->alter('entity_base_field_info', Argument::type('array'), Argument::any())
->willReturn(NULL);
$this->moduleHandler
->alter('entity_bundle_field_info', Argument::type('array'), Argument::any(), Argument::type('string'))
->willReturn(NULL);
$this->cacheBackend = $this
->prophesize(CacheBackendInterface::class);
$this->cacheTagsInvalidator = $this
->prophesize(CacheTagsInvalidatorInterface::class);
$language = new Language([
'id' => 'en',
]);
$this->languageManager = $this
->prophesize(LanguageManagerInterface::class);
$this->languageManager
->getCurrentLanguage()
->willReturn($language);
$this->languageManager
->getLanguages()
->willReturn([
'en' => (object) [
'id' => 'en',
],
]);
$this->keyValueFactory = $this
->prophesize(KeyValueFactoryInterface::class);
$this->entityTypeManager = $this
->prophesize(EntityTypeManagerInterface::class);
$this->entityTypeRepository = $this
->prophesize(EntityTypeRepositoryInterface::class);
$this->entityTypeBundleInfo = $this
->prophesize(EntityTypeBundleInfoInterface::class);
$this->entityDisplayRepository = $this
->prophesize(EntityDisplayRepositoryInterface::class);
$this->entityFieldManager = new TestEntityFieldManager($this->entityTypeManager
->reveal(), $this->entityTypeBundleInfo
->reveal(), $this->entityDisplayRepository
->reveal(), $this->typedDataManager
->reveal(), $this->languageManager
->reveal(), $this->keyValueFactory
->reveal(), $this->moduleHandler
->reveal(), $this->cacheBackend
->reveal());
}
protected function setUpEntityTypeDefinitions($definitions = []) {
$class = $this
->getMockClass(EntityInterface::class);
foreach ($definitions as $key => $entity_type) {
$entity_type
->getLinkTemplates()
->willReturn([]);
$entity_type
->getClass()
->willReturn($class);
$definitions[$key] = $entity_type
->reveal();
}
$this->entityTypeManager
->getDefinition(Argument::type('string'))
->will(function ($args) use ($definitions) {
if (isset($definitions[$args[0]])) {
return $definitions[$args[0]];
}
throw new PluginNotFoundException($args[0]);
});
$this->entityTypeManager
->getDefinition(Argument::type('string'), FALSE)
->will(function ($args) use ($definitions) {
if (isset($definitions[$args[0]])) {
return $definitions[$args[0]];
}
});
$this->entityTypeManager
->getDefinitions()
->willReturn($definitions);
}
public function testGetBaseFieldDefinitions() {
$field_definition = $this
->setUpEntityWithFieldDefinition();
$expected = [
'id' => $field_definition,
];
$this
->assertSame($expected, $this->entityFieldManager
->getBaseFieldDefinitions('test_entity_type'));
}
public function testGetFieldDefinitions() {
$field_definition = $this
->setUpEntityWithFieldDefinition();
$expected = [
'id' => $field_definition,
];
$this
->assertSame($expected, $this->entityFieldManager
->getFieldDefinitions('test_entity_type', 'test_entity_bundle'));
}
public function testGetFieldStorageDefinitions() {
$field_definition = $this
->setUpEntityWithFieldDefinition(TRUE);
$field_storage_definition = $this
->prophesize(FieldStorageDefinitionInterface::class);
$field_storage_definition
->getName()
->willReturn('field_storage');
$definitions = [
'field_storage' => $field_storage_definition
->reveal(),
];
$this->moduleHandler
->getImplementations('entity_base_field_info')
->willReturn([]);
$this->moduleHandler
->getImplementations('entity_field_storage_info')
->willReturn([
'example_module',
]);
$this->moduleHandler
->invoke('example_module', 'entity_field_storage_info', [
$this->entityType,
])
->willReturn($definitions);
$this->moduleHandler
->alter('entity_field_storage_info', $definitions, $this->entityType)
->willReturn(NULL);
$expected = [
'id' => $field_definition,
'field_storage' => $field_storage_definition
->reveal(),
];
$this
->assertSame($expected, $this->entityFieldManager
->getFieldStorageDefinitions('test_entity_type'));
}
public function testGetBaseFieldDefinitionsTranslatableEntityTypeDefaultLangcode($default_langcode_key) {
$this
->setUpEntityWithFieldDefinition(FALSE, 'id', [
'langcode' => 'langcode',
'default_langcode' => $default_langcode_key,
]);
$field_definition = $this
->prophesize()
->willImplement(FieldDefinitionInterface::class)
->willImplement(FieldStorageDefinitionInterface::class);
$field_definition
->isTranslatable()
->willReturn(TRUE);
$entity_class = EntityManagerTestEntity::class;
$entity_class::$baseFieldDefinitions += [
'langcode' => $field_definition,
];
$this->entityType
->isTranslatable()
->willReturn(TRUE);
$definitions = $this->entityFieldManager
->getBaseFieldDefinitions('test_entity_type');
$this
->assertTrue(isset($definitions[$default_langcode_key]));
}
public function providerTestGetBaseFieldDefinitionsTranslatableEntityTypeDefaultLangcode() {
return [
[
'default_langcode',
],
[
'custom_default_langcode_key',
],
];
}
public function testGetBaseFieldDefinitionsTranslatableEntityTypeLangcode($provide_key, $provide_field, $translatable) {
$keys = $provide_key ? [
'langcode' => 'langcode',
] : [];
$this
->setUpEntityWithFieldDefinition(FALSE, 'id', $keys);
if ($provide_field) {
$field_definition = $this
->prophesize()
->willImplement(FieldDefinitionInterface::class)
->willImplement(FieldStorageDefinitionInterface::class);
$field_definition
->isTranslatable()
->willReturn($translatable);
if (!$translatable) {
$field_definition
->setTranslatable(!$translatable)
->shouldBeCalled();
}
$entity_class = EntityManagerTestEntity::class;
$entity_class::$baseFieldDefinitions += [
'langcode' => $field_definition
->reveal(),
];
}
$this->entityType
->isTranslatable()
->willReturn(TRUE);
$this->entityType
->getLabel()
->willReturn('Test');
$this->entityFieldManager
->getBaseFieldDefinitions('test_entity_type');
}
public function providerTestGetBaseFieldDefinitionsTranslatableEntityTypeLangcode() {
return [
[
FALSE,
TRUE,
TRUE,
],
[
TRUE,
FALSE,
TRUE,
],
[
TRUE,
TRUE,
FALSE,
],
];
}
public function testGetBaseFieldDefinitionsWithCaching() {
$field_definition = $this
->setUpEntityWithFieldDefinition();
$expected = [
'id' => $field_definition,
];
$this->cacheBackend
->get('entity_base_field_definitions:test_entity_type:en')
->willReturn(FALSE)
->shouldBeCalled();
$this->cacheBackend
->set('entity_base_field_definitions:test_entity_type:en', Argument::any(), Cache::PERMANENT, [
'entity_types',
'entity_field_info',
])
->will(function ($args) {
$data = (object) [
'data' => $args[1],
];
$this
->get('entity_base_field_definitions:test_entity_type:en')
->willReturn($data)
->shouldBeCalled();
})
->shouldBeCalled();
$this
->assertSame($expected, $this->entityFieldManager
->getBaseFieldDefinitions('test_entity_type'));
$this->entityFieldManager
->testClearEntityFieldInfo();
$this
->assertSame($expected, $this->entityFieldManager
->getBaseFieldDefinitions('test_entity_type'));
}
public function testGetFieldDefinitionsWithCaching() {
$field_definition = $this
->setUpEntityWithFieldDefinition(FALSE, 'id');
$expected = [
'id' => $field_definition,
];
$this->cacheBackend
->get('entity_base_field_definitions:test_entity_type:en')
->willReturn((object) [
'data' => $expected,
])
->shouldBeCalledTimes(2);
$this->cacheBackend
->get('entity_bundle_field_definitions:test_entity_type:test_bundle:en')
->willReturn(FALSE)
->shouldBeCalledTimes(1);
$this->cacheBackend
->set('entity_bundle_field_definitions:test_entity_type:test_bundle:en', Argument::any(), Cache::PERMANENT, [
'entity_types',
'entity_field_info',
])
->will(function ($args) {
$data = (object) [
'data' => $args[1],
];
$this
->get('entity_bundle_field_definitions:test_entity_type:test_bundle:en')
->willReturn($data)
->shouldBeCalled();
})
->shouldBeCalled();
$this
->assertSame($expected, $this->entityFieldManager
->getFieldDefinitions('test_entity_type', 'test_bundle'));
$this->entityFieldManager
->testClearEntityFieldInfo();
$this
->assertSame($expected, $this->entityFieldManager
->getFieldDefinitions('test_entity_type', 'test_bundle'));
}
public function testGetFieldStorageDefinitionsWithCaching() {
$field_definition = $this
->setUpEntityWithFieldDefinition(TRUE, 'id');
$field_storage_definition = $this
->prophesize(FieldStorageDefinitionInterface::class);
$field_storage_definition
->getName()
->willReturn('field_storage');
$definitions = [
'field_storage' => $field_storage_definition
->reveal(),
];
$this->moduleHandler
->getImplementations('entity_field_storage_info')
->willReturn([
'example_module',
]);
$this->moduleHandler
->invoke('example_module', 'entity_field_storage_info', [
$this->entityType,
])
->willReturn($definitions);
$this->moduleHandler
->alter('entity_field_storage_info', $definitions, $this->entityType)
->willReturn(NULL);
$expected = [
'id' => $field_definition,
'field_storage' => $field_storage_definition
->reveal(),
];
$this->cacheBackend
->get('entity_base_field_definitions:test_entity_type:en')
->willReturn((object) [
'data' => [
'id' => $expected['id'],
],
])
->shouldBeCalledTimes(2);
$this->cacheBackend
->get('entity_field_storage_definitions:test_entity_type:en')
->willReturn(FALSE);
$this->cacheBackend
->set('entity_field_storage_definitions:test_entity_type:en', Argument::any(), Cache::PERMANENT, [
'entity_types',
'entity_field_info',
])
->will(function () use ($expected) {
$this
->get('entity_field_storage_definitions:test_entity_type:en')
->willReturn((object) [
'data' => $expected,
])
->shouldBeCalled();
})
->shouldBeCalled();
$this
->assertSame($expected, $this->entityFieldManager
->getFieldStorageDefinitions('test_entity_type'));
$this->entityFieldManager
->testClearEntityFieldInfo();
$this
->assertSame($expected, $this->entityFieldManager
->getFieldStorageDefinitions('test_entity_type'));
}
public function testGetBaseFieldDefinitionsInvalidDefinition() {
$this
->setUpEntityWithFieldDefinition(FALSE, 'langcode', [
'langcode' => 'langcode',
]);
$this->entityType
->isTranslatable()
->willReturn(TRUE);
$this->entityType
->getLabel()
->willReturn('the_label');
$this->entityFieldManager
->getBaseFieldDefinitions('test_entity_type');
}
public function testGetFieldDefinitionsProvider() {
$this
->setUpEntityWithFieldDefinition(TRUE);
$module = 'entity_manager_test_module';
$field_definition = $this
->prophesize(BaseFieldDefinition::class);
$field_definition
->getProvider()
->shouldBeCalled();
$field_definition
->setProvider($module)
->shouldBeCalledTimes(2);
$field_definition
->setName(0)
->shouldBeCalledTimes(2);
$field_definition
->setTargetEntityTypeId('test_entity_type')
->shouldBeCalled();
$field_definition
->setTargetBundle(NULL)
->shouldBeCalled();
$field_definition
->setTargetBundle('test_bundle')
->shouldBeCalled();
$this->moduleHandler
->getImplementations(Argument::type('string'))
->willReturn([
$module,
]);
$this->moduleHandler
->invoke($module, 'entity_base_field_info', [
$this->entityType,
])
->willReturn([
$field_definition
->reveal(),
]);
$this->moduleHandler
->invoke($module, 'entity_bundle_field_info', Argument::type('array'))
->willReturn([
$field_definition
->reveal(),
]);
$this->entityFieldManager
->getFieldDefinitions('test_entity_type', 'test_bundle');
}
protected function setUpEntityWithFieldDefinition($custom_invoke_all = FALSE, $field_definition_id = 'id', $entity_keys = []) {
$field_type_manager = $this
->prophesize(FieldTypePluginManagerInterface::class);
$field_type_manager
->getDefaultStorageSettings('boolean')
->willReturn([]);
$field_type_manager
->getDefaultFieldSettings('boolean')
->willReturn([]);
$this->container
->get('plugin.manager.field.field_type')
->willReturn($field_type_manager
->reveal());
$string_translation = $this
->prophesize(TranslationInterface::class);
$this->container
->get('string_translation')
->willReturn($string_translation
->reveal());
$entity_class = EntityManagerTestEntity::class;
$field_definition = $this
->prophesize()
->willImplement(FieldDefinitionInterface::class)
->willImplement(FieldStorageDefinitionInterface::class);
$entity_class::$baseFieldDefinitions = [
$field_definition_id => $field_definition
->reveal(),
];
$entity_class::$bundleFieldDefinitions = [];
if (!$custom_invoke_all) {
$this->moduleHandler
->getImplementations(Argument::cetera())
->willReturn([]);
}
$override_entity_type = $this
->prophesize(EntityTypeInterface::class);
$this->entityType = $this
->prophesize(EntityTypeInterface::class);
$this
->setUpEntityTypeDefinitions([
'test_entity_type' => $this->entityType,
'base_field_override' => $override_entity_type,
]);
$storage = $this
->prophesize(ConfigEntityStorageInterface::class);
$storage
->loadMultiple(Argument::type('array'))
->willReturn([]);
$this->entityTypeManager
->getStorage('base_field_override')
->willReturn($storage
->reveal());
$this->entityType
->getClass()
->willReturn($entity_class);
$this->entityType
->getKeys()
->willReturn($entity_keys + [
'default_langcode' => 'default_langcode',
]);
$this->entityType
->isSubclassOf(FieldableEntityInterface::class)
->willReturn(TRUE);
$this->entityType
->isTranslatable()
->willReturn(FALSE);
$this->entityType
->getProvider()
->willReturn('the_provider');
$this->entityType
->id()
->willReturn('the_entity_id');
return $field_definition
->reveal();
}
public function testClearCachedFieldDefinitions() {
$this
->setUpEntityTypeDefinitions();
$this->cacheTagsInvalidator
->invalidateTags([
'entity_field_info',
])
->shouldBeCalled();
$this->container
->get('cache_tags.invalidator')
->willReturn($this->cacheTagsInvalidator
->reveal())
->shouldBeCalled();
$this->typedDataManager
->clearCachedDefinitions()
->shouldBeCalled();
$this->entityFieldManager
->clearCachedFieldDefinitions();
}
function testGetExtraFields() {
$this
->setUpEntityTypeDefinitions();
$entity_type_id = $this
->randomMachineName();
$bundle = $this
->randomMachineName();
$language_code = 'en';
$hook_bundle_extra_fields = [
$entity_type_id => [
$bundle => [
'form' => [
'foo_extra_field' => [
'label' => 'Foo',
],
],
],
],
];
$processed_hook_bundle_extra_fields = $hook_bundle_extra_fields;
$processed_hook_bundle_extra_fields[$entity_type_id][$bundle] += [
'display' => [],
];
$cache_id = 'entity_bundle_extra_fields:' . $entity_type_id . ':' . $bundle . ':' . $language_code;
$language = new Language([
'id' => $language_code,
]);
$this->languageManager
->getCurrentLanguage()
->willReturn($language)
->shouldBeCalledTimes(1);
$this->cacheBackend
->get($cache_id)
->shouldBeCalled();
$this->moduleHandler
->invokeAll('entity_extra_field_info')
->willReturn($hook_bundle_extra_fields);
$this->moduleHandler
->alter('entity_extra_field_info', $hook_bundle_extra_fields)
->shouldBeCalled();
$this->cacheBackend
->set($cache_id, $processed_hook_bundle_extra_fields[$entity_type_id][$bundle], Cache::PERMANENT, [
'entity_field_info',
])
->shouldBeCalled();
$this
->assertSame($processed_hook_bundle_extra_fields[$entity_type_id][$bundle], $this->entityFieldManager
->getExtraFields($entity_type_id, $bundle));
}
public function testGetFieldMap() {
$this->entityTypeBundleInfo
->getBundleInfo('test_entity_type')
->willReturn([])
->shouldBeCalled();
$entity_type = $this
->prophesize(ContentEntityTypeInterface::class);
$entity_class = EntityManagerTestEntity::class;
$id_definition = $this
->prophesize(FieldDefinitionInterface::class);
$id_definition
->getType()
->willReturn('integer');
$base_field_definitions = [
'id' => $id_definition
->reveal(),
];
$entity_class::$baseFieldDefinitions = $base_field_definitions;
$key_value_store = $this
->prophesize(KeyValueStoreInterface::class);
$this->keyValueFactory
->get('entity.definitions.bundle_field_map')
->willReturn($key_value_store
->reveal());
$key_value_store
->getAll()
->willReturn([
'test_entity_type' => [
'by_bundle' => [
'type' => 'string',
'bundles' => [
'second_bundle' => 'second_bundle',
],
],
],
]);
$non_content_entity_type = $this
->prophesize(EntityTypeInterface::class);
$override_entity_type = $this
->prophesize(EntityTypeInterface::class);
$this
->setUpEntityTypeDefinitions([
'test_entity_type' => $entity_type,
'non_fieldable' => $non_content_entity_type,
'base_field_override' => $override_entity_type,
]);
$entity_type
->getClass()
->willReturn($entity_class);
$entity_type
->getKeys()
->willReturn([
'default_langcode' => 'default_langcode',
]);
$entity_type
->isSubclassOf(FieldableEntityInterface::class)
->willReturn(TRUE);
$entity_type
->isTranslatable()
->shouldBeCalled();
$entity_type
->getProvider()
->shouldBeCalled();
$non_content_entity_type
->isSubclassOf(FieldableEntityInterface::class)
->willReturn(FALSE);
$override_entity_type
->isSubclassOf(FieldableEntityInterface::class)
->willReturn(FALSE);
$this->entityTypeBundleInfo
->getBundleInfo('test_entity_type')
->willReturn([
'first_bundle' => 'first_bundle',
'second_bundle' => 'second_bundle',
])
->shouldBeCalled();
$this->moduleHandler
->getImplementations('entity_base_field_info')
->willReturn([]);
$expected = [
'test_entity_type' => [
'id' => [
'type' => 'integer',
'bundles' => [
'first_bundle' => 'first_bundle',
'second_bundle' => 'second_bundle',
],
],
'by_bundle' => [
'type' => 'string',
'bundles' => [
'second_bundle' => 'second_bundle',
],
],
],
];
$this
->assertEquals($expected, $this->entityFieldManager
->getFieldMap());
}
public function testGetFieldMapFromCache() {
$expected = [
'test_entity_type' => [
'id' => [
'type' => 'integer',
'bundles' => [
'first_bundle' => 'first_bundle',
'second_bundle' => 'second_bundle',
],
],
'by_bundle' => [
'type' => 'string',
'bundles' => [
'second_bundle' => 'second_bundle',
],
],
],
];
$this
->setUpEntityTypeDefinitions();
$this->cacheBackend
->get('entity_field_map')
->willReturn((object) [
'data' => $expected,
]);
$this
->assertEquals($expected, $this->entityFieldManager
->getFieldMap());
$this
->assertEquals($expected, $this->entityFieldManager
->getFieldMap());
}
public function testGetFieldMapByFieldType() {
$entity_type = $this
->prophesize(ContentEntityTypeInterface::class);
$entity_class = EntityManagerTestEntity::class;
$this->entityTypeBundleInfo
->getBundleInfo('test_entity_type')
->willReturn([
'first_bundle' => 'first_bundle',
'second_bundle' => 'second_bundle',
])
->shouldBeCalled();
$this->moduleHandler
->getImplementations('entity_base_field_info')
->willReturn([])
->shouldBeCalled();
$id_definition = $this
->prophesize(FieldDefinitionInterface::class);
$id_definition
->getType()
->willReturn('integer')
->shouldBeCalled();
$base_field_definitions = [
'id' => $id_definition
->reveal(),
];
$entity_class::$baseFieldDefinitions = $base_field_definitions;
$key_value_store = $this
->prophesize(KeyValueStoreInterface::class);
$this->keyValueFactory
->get('entity.definitions.bundle_field_map')
->willReturn($key_value_store
->reveal())
->shouldBeCalled();
$key_value_store
->getAll()
->willReturn([
'test_entity_type' => [
'by_bundle' => [
'type' => 'string',
'bundles' => [
'second_bundle' => 'second_bundle',
],
],
],
])
->shouldBeCalled();
$override_entity_type = $this
->prophesize(EntityTypeInterface::class);
$this
->setUpEntityTypeDefinitions([
'test_entity_type' => $entity_type,
'base_field_override' => $override_entity_type,
]);
$entity_type
->getClass()
->willReturn($entity_class)
->shouldBeCalled();
$entity_type
->getKeys()
->willReturn([
'default_langcode' => 'default_langcode',
])
->shouldBeCalled();
$entity_type
->isSubclassOf(FieldableEntityInterface::class)
->willReturn(TRUE)
->shouldBeCalled();
$entity_type
->isTranslatable()
->shouldBeCalled();
$entity_type
->getProvider()
->shouldBeCalled();
$override_entity_type
->isSubclassOf(FieldableEntityInterface::class)
->willReturn(FALSE)
->shouldBeCalled();
$integerFields = $this->entityFieldManager
->getFieldMapByFieldType('integer');
$this
->assertCount(1, $integerFields['test_entity_type']);
$this
->assertArrayNotHasKey('non_fieldable', $integerFields);
$this
->assertArrayHasKey('id', $integerFields['test_entity_type']);
$this
->assertArrayNotHasKey('by_bundle', $integerFields['test_entity_type']);
$stringFields = $this->entityFieldManager
->getFieldMapByFieldType('string');
$this
->assertCount(1, $stringFields['test_entity_type']);
$this
->assertArrayNotHasKey('non_fieldable', $stringFields);
$this
->assertArrayHasKey('by_bundle', $stringFields['test_entity_type']);
$this
->assertArrayNotHasKey('id', $stringFields['test_entity_type']);
}
}
class TestEntityFieldManager extends EntityFieldManager {
public function testClearEntityFieldInfo() {
$this->baseFieldDefinitions = [];
$this->fieldDefinitions = [];
$this->fieldStorageDefinitions = [];
}
}
abstract class EntityManagerTestEntity implements \Iterator, ContentEntityInterface {
public static $baseFieldDefinitions = [];
public static $bundleFieldDefinitions = [];
public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
return static::$baseFieldDefinitions;
}
public static function bundleFieldDefinitions(EntityTypeInterface $entity_type, $bundle, array $base_field_definitions) {
return isset(static::$bundleFieldDefinitions[$entity_type
->id()][$bundle]) ? static::$bundleFieldDefinitions[$entity_type
->id()][$bundle] : [];
}
}