public function UserCancelTest::testUserWithoutEmailCancelByAdmin in Drupal 8
Same name and namespace in other branches
- 9 core/modules/user/tests/src/Functional/UserCancelTest.php \Drupal\Tests\user\Functional\UserCancelTest::testUserWithoutEmailCancelByAdmin()
Tests deletion of a user account without an email address.
File
- core/
modules/ user/ tests/ src/ Functional/ UserCancelTest.php, line 515
Class
- UserCancelTest
- Ensure that account cancellation methods work as expected.
Namespace
Drupal\Tests\user\FunctionalCode
public function testUserWithoutEmailCancelByAdmin() {
$this
->config('user.settings')
->set('cancel_method', 'user_cancel_reassign')
->save();
// Create a regular user.
$account = $this
->drupalCreateUser([]);
// This user has no email address.
$account->mail = '';
$account
->save();
// Create administrative user.
$admin_user = $this
->drupalCreateUser([
'administer users',
]);
$this
->drupalLogin($admin_user);
// Delete regular user without email address.
$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.');
}