protected function MigrateEckTestBase::assertFieldInstance in Entity Construction Kit (ECK) 8
Asserts various aspects of a field config entity.
Parameters
string $id: The entity ID in the form ENTITY_TYPE.BUNDLE.FIELD_NAME.
string $expected_label: The expected field label.
string $expected_field_type: The expected field type.
bool $is_required: Whether or not the field is required.
bool $expected_translatable: Whether or not the field is expected to be translatable.
1 call to MigrateEckTestBase::assertFieldInstance()
- MigrateEckFieldInstanceTest::testFieldInstances in tests/
src/ Kernel/ Migrate/ d7/ MigrateEckFieldInstanceTest.php - Tests migrating D7 field instances to field_config entities.
File
- tests/
src/ Kernel/ Migrate/ d7/ MigrateEckTestBase.php, line 168
Class
- MigrateEckTestBase
- Base class for ECK migration tests.
Namespace
Drupal\Tests\eck\Kernel\Migrate\d7Code
protected function assertFieldInstance($id, $expected_label, $expected_field_type, $is_required, $expected_translatable) {
list($expected_entity_type, $expected_bundle, $expected_name) = explode('.', $id);
/** @var \Drupal\field\FieldConfigInterface $field */
$field = FieldConfig::load($id);
$this
->assertInstanceOf(FieldConfigInterface::class, $field);
$this
->assertEquals($expected_label, $field
->label());
$this
->assertEquals($expected_field_type, $field
->getType());
$this
->assertEquals($expected_entity_type, $field
->getTargetEntityTypeId());
$this
->assertEquals($expected_bundle, $field
->getTargetBundle());
$this
->assertEquals($expected_name, $field
->getName());
$this
->assertEquals($is_required, $field
->isRequired());
$this
->assertEquals($expected_entity_type . '.' . $expected_name, $field
->getFieldStorageDefinition()
->id());
$this
->assertEquals($expected_translatable, $field
->isTranslatable());
}