You are here

TelephoneItemTest.php in Zircon Profile 8.0

Same filename and directory in other branches
  1. 8 core/modules/telephone/src/Tests/TelephoneItemTest.php

File

core/modules/telephone/src/Tests/TelephoneItemTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\telephone\Tests\TelephoneItemTest.
 */
namespace Drupal\telephone\Tests;

use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\FieldItemInterface;
use Drupal\field\Tests\FieldUnitTestBase;

/**
 * Tests the new entity API for the telephone field type.
 *
 * @group telephone
 */
class TelephoneItemTest extends FieldUnitTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'telephone',
  );
  protected function setUp() {
    parent::setUp();

    // Create a telephone field storage and field for validation.
    entity_create('field_storage_config', array(
      'field_name' => 'field_test',
      'entity_type' => 'entity_test',
      'type' => 'telephone',
    ))
      ->save();
    entity_create('field_config', array(
      'entity_type' => 'entity_test',
      'field_name' => 'field_test',
      'bundle' => 'entity_test',
    ))
      ->save();
  }

  /**
   * Tests using entity fields of the telephone field type.
   */
  public function testTestItem() {

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

    // Verify entity has been created properly.
    $id = $entity
      ->id();
    $entity = entity_load('entity_test', $id);
    $this
      ->assertTrue($entity->field_test instanceof FieldItemListInterface, '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);

    // Test sample item generation.
    $entity = entity_create('entity_test');
    $entity->field_test
      ->generateSampleItems();
    $this
      ->entityValidateAndSave($entity);
  }

}

Classes

Namesort descending Description
TelephoneItemTest Tests the new entity API for the telephone field type.