You are here

protected function EntityDefinitionTestTrait::addLongNameBaseField in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/src/Functional/Entity/Traits/EntityDefinitionTestTrait.php \Drupal\Tests\system\Functional\Entity\Traits\EntityDefinitionTestTrait::addLongNameBaseField()
  2. 10 core/modules/system/tests/src/Functional/Entity/Traits/EntityDefinitionTestTrait.php \Drupal\Tests\system\Functional\Entity\Traits\EntityDefinitionTestTrait::addLongNameBaseField()

Adds a long-named base field to the 'entity_test_update' entity type.

1 call to EntityDefinitionTestTrait::addLongNameBaseField()
EntityDefinitionUpdateTest::testLongNameFieldIndexes in core/tests/Drupal/KernelTests/Core/Entity/EntityDefinitionUpdateTest.php
Check that field schema is correctly handled with long-named fields.

File

core/modules/system/tests/src/Functional/Entity/Traits/EntityDefinitionTestTrait.php, line 253

Class

EntityDefinitionTestTrait
Provides some test methods used to update existing entity definitions.

Namespace

Drupal\Tests\system\Functional\Entity\Traits

Code

protected function addLongNameBaseField() {
  $key = 'entity_test_update.additional_base_field_definitions';
  $definitions = $this->state
    ->get($key, []);
  $definitions['new_long_named_entity_reference_base_field'] = BaseFieldDefinition::create('entity_reference')
    ->setName('new_long_named_entity_reference_base_field')
    ->setLabel(t('A new long-named base field'))
    ->setSetting('target_type', 'user')
    ->setSetting('handler', 'default');
  $this->state
    ->set($key, $definitions);
}