You are here

ShapeItemTest.php in Zircon Profile 8.0

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

Namespace

Drupal\field\Tests

File

core/modules/field/src/Tests/ShapeItemTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\field\Tests\ShapeItemTest.
 */
namespace Drupal\field\Tests;

use Drupal\Core\Field\FieldItemInterface;
use Drupal\Core\Field\FieldItemListInterface;

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

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'field_test',
  );

  /**
   * The name of the field to use in this test.
   *
   * @var string
   */
  protected $fieldName = 'field_shape';
  protected function setUp() {
    parent::setUp();

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

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

    // Verify entity creation.
    $entity = entity_create('entity_test');
    $shape = 'cube';
    $color = 'blue';
    $entity->{$this->fieldName}->shape = $shape;
    $entity->{$this->fieldName}->color = $color;
    $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->{$this->fieldName} instanceof FieldItemListInterface, 'Field implements interface.');
    $this
      ->assertTrue($entity->{$this->fieldName}[0] instanceof FieldItemInterface, 'Field item implements interface.');
    $this
      ->assertEqual($entity->{$this->fieldName}->shape, $shape);
    $this
      ->assertEqual($entity->{$this->fieldName}->color, $color);
    $this
      ->assertEqual($entity->{$this->fieldName}[0]->shape, $shape);
    $this
      ->assertEqual($entity->{$this->fieldName}[0]->color, $color);

    // Verify changing the field value.
    $new_shape = 'circle';
    $new_color = 'red';
    $entity->{$this->fieldName}->shape = $new_shape;
    $entity->{$this->fieldName}->color = $new_color;
    $this
      ->assertEqual($entity->{$this->fieldName}->shape, $new_shape);
    $this
      ->assertEqual($entity->{$this->fieldName}->color, $new_color);

    // Read changed entity and assert changed values.
    $entity
      ->save();
    $entity = entity_load('entity_test', $id);
    $this
      ->assertEqual($entity->{$this->fieldName}->shape, $new_shape);
    $this
      ->assertEqual($entity->{$this->fieldName}->color, $new_color);
  }

}

Classes

Namesort descending Description
ShapeItemTest Tests the new entity API for the shape field type.