You are here

public function NumberItemTest::testNumberItem in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/field/tests/src/Kernel/Number/NumberItemTest.php \Drupal\Tests\field\Kernel\Number\NumberItemTest::testNumberItem()
  2. 10 core/modules/field/tests/src/Kernel/Number/NumberItemTest.php \Drupal\Tests\field\Kernel\Number\NumberItemTest::testNumberItem()

Tests using entity fields of the number field type.

File

core/modules/field/tests/src/Kernel/Number/NumberItemTest.php, line 47

Class

NumberItemTest
Tests the new entity API for the number field type.

Namespace

Drupal\Tests\field\Kernel\Number

Code

public function testNumberItem() {

  // Verify entity creation.
  $entity = EntityTest::create();
  $integer = rand(0, 10);
  $entity->field_integer = $integer;
  $float = 3.14;
  $entity->field_float = $float;
  $entity->field_decimal = '20-40';
  $violations = $entity
    ->validate();
  $this
    ->assertCount(1, $violations, 'Wrong decimal value causes validation error');
  $decimal = '31.3';
  $entity->field_decimal = $decimal;
  $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_integer);
  $this
    ->assertInstanceOf(FieldItemInterface::class, $entity->field_integer[0]);
  $this
    ->assertEqual($entity->field_integer->value, $integer);
  $this
    ->assertEqual($entity->field_integer[0]->value, $integer);
  $this
    ->assertInstanceOf(FieldItemListInterface::class, $entity->field_float);
  $this
    ->assertInstanceOf(FieldItemInterface::class, $entity->field_float[0]);
  $this
    ->assertEqual($entity->field_float->value, $float);
  $this
    ->assertEqual($entity->field_float[0]->value, $float);
  $this
    ->assertInstanceOf(FieldItemListInterface::class, $entity->field_decimal);
  $this
    ->assertInstanceOf(FieldItemInterface::class, $entity->field_decimal[0]);
  $this
    ->assertEqual($entity->field_decimal->value, (double) $decimal);
  $this
    ->assertEqual($entity->field_decimal[0]->value, (double) $decimal);

  // Verify changing the number value.
  $new_integer = rand(11, 20);
  $new_float = rand(1001, 2000) / 100;
  $new_decimal = '18.2';
  $entity->field_integer->value = $new_integer;
  $this
    ->assertEqual($entity->field_integer->value, $new_integer);
  $entity->field_float->value = $new_float;
  $this
    ->assertEqual($entity->field_float->value, $new_float);
  $entity->field_decimal->value = $new_decimal;
  $this
    ->assertEqual($entity->field_decimal->value, (double) $new_decimal);

  // Read changed entity and assert changed values.
  $entity
    ->save();
  $entity = EntityTest::load($id);
  $this
    ->assertEqual($entity->field_integer->value, $new_integer);
  $this
    ->assertEqual($entity->field_float->value, $new_float);
  $this
    ->assertEqual($entity->field_decimal->value, (double) $new_decimal);

  // Test sample item generation.
  $entity = EntityTest::create();
  $entity->field_integer
    ->generateSampleItems();
  $entity->field_float
    ->generateSampleItems();
  $entity->field_decimal
    ->generateSampleItems();
  $this
    ->entityValidateAndSave($entity);
}