You are here

protected function MigrateFieldInstanceTest::assertEntity in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldInstanceTest.php \Drupal\Tests\field\Kernel\Migrate\d7\MigrateFieldInstanceTest::assertEntity()

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 MigrateFieldInstanceTest::assertEntity()
MigrateFieldInstanceTest::testFieldInstances in core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldInstanceTest.php
Tests migrating D7 field instances to field_config entities.

File

core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldInstanceTest.php, line 53

Class

MigrateFieldInstanceTest
Migrates Drupal 7 field instances.

Namespace

Drupal\Tests\field\Kernel\Migrate\d7

Code

protected function assertEntity($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());
}