function TelephoneItemTest::testTestItem

Same name and namespace in other branches
  1. 9 core/modules/telephone/tests/src/Kernel/TelephoneItemTest.php \Drupal\Tests\telephone\Kernel\TelephoneItemTest::testTestItem()
  2. 8.9.x core/modules/telephone/tests/src/Kernel/TelephoneItemTest.php \Drupal\Tests\telephone\Kernel\TelephoneItemTest::testTestItem()
  3. 11.x core/modules/telephone/tests/src/Kernel/TelephoneItemTest.php \Drupal\Tests\telephone\Kernel\TelephoneItemTest::testTestItem()

Tests using entity fields of the telephone field type.

File

core/modules/telephone/tests/src/Kernel/TelephoneItemTest.php, line 49

Class

TelephoneItemTest
Tests the new entity API for the telephone field type.

Namespace

Drupal\Tests\telephone\Kernel

Code

public function testTestItem() : void {
  // Verify entity creation.
  $entity = EntityTest::create();
  $value = '+0123456789';
  $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->field_test);
  $this->assertInstanceOf(FieldItemInterface::class, $entity->field_test[0]);
  $this->assertEquals($value, $entity->field_test->value);
  $this->assertEquals($value, $entity->field_test[0]->value);
  // Verify changing the field value.
  $new_value = '+41' . rand(1000000, 9999999);
  $entity->field_test->value = $new_value;
  $this->assertEquals($new_value, $entity->field_test->value);
  // Read changed entity and assert changed values.
  $entity->save();
  $entity = EntityTest::load($id);
  $this->assertEquals($new_value, $entity->field_test->value);
  // Test sample item generation.
  $entity = EntityTest::create();
  $entity->field_test
    ->generateSampleItems();
  $this->entityValidateAndSave($entity);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.