You are here

public function TestItemTest::testTestItem in Drupal 8

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

Tests using entity fields of the field field type.

File

core/modules/field/tests/src/Kernel/TestItemTest.php, line 52

Class

TestItemTest
Tests the new entity API for the test field type.

Namespace

Drupal\Tests\field\Kernel

Code

public function testTestItem() {

  // Verify entity creation.
  $entity = EntityTest::create();
  $value = rand(1, 10);
  $entity->field_test = $value;
  $entity->name->value = $this
    ->randomMachineName();
  $entity
    ->save();

  // Verify entity has been created properly.
  $id = $entity
    ->id();
  $entity = EntityTest::load($id);
  $this
    ->assertInstanceOf(FieldItemListInterface::class, $entity->{$this->fieldName});
  $this
    ->assertInstanceOf(FieldItemInterface::class, $entity->{$this->fieldName}[0]);
  $this
    ->assertEqual($entity->{$this->fieldName}->value, $value);
  $this
    ->assertEqual($entity->{$this->fieldName}[0]->value, $value);

  // Verify changing the field value.
  $new_value = rand(1, 10);
  $entity->field_test->value = $new_value;
  $this
    ->assertEqual($entity->{$this->fieldName}->value, $new_value);

  // Read changed entity and assert changed values.
  $entity
    ->save();
  $entity = EntityTest::load($id);
  $this
    ->assertEqual($entity->{$this->fieldName}->value, $new_value);

  // Test the schema for this field type.
  $expected_schema = [
    'columns' => [
      'value' => [
        'type' => 'int',
        'size' => 'medium',
      ],
    ],
    'unique keys' => [],
    'indexes' => [
      'value' => [
        'value',
      ],
    ],
    'foreign keys' => [],
  ];
  $field_schema = BaseFieldDefinition::create('test_field')
    ->getSchema();
  $this
    ->assertEqual($field_schema, $expected_schema);
}