public function TextWithSummaryItemTest::testCrudAndUpdate in Drupal 9
Same name and namespace in other branches
- 8 core/modules/text/tests/src/Kernel/TextWithSummaryItemTest.php \Drupal\Tests\text\Kernel\TextWithSummaryItemTest::testCrudAndUpdate()
Tests processed properties.
File
- core/
modules/ text/ tests/ src/ Kernel/ TextWithSummaryItemTest.php, line 56
Class
- TextWithSummaryItemTest
- Tests using entity fields of the text summary field type.
Namespace
Drupal\Tests\text\KernelCode
public function testCrudAndUpdate() {
$entity_type = 'entity_test';
$this
->createField($entity_type);
// Create an entity with a summary and no text format.
$storage = $this->container
->get('entity_type.manager')
->getStorage($entity_type);
$entity = $storage
->create();
$entity->summary_field->value = $value = $this
->randomMachineName();
$entity->summary_field->summary = $summary = $this
->randomMachineName();
$entity->summary_field->format = NULL;
$entity->name->value = $this
->randomMachineName();
$entity
->save();
$entity = $storage
->load($entity
->id());
$this
->assertInstanceOf(FieldItemListInterface::class, $entity->summary_field);
$this
->assertInstanceOf(FieldItemInterface::class, $entity->summary_field[0]);
$this
->assertEquals($value, $entity->summary_field->value);
$this
->assertEquals($summary, $entity->summary_field->summary);
$this
->assertNull($entity->summary_field->format);
// Even if no format is given, if text processing is enabled, the default
// format is used.
$this
->assertEquals("<p>{$value}</p>\n", $entity->summary_field->processed);
$this
->assertEquals("<p>{$summary}</p>\n", $entity->summary_field->summary_processed);
// Change the format, this should update the processed properties.
$entity->summary_field->format = 'no_filters';
$this
->assertEquals($value, $entity->summary_field->processed);
$this
->assertEquals($summary, $entity->summary_field->summary_processed);
// Test the generateSampleValue() method.
$entity = $this->container
->get('entity_type.manager')
->getStorage($entity_type)
->create();
$entity->summary_field
->generateSampleItems();
$this
->entityValidateAndSave($entity);
}