You are here

class FieldMissingTypeTest in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/KernelTests/Core/Field/FieldMissingTypeTest.php \Drupal\KernelTests\Core\Field\FieldMissingTypeTest
  2. 9 core/tests/Drupal/KernelTests/Core/Field/FieldMissingTypeTest.php \Drupal\KernelTests\Core\Field\FieldMissingTypeTest

Tests the exception when missing a field type.

@group Field

Hierarchy

Expanded class hierarchy of FieldMissingTypeTest

File

core/tests/Drupal/KernelTests/Core/Field/FieldMissingTypeTest.php, line 16

Namespace

Drupal\KernelTests\Core\Field
View source
class FieldMissingTypeTest extends EntityKernelTestBase {

  /**
   * Set to FALSE because we are hacking a field storage to use a fake type.
   *
   * @see \Drupal\Core\Config\Development\ConfigSchemaChecker
   *
   * @var bool
   */
  protected $strictConfigSchema = FALSE;

  /**
   * @var string
   */
  protected $fieldName;

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $entity_type_id = 'entity_test_mulrev';
    $this
      ->installEntitySchema($entity_type_id);
    $this->fieldName = mb_strtolower($this
      ->randomMachineName());

    /** @var \Drupal\field\Entity\FieldStorageConfig $field_storage */
    FieldStorageConfig::create([
      'field_name' => $this->fieldName,
      'type' => 'text',
      'entity_type' => $entity_type_id,
      'cardinality' => 1,
    ])
      ->save();
    FieldConfig::create([
      'entity_type' => $entity_type_id,
      'field_name' => $this->fieldName,
      'bundle' => $entity_type_id,
      'label' => 'Test field',
    ])
      ->save();
  }

  /**
   * Tests the exception thrown when missing a field type in field storages.
   *
   * @see \Drupal\field\FieldStorageConfigStorage::mapFromStorageRecords()
   */
  public function testFieldStorageMissingType() {
    $this
      ->expectException(PluginNotFoundException::class);
    $this
      ->expectExceptionMessage("Unable to determine class for field type 'foo_field_storage' found in the 'field.storage.entity_test_mulrev.{$this->fieldName}' configuration");
    $entity = EntityTestMulRev::create([
      'name' => $this
        ->randomString(),
      'field_test_item' => $this
        ->randomString(),
      $this->fieldName => $this
        ->randomString(),
    ]);
    $entity
      ->save();

    // Hack the field storage to use a non-existent field type.
    $this
      ->config('field.storage.entity_test_mulrev.' . $this->fieldName)
      ->set('type', 'foo_field_storage')
      ->save();
    \Drupal::service('entity_field.manager')
      ->clearCachedFieldDefinitions();
    EntityTestMulRev::load($entity
      ->id());
  }

  /**
   * Tests the exception thrown when missing a field type in fields.
   *
   * @see \Drupal\field\FieldConfigStorageBase::mapFromStorageRecords()
   */
  public function testFieldMissingType() {
    $this
      ->expectException(PluginNotFoundException::class);
    $this
      ->expectExceptionMessage("Unable to determine class for field type 'foo_field' found in the 'field.field.entity_test_mulrev.entity_test_mulrev.{$this->fieldName}' configuration");
    $entity = EntityTestMulRev::create([
      'name' => $this
        ->randomString(),
      'field_test_item' => $this
        ->randomString(),
      $this->fieldName => $this
        ->randomString(),
    ]);
    $entity
      ->save();

    // Hack the field to use a non-existent field type.
    $this
      ->config('field.field.entity_test_mulrev.entity_test_mulrev.' . $this->fieldName)
      ->set('field_type', 'foo_field')
      ->save();
    \Drupal::service('entity_field.manager')
      ->clearCachedFieldDefinitions();
    EntityTestMulRev::load($entity
      ->id());
  }

}

Members

Namesort descending Modifiers Type Description Overrides
FieldMissingTypeTest::$fieldName protected property
FieldMissingTypeTest::$strictConfigSchema protected property Set to FALSE because we are hacking a field storage to use a fake type.
FieldMissingTypeTest::setUp protected function
FieldMissingTypeTest::testFieldMissingType public function Tests the exception thrown when missing a field type in fields.
FieldMissingTypeTest::testFieldStorageMissingType public function Tests the exception thrown when missing a field type in field storages.