public function UserCancelTest::testUserCancelByAdmin in Drupal 8
Same name and namespace in other branches
- 9 core/modules/user/tests/src/Functional/UserCancelTest.php \Drupal\Tests\user\Functional\UserCancelTest::testUserCancelByAdmin()
Create an administrative user and delete another user.
File
- core/
modules/ user/ tests/ src/ Functional/ UserCancelTest.php, line 490
Class
- UserCancelTest
- Ensure that account cancellation methods work as expected.
Namespace
Drupal\Tests\user\FunctionalCode
public function testUserCancelByAdmin() {
$this
->config('user.settings')
->set('cancel_method', 'user_cancel_reassign')
->save();
// Create a regular user.
$account = $this
->drupalCreateUser([]);
// Create administrative user.
$admin_user = $this
->drupalCreateUser([
'administer users',
]);
$this
->drupalLogin($admin_user);
// Delete regular user.
$this
->drupalGet('user/' . $account
->id() . '/edit');
$this
->drupalPostForm(NULL, NULL, t('Cancel account'));
$this
->assertRaw(t('Are you sure you want to cancel the account %name?', [
'%name' => $account
->getAccountName(),
]), 'Confirmation form to cancel account displayed.');
$this
->assertText(t('Select the method to cancel the account above.'), 'Allows to select account cancellation method.');
// Confirm deletion.
$this
->drupalPostForm(NULL, NULL, t('Cancel account'));
$this
->assertRaw(t('%name has been deleted.', [
'%name' => $account
->getAccountName(),
]), 'User deleted.');
$this
->assertNull(User::load($account
->id()), 'User is not found in the database.');
}