function ShapeItemTest::testShapeItem
Same name in other branches
- 9 core/modules/field/tests/src/Kernel/ShapeItemTest.php \Drupal\Tests\field\Kernel\ShapeItemTest::testShapeItem()
- 8.9.x core/modules/field/tests/src/Kernel/ShapeItemTest.php \Drupal\Tests\field\Kernel\ShapeItemTest::testShapeItem()
- 11.x core/modules/field/tests/src/Kernel/ShapeItemTest.php \Drupal\Tests\field\Kernel\ShapeItemTest::testShapeItem()
Tests using entity fields of the shape field type.
File
-
core/
modules/ field/ tests/ src/ Kernel/ ShapeItemTest.php, line 54
Class
- ShapeItemTest
- Tests the new entity API for the shape field type.
Namespace
Drupal\Tests\field\KernelCode
public function testShapeItem() : void {
// Verify entity creation.
$entity = EntityTest::create();
$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 = EntityTest::load($id);
$this->assertInstanceOf(FieldItemListInterface::class, $entity->{$this->fieldName});
$this->assertInstanceOf(FieldItemInterface::class, $entity->{$this->fieldName}[0]);
$this->assertEquals($shape, $entity->{$this->fieldName}->shape);
$this->assertEquals($color, $entity->{$this->fieldName}->color);
$this->assertEquals($shape, $entity->{$this->fieldName}[0]->shape);
$this->assertEquals($color, $entity->{$this->fieldName}[0]->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->assertEquals($new_shape, $entity->{$this->fieldName}->shape);
$this->assertEquals($new_color, $entity->{$this->fieldName}->color);
// Read changed entity and assert changed values.
$entity->save();
$entity = EntityTest::load($id);
$this->assertEquals($new_shape, $entity->{$this->fieldName}->shape);
$this->assertEquals($new_color, $entity->{$this->fieldName}->color);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.