public function TelephoneItemTest::testTestItem

Tests using entity fields of the telephone field type.

File

drupal/core/modules/telephone/lib/Drupal/telephone/Tests/TelephoneItemTest.php, line 54
Contains \Drupal\field\Tests\TelephoneItemTest.

Class

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

Namespace

Drupal\telephone\Tests

Code

public function testTestItem() {

  // Verify entity creation.
  $entity = entity_create('entity_test', array());
  $value = '+0123456789';
  $entity->field_test = $value;
  $entity->name->value = $this
    ->randomName();
  $entity
    ->save();

  // Verify entity has been created properly.
  $id = $entity
    ->id();
  $entity = entity_load('entity_test', $id);
  $this
    ->assertTrue($entity->field_test instanceof FieldInterface, 'Field implements interface.');
  $this
    ->assertTrue($entity->field_test[0] instanceof FieldItemInterface, 'Field item implements interface.');
  $this
    ->assertEqual($entity->field_test->value, $value);
  $this
    ->assertEqual($entity->field_test[0]->value, $value);

  // Verify changing the field value.
  $new_value = '+41' . rand(1000000, 9999999);
  $entity->field_test->value = $new_value;
  $this
    ->assertEqual($entity->field_test->value, $new_value);

  // Read changed entity and assert changed values.
  $entity
    ->save();
  $entity = entity_load('entity_test', $id);
  $this
    ->assertEqual($entity->field_test->value, $new_value);
}