class BooleanItemTest in Drupal 10
Same name and namespace in other branches
- 8 core/modules/field/tests/src/Kernel/Boolean/BooleanItemTest.php \Drupal\Tests\field\Kernel\Boolean\BooleanItemTest
- 9 core/modules/field/tests/src/Kernel/Boolean/BooleanItemTest.php \Drupal\Tests\field\Kernel\Boolean\BooleanItemTest
Tests the new entity API for the boolean field type.
@group field
Hierarchy
- class \Drupal\Tests\field\Kernel\Boolean\BooleanItemTest extends \Drupal\Tests\field\Kernel\FieldKernelTestBase
Expanded class hierarchy of BooleanItemTest
File
- core/
modules/ field/ tests/ src/ Kernel/ Boolean/ BooleanItemTest.php, line 17
Namespace
Drupal\Tests\field\Kernel\BooleanView source
class BooleanItemTest extends FieldKernelTestBase {
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
// Create a boolean field and storage for validation.
FieldStorageConfig::create([
'field_name' => 'field_boolean',
'entity_type' => 'entity_test',
'type' => 'boolean',
])
->save();
FieldConfig::create([
'entity_type' => 'entity_test',
'field_name' => 'field_boolean',
'bundle' => 'entity_test',
])
->save();
// Create a form display for the default form mode.
\Drupal::service('entity_display.repository')
->getFormDisplay('entity_test', 'entity_test')
->setComponent('field_boolean', [
'type' => 'boolean_checkbox',
])
->save();
}
/**
* Tests using entity fields of the boolean field type.
*/
public function testBooleanItem() {
// Verify entity creation.
$entity = EntityTest::create();
$value = '1';
$entity->field_boolean = $value;
$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_boolean);
$this
->assertInstanceOf(FieldItemInterface::class, $entity->field_boolean[0]);
$this
->assertEquals($value, $entity->field_boolean->value);
$this
->assertEquals($value, $entity->field_boolean[0]->value);
// Verify changing the boolean value.
$new_value = 0;
$entity->field_boolean->value = $new_value;
$this
->assertEquals($new_value, $entity->field_boolean->value);
// Read changed entity and assert changed values.
$entity
->save();
$entity = EntityTest::load($id);
$this
->assertEquals($new_value, $entity->field_boolean->value);
// Test sample item generation.
$entity = EntityTest::create();
$entity->field_boolean
->generateSampleItems();
$this
->entityValidateAndSave($entity);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BooleanItemTest:: |
protected | function | ||
BooleanItemTest:: |
public | function | Tests using entity fields of the boolean field type. |