function UserTest::testDeleteRespectsUserCancelBlock

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/UserTest.php \Drupal\Tests\jsonapi\Functional\UserTest::testDeleteRespectsUserCancelBlock()
  2. 11.x core/modules/jsonapi/tests/src/Functional/UserTest.php \Drupal\Tests\jsonapi\Functional\UserTest::testDeleteRespectsUserCancelBlock()

Tests if JSON:API respects user.settings.cancel_method: user_cancel_block.

File

core/modules/jsonapi/tests/src/Functional/UserTest.php, line 635

Class

UserTest
JSON:API integration test for the "User" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

public function testDeleteRespectsUserCancelBlock() : void {
  $cancel_method = 'user_cancel_block';
  $this->config('jsonapi.settings')
    ->set('read_only', FALSE)
    ->save(TRUE);
  $this->config('user.settings')
    ->set('cancel_method', $cancel_method)
    ->save(TRUE);
  $account = $this->createAnotherEntity($cancel_method);
  $node = $this->drupalCreateNode([
    'uid' => $account->id(),
  ]);
  $this->sendDeleteRequestForUser($account, $cancel_method);
  $user_storage = $this->container
    ->get('entity_type.manager')
    ->getStorage('user');
  $user_storage->resetCache([
    $account->id(),
  ]);
  $account = $user_storage->load($account->id());
  $this->assertNotNull($account, 'User is not deleted after JSON:API DELETE operation with user.settings.cancel_method: ' . $cancel_method);
  $this->assertTrue($account->isBlocked(), 'User is blocked after JSON:API DELETE operation with user.settings.cancel_method: ' . $cancel_method);
  $node_storage = $this->container
    ->get('entity_type.manager')
    ->getStorage('node');
  $node_storage->resetCache([
    $node->id(),
  ]);
  $test_node = $node_storage->load($node->id());
  $this->assertNotNull($test_node, 'Node of the user is not deleted.');
  $this->assertTrue($test_node->isPublished(), 'Node of the user is published.');
  $test_node = $node_storage->loadRevision($node->getRevisionId());
  $this->assertTrue($test_node->isPublished(), 'Node revision of the user is published.');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.