function EntityCrudHookTest::testCommentHooks
Same name in other branches
- 9 core/tests/Drupal/KernelTests/Core/Entity/EntityCrudHookTest.php \Drupal\KernelTests\Core\Entity\EntityCrudHookTest::testCommentHooks()
- 8.9.x core/tests/Drupal/KernelTests/Core/Entity/EntityCrudHookTest.php \Drupal\KernelTests\Core\Entity\EntityCrudHookTest::testCommentHooks()
- 10 core/tests/Drupal/KernelTests/Core/Entity/EntityCrudHookTest.php \Drupal\KernelTests\Core\Entity\EntityCrudHookTest::testCommentHooks()
Tests hook invocations for CRUD operations on comments.
File
-
core/
tests/ Drupal/ KernelTests/ Core/ Entity/ EntityCrudHookTest.php, line 153
Class
- EntityCrudHookTest
- Tests entity CRUD via hooks.
Namespace
Drupal\KernelTests\Core\EntityCode
public function testCommentHooks() : void {
$account = $this->createUser();
NodeType::create([
'type' => 'article',
'name' => 'Article',
])->save();
$this->addDefaultCommentField('node', 'article', 'comment', CommentItemInterface::OPEN);
$node = Node::create([
'uid' => $account->id(),
'type' => 'article',
'title' => 'Test node',
'status' => 1,
'promote' => 0,
'sticky' => 0,
'langcode' => LanguageInterface::LANGCODE_NOT_SPECIFIED,
'created' => \Drupal::time()->getRequestTime(),
'changed' => \Drupal::time()->getRequestTime(),
]);
$node->save();
$nid = $node->id();
$GLOBALS['entity_crud_hook_test'] = [];
$comment = Comment::create([
'cid' => NULL,
'pid' => 0,
'entity_id' => $nid,
'entity_type' => 'node',
'field_name' => 'comment',
'uid' => $account->id(),
'subject' => 'Test comment',
'created' => \Drupal::time()->getRequestTime(),
'changed' => \Drupal::time()->getRequestTime(),
'status' => 1,
'langcode' => LanguageInterface::LANGCODE_NOT_SPECIFIED,
]);
$this->assertHookMessageOrder([
'entity_crud_hook_test_comment_create called',
'entity_crud_hook_test_entity_create called for type comment',
]);
$GLOBALS['entity_crud_hook_test'] = [];
$comment->save();
$this->assertHookMessageOrder([
'entity_crud_hook_test_comment_presave called',
'entity_crud_hook_test_entity_presave called for type comment',
'entity_crud_hook_test_comment_insert called',
'entity_crud_hook_test_entity_insert called for type comment',
]);
$GLOBALS['entity_crud_hook_test'] = [];
$comment = Comment::load($comment->id());
$this->assertHookMessageOrder([
'entity_crud_hook_test_entity_load called for type comment',
'entity_crud_hook_test_comment_load called',
]);
$GLOBALS['entity_crud_hook_test'] = [];
$comment->setSubject('New subject');
$comment->save();
$this->assertHookMessageOrder([
'entity_crud_hook_test_comment_presave called',
'entity_crud_hook_test_entity_presave called for type comment',
'entity_crud_hook_test_comment_update called',
'entity_crud_hook_test_entity_update called for type comment',
]);
$GLOBALS['entity_crud_hook_test'] = [];
$comment->delete();
$this->assertHookMessageOrder([
'entity_crud_hook_test_comment_predelete called',
'entity_crud_hook_test_entity_predelete called for type comment',
'entity_crud_hook_test_comment_delete called',
'entity_crud_hook_test_entity_delete called for type comment',
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.