You are here

public function EntityCrudHookTest::testNodeHooks in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Entity/EntityCrudHookTest.php \Drupal\KernelTests\Core\Entity\EntityCrudHookTest::testNodeHooks()

Tests hook invocations for CRUD operations on nodes.

File

core/tests/Drupal/KernelTests/Core/Entity/EntityCrudHookTest.php, line 298

Class

EntityCrudHookTest
Tests the invocation of hooks when creating, inserting, loading, updating or deleting an entity.

Namespace

Drupal\KernelTests\Core\Entity

Code

public function testNodeHooks() {
  $account = $this
    ->createUser();
  $node = Node::create([
    'uid' => $account
      ->id(),
    'type' => 'article',
    'title' => 'Test node',
    'status' => 1,
    'promote' => 0,
    'sticky' => 0,
    'langcode' => LanguageInterface::LANGCODE_NOT_SPECIFIED,
    'created' => REQUEST_TIME,
    'changed' => REQUEST_TIME,
  ]);
  $this
    ->assertHookMessageOrder([
    'entity_crud_hook_test_node_create called',
    'entity_crud_hook_test_entity_create called for type node',
  ]);
  $GLOBALS['entity_crud_hook_test'] = [];
  $node
    ->save();
  $this
    ->assertHookMessageOrder([
    'entity_crud_hook_test_node_presave called',
    'entity_crud_hook_test_entity_presave called for type node',
    'entity_crud_hook_test_node_insert called',
    'entity_crud_hook_test_entity_insert called for type node',
  ]);
  $GLOBALS['entity_crud_hook_test'] = [];
  $node = Node::load($node
    ->id());
  $this
    ->assertHookMessageOrder([
    'entity_crud_hook_test_entity_preload called for type node',
    'entity_crud_hook_test_entity_load called for type node',
    'entity_crud_hook_test_node_load called',
  ]);
  $GLOBALS['entity_crud_hook_test'] = [];
  $node->title = 'New title';
  $node
    ->save();
  $this
    ->assertHookMessageOrder([
    'entity_crud_hook_test_node_presave called',
    'entity_crud_hook_test_entity_presave called for type node',
    'entity_crud_hook_test_node_update called',
    'entity_crud_hook_test_entity_update called for type node',
  ]);
  $GLOBALS['entity_crud_hook_test'] = [];
  $node
    ->delete();
  $this
    ->assertHookMessageOrder([
    'entity_crud_hook_test_node_predelete called',
    'entity_crud_hook_test_entity_predelete called for type node',
    'entity_crud_hook_test_node_delete called',
    'entity_crud_hook_test_entity_delete called for type node',
  ]);
}