View source
<?php
namespace Drupal\Tests\user\Functional;
use Drupal\comment\CommentInterface;
use Drupal\comment\Entity\Comment;
use Drupal\comment\Tests\CommentTestTrait;
use Drupal\language\Entity\ConfigurableLanguage;
use Drupal\node\Entity\Node;
use Drupal\node\Entity\NodeType;
use Drupal\Tests\BrowserTestBase;
use Drupal\user\Entity\User;
class UserCancelTest extends BrowserTestBase {
use CommentTestTrait;
protected static $modules = [
'node',
'comment',
];
protected $defaultTheme = 'stark';
protected function setUp() : void {
parent::setUp();
$this
->drupalCreateContentType([
'type' => 'page',
'name' => 'Basic page',
]);
}
public function testUserCancelWithoutPermission() {
$node_storage = $this->container
->get('entity_type.manager')
->getStorage('node');
$this
->config('user.settings')
->set('cancel_method', 'user_cancel_reassign')
->save();
$user_storage = $this->container
->get('entity_type.manager')
->getStorage('user');
$account = $this
->drupalCreateUser([]);
$this
->drupalLogin($account);
$user_storage
->resetCache([
$account
->id(),
]);
$account = $user_storage
->load($account
->id());
$node = $this
->drupalCreateNode([
'uid' => $account
->id(),
]);
$this
->drupalGet('user/' . $account
->id() . '/edit');
$this
->assertSession()
->pageTextNotContains("Cancel account");
$timestamp = $account
->getLastLoginTime();
$this
->drupalGet("user/" . $account
->id() . "/cancel/confirm/{$timestamp}/" . user_pass_rehash($account, $timestamp));
$this
->assertSession()
->statusCodeEquals(403);
$user_storage
->resetCache([
$account
->id(),
]);
$account = $user_storage
->load($account
->id());
$this
->assertTrue($account
->isActive(), 'User account was not canceled.');
$node_storage
->resetCache([
$node
->id(),
]);
$test_node = $node_storage
->load($node
->id());
$this
->assertEquals($account
->id(), $test_node
->getOwnerId(), 'Node of the user has not been altered.');
$this
->assertTrue($test_node
->isPublished());
}
public function testUserCancelChangePermission() {
\Drupal::service('module_installer')
->install([
'user_form_test',
]);
$this
->config('user.settings')
->set('cancel_method', 'user_cancel_reassign')
->save();
$account = $this
->drupalCreateUser([]);
$admin_user = $this
->drupalCreateUser([
'cancel other accounts',
]);
$this
->drupalLogin($admin_user);
$this
->drupalGet('user_form_test_cancel/' . $account
->id());
$this
->submitForm([], 'Confirm');
$this
->assertSession()
->pageTextContains("Account {$account->getAccountName()} has been deleted.");
$this
->assertNull(User::load($account
->id()), 'User is not found in the database.');
}
public function testUserCancelUid1() {
$user_storage = $this->container
->get('entity_type.manager')
->getStorage('user');
\Drupal::service('module_installer')
->install([
'views',
]);
$admin_user = $this
->drupalCreateUser([
'administer users',
]);
$this
->drupalLogin($admin_user);
$edit = [
'action' => 'user_cancel_user_action',
'user_bulk_form[0]' => TRUE,
];
$this
->drupalGet('admin/people');
$this
->submitForm($edit, 'Apply to selected items');
$user_storage
->resetCache([
1,
]);
$user1 = $user_storage
->load(1);
$this
->assertTrue($user1
->isActive(), 'User #1 still exists and is not blocked.');
}
public function testUserCancelInvalid() {
$node_storage = $this->container
->get('entity_type.manager')
->getStorage('node');
$this
->config('user.settings')
->set('cancel_method', 'user_cancel_reassign')
->save();
$user_storage = $this->container
->get('entity_type.manager')
->getStorage('user');
$account = $this
->drupalCreateUser([
'cancel account',
]);
$this
->drupalLogin($account);
$user_storage
->resetCache([
$account
->id(),
]);
$account = $user_storage
->load($account
->id());
$node = $this
->drupalCreateNode([
'uid' => $account
->id(),
]);
$this
->drupalGet('user/' . $account
->id() . '/cancel');
$timestamp = time();
$this
->submitForm([], 'Confirm');
$this
->assertSession()
->pageTextContains('A confirmation request to cancel your account has been sent to your email address.');
$bogus_timestamp = $timestamp + 60;
$this
->drupalGet("user/" . $account
->id() . "/cancel/confirm/{$bogus_timestamp}/" . user_pass_rehash($account, $bogus_timestamp));
$this
->assertSession()
->pageTextContains('You have tried to use an account cancellation link that has expired. Please request a new one using the form below.');
$user_storage
->resetCache([
$account
->id(),
]);
$account = $user_storage
->load($account
->id());
$this
->assertTrue($account
->isActive(), 'User account was not canceled.');
$bogus_timestamp = $timestamp - 86400 - 60;
$this
->drupalGet("user/" . $account
->id() . "/cancel/confirm/{$bogus_timestamp}/" . user_pass_rehash($account, $bogus_timestamp));
$this
->assertSession()
->pageTextContains('You have tried to use an account cancellation link that has expired. Please request a new one using the form below.');
$user_storage
->resetCache([
$account
->id(),
]);
$account = $user_storage
->load($account
->id());
$this
->assertTrue($account
->isActive(), 'User account was not canceled.');
$node_storage
->resetCache([
$node
->id(),
]);
$test_node = $node_storage
->load($node
->id());
$this
->assertEquals($account
->id(), $test_node
->getOwnerId(), 'Node of the user has not been altered.');
$this
->assertTrue($test_node
->isPublished());
}
public function testUserBlock() {
$this
->config('user.settings')
->set('cancel_method', 'user_cancel_block')
->save();
$user_storage = $this->container
->get('entity_type.manager')
->getStorage('user');
$web_user = $this
->drupalCreateUser([
'cancel account',
]);
$this
->drupalLogin($web_user);
$user_storage
->resetCache([
$web_user
->id(),
]);
$account = $user_storage
->load($web_user
->id());
$this
->drupalGet('user/' . $account
->id() . '/cancel');
$this
->assertSession()
->pageTextContains('Are you sure you want to cancel your account?');
$this
->assertSession()
->pageTextContains('Your account will be blocked and you will no longer be able to log in. All of your content will remain attributed to your username.');
$this
->assertSession()
->pageTextNotContains('Cancellation method');
$timestamp = time();
$this
->submitForm([], 'Confirm');
$this
->assertSession()
->pageTextContains('A confirmation request to cancel your account has been sent to your email address.');
$this
->drupalGet("user/" . $account
->id() . "/cancel/confirm/{$timestamp}/" . user_pass_rehash($account, $timestamp));
$user_storage
->resetCache([
$account
->id(),
]);
$account = $user_storage
->load($account
->id());
$this
->assertTrue($account
->isBlocked(), 'User has been blocked.');
$this
->assertSession()
->pageTextContains("Account {$account->getAccountName()} has been disabled.");
}
public function testUserBlockUnpublish() {
$node_storage = $this->container
->get('entity_type.manager')
->getStorage('node');
$this
->config('user.settings')
->set('cancel_method', 'user_cancel_block_unpublish')
->save();
$this
->addDefaultCommentField('node', 'page');
$user_storage = $this->container
->get('entity_type.manager')
->getStorage('user');
$account = $this
->drupalCreateUser([
'cancel account',
]);
$this
->drupalLogin($account);
$user_storage
->resetCache([
$account
->id(),
]);
$account = $user_storage
->load($account
->id());
$node = $this
->drupalCreateNode([
'uid' => $account
->id(),
]);
$settings = get_object_vars($node);
$settings['revision'] = 1;
$node = $this
->drupalCreateNode($settings);
$comment_subject = $this
->randomMachineName(8);
$comment_body = $this
->randomMachineName(8);
$comment = Comment::create([
'subject' => $comment_subject,
'comment_body' => $comment_body,
'entity_id' => $node
->id(),
'entity_type' => 'node',
'field_name' => 'comment',
'status' => CommentInterface::PUBLISHED,
'uid' => $account
->id(),
]);
$comment
->save();
$this
->drupalGet('user/' . $account
->id() . '/cancel');
$this
->assertSession()
->pageTextContains('Are you sure you want to cancel your account?');
$this
->assertSession()
->pageTextContains('Your account will be blocked and you will no longer be able to log in. All of your content will be hidden from everyone but administrators.');
$timestamp = time();
$this
->submitForm([], 'Confirm');
$this
->assertSession()
->pageTextContains('A confirmation request to cancel your account has been sent to your email address.');
$this
->drupalGet("user/" . $account
->id() . "/cancel/confirm/{$timestamp}/" . user_pass_rehash($account, $timestamp));
$this
->assertSession()
->addressEquals('');
$this
->assertSession()
->statusCodeEquals(200);
$this
->assertSession()
->pageTextContains("Account {$account->getAccountName()} has been disabled.");
$user_storage
->resetCache([
$account
->id(),
]);
$account = $user_storage
->load($account
->id());
$this
->assertTrue($account
->isBlocked(), 'User has been blocked.');
$node_storage
->resetCache([
$node
->id(),
]);
$test_node = $node_storage
->load($node
->id());
$this
->assertFalse($test_node
->isPublished(), 'Node of the user has been unpublished.');
$test_node = node_revision_load($node
->getRevisionId());
$this
->assertFalse($test_node
->isPublished(), 'Node revision of the user has been unpublished.');
$storage = \Drupal::entityTypeManager()
->getStorage('comment');
$storage
->resetCache([
$comment
->id(),
]);
$comment = $storage
->load($comment
->id());
$this
->assertFalse($comment
->isPublished(), 'Comment of the user has been unpublished.');
}
public function testUserBlockUnpublishNodeAccess() {
\Drupal::service('module_installer')
->install([
'node_access_test',
'user_form_test',
]);
node_access_rebuild();
node_access_test_add_field(NodeType::load('page'));
\Drupal::state()
->set('node_access_test.private', TRUE);
$this
->config('user.settings')
->set('cancel_method', 'user_cancel_block_unpublish')
->save();
$user_storage = $this->container
->get('entity_type.manager')
->getStorage('user');
$account = $this
->drupalCreateUser([
'cancel account',
]);
$user_storage
->resetCache([
$account
->id(),
]);
$account = $user_storage
->load($account
->id());
$node = $this
->drupalCreateNode([
'uid' => $account
->id(),
'type' => 'page',
'status' => 1,
'private' => TRUE,
]);
$admin_user = $this
->drupalCreateUser([
'cancel other accounts',
]);
$this
->drupalLogin($admin_user);
$this
->drupalGet('user_form_test_cancel/' . $account
->id());
$this
->submitForm([], 'Confirm');
$node_storage = $this->container
->get('entity_type.manager')
->getStorage('node');
$node_storage
->resetCache([
$node
->id(),
]);
$test_node = $node_storage
->load($node
->id());
$this
->assertFalse($test_node
->isPublished(), 'Node of the user has been unpublished.');
}
public function testUserAnonymize() {
$node_storage = $this->container
->get('entity_type.manager')
->getStorage('node');
$this
->config('user.settings')
->set('cancel_method', 'user_cancel_reassign')
->save();
$this
->addDefaultCommentField('node', 'page');
$user_storage = $this->container
->get('entity_type.manager')
->getStorage('user');
$account = $this
->drupalCreateUser([
'cancel account',
]);
$this
->drupalLogin($account);
$user_storage
->resetCache([
$account
->id(),
]);
$account = $user_storage
->load($account
->id());
$node = $this
->drupalCreateNode([
'uid' => $account
->id(),
]);
$comment_subject = $this
->randomMachineName(8);
$comment_body = $this
->randomMachineName(8);
$comment = Comment::create([
'subject' => $comment_subject,
'comment_body' => $comment_body,
'entity_id' => $node
->id(),
'entity_type' => 'node',
'field_name' => 'comment',
'status' => CommentInterface::PUBLISHED,
'uid' => $account
->id(),
]);
$comment
->save();
$revision_node = $this
->drupalCreateNode([
'uid' => $account
->id(),
]);
$revision = $revision_node
->getRevisionId();
$settings = get_object_vars($revision_node);
$settings['revision'] = 1;
$settings['uid'] = 1;
$revision_node = $this
->drupalCreateNode($settings);
$this
->drupalGet('user/' . $account
->id() . '/cancel');
$this
->assertSession()
->pageTextContains('Are you sure you want to cancel your account?');
$this
->assertSession()
->pageTextContains("Your account will be removed and all account information deleted. All of your content will be assigned to the {$this->config('user.settings')->get('anonymous')} user.");
$timestamp = time();
$this
->submitForm([], 'Confirm');
$this
->assertSession()
->pageTextContains('A confirmation request to cancel your account has been sent to your email address.');
$this
->drupalGet("user/" . $account
->id() . "/cancel/confirm/{$timestamp}/" . user_pass_rehash($account, $timestamp));
$user_storage
->resetCache([
$account
->id(),
]);
$this
->assertNull($user_storage
->load($account
->id()), 'User is not found in the database.');
$anonymous_user = User::getAnonymousUser();
$node_storage
->resetCache([
$node
->id(),
]);
$test_node = $node_storage
->load($node
->id());
$this
->assertEquals(0, $test_node
->getOwnerId(), 'Node of the user has been attributed to anonymous user.');
$this
->assertTrue($test_node
->isPublished());
$test_node = node_revision_load($revision, TRUE);
$this
->assertEquals(0, $test_node
->getRevisionUser()
->id(), 'Node revision of the user has been attributed to anonymous user.');
$this
->assertTrue($test_node
->isPublished());
$node_storage
->resetCache([
$revision_node
->id(),
]);
$test_node = $node_storage
->load($revision_node
->id());
$this
->assertNotEquals(0, $test_node
->getOwnerId(), "Current revision of the user's node was not attributed to anonymous user.");
$this
->assertTrue($test_node
->isPublished());
$storage = \Drupal::entityTypeManager()
->getStorage('comment');
$storage
->resetCache([
$comment
->id(),
]);
$test_comment = $storage
->load($comment
->id());
$this
->assertEquals(0, $test_comment
->getOwnerId(), 'Comment of the user has been attributed to anonymous user.');
$this
->assertTrue($test_comment
->isPublished());
$this
->assertEquals($anonymous_user
->getDisplayName(), $test_comment
->getAuthorName(), 'Comment of the user has been attributed to anonymous user name.');
$this
->assertSession()
->pageTextContains("Account {$account->getAccountName()} has been deleted.");
}
public function testUserAnonymizeBatch() {
$node_storage = $this->container
->get('entity_type.manager')
->getStorage('node');
$this
->config('user.settings')
->set('cancel_method', 'user_cancel_reassign')
->save();
$user_storage = $this->container
->get('entity_type.manager')
->getStorage('user');
$account = $this
->drupalCreateUser([
'cancel account',
]);
$this
->drupalLogin($account);
$user_storage
->resetCache([
$account
->id(),
]);
$account = $user_storage
->load($account
->id());
$nodes = [];
for ($i = 0; $i < 11; $i++) {
$node = $this
->drupalCreateNode([
'uid' => $account
->id(),
]);
$nodes[$node
->id()] = $node;
}
$this
->drupalGet('user/' . $account
->id() . '/cancel');
$this
->assertSession()
->pageTextContains('Are you sure you want to cancel your account?');
$this
->assertSession()
->pageTextContains("Your account will be removed and all account information deleted. All of your content will be assigned to the {$this->config('user.settings')->get('anonymous')} user.");
$timestamp = time();
$this
->submitForm([], 'Confirm');
$this
->assertSession()
->pageTextContains('A confirmation request to cancel your account has been sent to your email address.');
$this
->drupalGet("user/" . $account
->id() . "/cancel/confirm/{$timestamp}/" . user_pass_rehash($account, $timestamp));
$user_storage
->resetCache([
$account
->id(),
]);
$this
->assertNull($user_storage
->load($account
->id()), 'User is not found in the database.');
$node_storage
->resetCache(array_keys($nodes));
$test_nodes = $node_storage
->loadMultiple(array_keys($nodes));
foreach ($test_nodes as $test_node) {
$this
->assertEquals(0, $test_node
->getOwnerId(), 'Node ' . $test_node
->id() . ' of the user has been attributed to anonymous user.');
$this
->assertTrue($test_node
->isPublished());
}
}
public function testUserDelete() {
$node_storage = $this->container
->get('entity_type.manager')
->getStorage('node');
$this
->config('user.settings')
->set('cancel_method', 'user_cancel_delete')
->save();
\Drupal::service('module_installer')
->install([
'comment',
]);
$this
->resetAll();
$this
->addDefaultCommentField('node', 'page');
$user_storage = $this->container
->get('entity_type.manager')
->getStorage('user');
$account = $this
->drupalCreateUser([
'cancel account',
'post comments',
'skip comment approval',
]);
$this
->drupalLogin($account);
$user_storage
->resetCache([
$account
->id(),
]);
$account = $user_storage
->load($account
->id());
$node = $this
->drupalCreateNode([
'uid' => $account
->id(),
]);
$edit = [];
$edit['subject[0][value]'] = $this
->randomMachineName(8);
$edit['comment_body[0][value]'] = $this
->randomMachineName(16);
$this
->drupalGet('comment/reply/node/' . $node
->id() . '/comment');
$this
->submitForm($edit, 'Preview');
$this
->submitForm([], 'Save');
$this
->assertSession()
->pageTextContains('Your comment has been posted.');
$comments = \Drupal::entityTypeManager()
->getStorage('comment')
->loadByProperties([
'subject' => $edit['subject[0][value]'],
]);
$comment = reset($comments);
$this
->assertNotEmpty($comment
->id(), 'Comment found.');
$revision_node = $this
->drupalCreateNode([
'uid' => $account
->id(),
]);
$revision = $revision_node
->getRevisionId();
$settings = get_object_vars($revision_node);
$settings['revision'] = 1;
$settings['uid'] = 1;
$revision_node = $this
->drupalCreateNode($settings);
$this
->drupalGet('user/' . $account
->id() . '/cancel');
$this
->assertSession()
->pageTextContains('Are you sure you want to cancel your account?');
$this
->assertSession()
->pageTextContains('Your account will be removed and all account information deleted. All of your content will also be deleted.');
$timestamp = time();
$this
->submitForm([], 'Confirm');
$this
->assertSession()
->pageTextContains('A confirmation request to cancel your account has been sent to your email address.');
$this
->drupalGet("user/" . $account
->id() . "/cancel/confirm/{$timestamp}/" . user_pass_rehash($account, $timestamp));
$user_storage
->resetCache([
$account
->id(),
]);
$this
->assertNull($user_storage
->load($account
->id()), 'User is not found in the database.');
$this
->assertSame(1, (int) \Drupal::database()
->select('sessions', 's')
->countQuery()
->execute()
->fetchField());
$node_storage
->resetCache([
$node
->id(),
]);
$this
->assertNull($node_storage
->load($node
->id()), 'Node of the user has been deleted.');
$this
->assertNull(node_revision_load($revision), 'Node revision of the user has been deleted.');
$node_storage
->resetCache([
$revision_node
->id(),
]);
$this
->assertInstanceOf(Node::class, $node_storage
->load($revision_node
->id()));
\Drupal::entityTypeManager()
->getStorage('comment')
->resetCache([
$comment
->id(),
]);
$this
->assertNull(Comment::load($comment
->id()), 'Comment of the user has been deleted.');
$this
->assertSession()
->pageTextContains("Account {$account->getAccountName()} has been deleted.");
}
public function testUserCancelByAdmin() {
$this
->config('user.settings')
->set('cancel_method', 'user_cancel_reassign')
->save();
$account = $this
->drupalCreateUser([]);
$admin_user = $this
->drupalCreateUser([
'administer users',
]);
$this
->drupalLogin($admin_user);
$this
->drupalGet('user/' . $account
->id() . '/cancel');
$this
->assertSession()
->pageTextContains("Are you sure you want to cancel the account {$account->getAccountName()}?");
$this
->assertSession()
->pageTextContains('Cancellation method');
$this
->submitForm([], 'Confirm');
$this
->assertSession()
->pageTextContains("Account {$account->getAccountName()} has been deleted.");
$this
->assertNull(User::load($account
->id()), 'User is not found in the database.');
}
public function testUserWithoutEmailCancelByAdmin() {
$this
->config('user.settings')
->set('cancel_method', 'user_cancel_reassign')
->save();
$account = $this
->drupalCreateUser([]);
$account->mail = '';
$account
->save();
$admin_user = $this
->drupalCreateUser([
'administer users',
]);
$this
->drupalLogin($admin_user);
$this
->drupalGet('user/' . $account
->id() . '/cancel');
$this
->assertSession()
->pageTextContains("Are you sure you want to cancel the account {$account->getAccountName()}?");
$this
->assertSession()
->pageTextContains('Cancellation method');
$this
->submitForm([], 'Confirm');
$this
->assertSession()
->pageTextContains("Account {$account->getAccountName()} has been deleted.");
$this
->assertNull(User::load($account
->id()), 'User is not found in the database.');
}
public function testMassUserCancelByAdmin() {
\Drupal::service('module_installer')
->install([
'views',
]);
$this
->config('user.settings')
->set('cancel_method', 'user_cancel_reassign')
->save();
$user_storage = $this->container
->get('entity_type.manager')
->getStorage('user');
$this
->config('user.settings')
->set('notify.status_canceled', TRUE)
->save();
$admin_user = $this
->drupalCreateUser([
'administer users',
]);
$this
->drupalLogin($admin_user);
$users = [];
for ($i = 0; $i < 3; $i++) {
$account = $this
->drupalCreateUser([]);
$users[$account
->id()] = $account;
}
$edit = [];
$edit['action'] = 'user_cancel_user_action';
for ($i = 0; $i <= 4; $i++) {
$edit['user_bulk_form[' . $i . ']'] = TRUE;
}
$this
->drupalGet('admin/people');
$this
->submitForm($edit, 'Apply to selected items');
$this
->assertSession()
->pageTextContains('Are you sure you want to cancel these user accounts?');
$this
->assertSession()
->pageTextContains('Cancellation method');
$this
->assertSession()
->pageTextContains('Require email confirmation');
$this
->assertSession()
->pageTextContains('Notify user when account is canceled');
$this
->submitForm([], 'Confirm');
$status = TRUE;
foreach ($users as $account) {
$status = $status && strpos($this
->getTextContent(), "Account {$account->getAccountName()} has been deleted.") !== FALSE;
$user_storage
->resetCache([
$account
->id(),
]);
$status = $status && !$user_storage
->load($account
->id());
}
$this
->assertTrue($status, 'Users deleted and not found in the database.');
$this
->assertSession()
->pageTextContains('A confirmation request to cancel your account has been sent to your email address.');
$admin_user = $user_storage
->load($admin_user
->id());
$this
->assertTrue($admin_user
->isActive(), 'Administrative user is found in the database and enabled.');
$user_storage
->resetCache([
1,
]);
$user1 = $user_storage
->load(1);
$this
->assertTrue($user1
->isActive(), 'User #1 still exists and is not blocked.');
}
public function testUserDeleteWithContentAndNodeAccess() {
\Drupal::service('module_installer')
->install([
'node_access_test',
]);
node_access_rebuild();
$account = $this
->drupalCreateUser([
'access content',
]);
$node = $this
->drupalCreateNode([
'type' => 'page',
'uid' => $account
->id(),
]);
$account
->delete();
$load2 = \Drupal::entityTypeManager()
->getStorage('node')
->load($node
->id());
$this
->assertEmpty($load2);
}
public function testUserAnonymizeTranslations() {
$this
->config('user.settings')
->set('cancel_method', 'user_cancel_reassign')
->save();
$this
->addDefaultCommentField('node', 'page');
$user_storage = $this->container
->get('entity_type.manager')
->getStorage('user');
\Drupal::service('module_installer')
->install([
'language',
'locale',
]);
\Drupal::service('router.builder')
->rebuildIfNeeded();
ConfigurableLanguage::createFromLangcode('ur')
->save();
$this
->rebuildContainer();
$account = $this
->drupalCreateUser([
'cancel account',
]);
$this
->drupalLogin($account);
$user_storage
->resetCache([
$account
->id(),
]);
$account = $user_storage
->load($account
->id());
$node = $this
->drupalCreateNode([
'uid' => $account
->id(),
]);
$comment_subject = $this
->randomMachineName(8);
$comment_body = $this
->randomMachineName(8);
$comment = Comment::create([
'subject' => $comment_subject,
'comment_body' => $comment_body,
'entity_id' => $node
->id(),
'entity_type' => 'node',
'field_name' => 'comment',
'status' => CommentInterface::PUBLISHED,
'uid' => $account
->id(),
]);
$comment
->save();
$comment
->addTranslation('ur', [
'subject' => 'ur ' . $comment
->label(),
'status' => CommentInterface::PUBLISHED,
])
->save();
$this
->drupalGet('user/' . $account
->id() . '/cancel');
$this
->assertSession()
->pageTextContains('Are you sure you want to cancel your account?');
$this
->assertSession()
->pageTextContains('Your account will be removed and all account information deleted. All of your content will be assigned to the ' . $this
->config('user.settings')
->get('anonymous') . ' user.');
$timestamp = time();
$this
->submitForm([], 'Confirm');
$this
->assertSession()
->pageTextContains('A confirmation request to cancel your account has been sent to your email address.');
$this
->drupalGet('user/' . $account
->id() . "/cancel/confirm/{$timestamp}/" . user_pass_rehash($account, $timestamp));
$user_storage
->resetCache([
$account
->id(),
]);
$this
->assertNull($user_storage
->load($account
->id()), 'User is not found in the database.');
$anonymous_user = User::getAnonymousUser();
$storage = \Drupal::entityTypeManager()
->getStorage('comment');
$storage
->resetCache([
$comment
->id(),
]);
$test_comment = $storage
->load($comment
->id());
$this
->assertEquals(0, $test_comment
->getOwnerId());
$this
->assertTrue($test_comment
->isPublished(), 'Comment of the user has been attributed to anonymous user.');
$this
->assertEquals($anonymous_user
->getDisplayName(), $test_comment
->getAuthorName());
$comment_translation = $test_comment
->getTranslation('ur');
$this
->assertEquals(0, $comment_translation
->getOwnerId());
$this
->assertTrue($comment_translation
->isPublished(), 'Comment translation of the user has been attributed to anonymous user.');
$this
->assertEquals($anonymous_user
->getDisplayName(), $comment_translation
->getAuthorName());
$this
->assertSession()
->responseContains(t('%name has been deleted.', [
'%name' => $account
->getAccountName(),
]));
}
}