function EntityReferenceFieldCreationTest::testAddReferenceFieldTargetingEntityTypeWithoutId
Same name in other branches
- 9 core/modules/system/tests/src/Functional/Entity/EntityReferenceFieldCreationTest.php \Drupal\Tests\system\Functional\Entity\EntityReferenceFieldCreationTest::testAddReferenceFieldTargetingEntityTypeWithoutId()
- 10 core/modules/system/tests/src/Functional/Entity/EntityReferenceFieldCreationTest.php \Drupal\Tests\system\Functional\Entity\EntityReferenceFieldCreationTest::testAddReferenceFieldTargetingEntityTypeWithoutId()
Tests that entity reference fields cannot target entity types without IDs.
File
-
core/
modules/ system/ tests/ src/ Functional/ Entity/ EntityReferenceFieldCreationTest.php, line 34
Class
- EntityReferenceFieldCreationTest
- Tests creating entity reference fields in the UI.
Namespace
Drupal\Tests\system\Functional\EntityCode
public function testAddReferenceFieldTargetingEntityTypeWithoutId() : void {
$node_type = $this->drupalCreateContentType()
->id();
$this->drupalLogin($this->drupalCreateUser([
'administer content types',
'administer node fields',
]));
// Entity types without an ID key should not be presented as options when
// creating an entity reference field in the UI.
$this->fieldUIAddNewField("/admin/structure/types/manage/{$node_type}", 'test_reference_field', 'Test Field', 'entity_reference', [], [], FALSE);
$this->assertSession()
->optionNotExists('field_storage[subform][settings][target_type]', 'entity_test_no_id');
// Trying to do it programmatically should raise an exception.
$this->expectException('\\Drupal\\Core\\Field\\FieldException');
$this->expectExceptionMessage('Entity type "entity_test_no_id" has no ID key and cannot be targeted by entity reference field "test_reference_field"');
$this->createEntityReferenceField('node', $node_type, 'test_reference_field', 'Test Field', 'entity_test_no_id');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.