public function CommentItemTest::testCommentItem in Drupal 9
Same name and namespace in other branches
- 8 core/modules/comment/tests/src/Kernel/CommentItemTest.php \Drupal\Tests\comment\Kernel\CommentItemTest::testCommentItem()
Tests using entity fields of the comment field type.
File
- core/
modules/ comment/ tests/ src/ Kernel/ CommentItemTest.php, line 38
Class
- CommentItemTest
- Tests the new entity API for the comment field type.
Namespace
Drupal\Tests\comment\KernelCode
public function testCommentItem() {
$this
->addDefaultCommentField('entity_test', 'entity_test', 'comment');
// Verify entity creation.
$entity = EntityTest::create();
$entity->name->value = $this
->randomMachineName();
$entity
->save();
// Verify entity has been created properly.
$id = $entity
->id();
$storage = $this->container
->get('entity_type.manager')
->getStorage('entity_test');
$storage
->resetCache([
$id,
]);
$entity = $storage
->load($id);
$this
->assertInstanceOf(FieldItemListInterface::class, $entity->comment);
$this
->assertInstanceOf(CommentItemInterface::class, $entity->comment[0]);
// Test sample item generation.
/** @var \Drupal\entity_test\Entity\EntityTest $entity */
$entity = EntityTest::create();
$entity->comment
->generateSampleItems();
$this
->entityValidateAndSave($entity);
$this
->assertContains($entity
->get('comment')->status, [
CommentItemInterface::HIDDEN,
CommentItemInterface::CLOSED,
CommentItemInterface::OPEN,
], 'Comment status value in defined range');
$mainProperty = $entity->comment[0]
->mainPropertyName();
$this
->assertEquals('status', $mainProperty);
}