You are here

function UserCancelTest::testUserWithoutEmailCancelByAdmin in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/user/src/Tests/UserCancelTest.php \Drupal\user\Tests\UserCancelTest::testUserWithoutEmailCancelByAdmin()

Tests deletion of a user account without an email address.

File

core/modules/user/src/Tests/UserCancelTest.php, line 475
Contains \Drupal\user\Tests\UserCancelTest.

Class

UserCancelTest
Ensure that account cancellation methods work as expected.

Namespace

Drupal\user\Tests

Code

function testUserWithoutEmailCancelByAdmin() {
  $this
    ->config('user.settings')
    ->set('cancel_method', 'user_cancel_reassign')
    ->save();

  // Create a regular user.
  $account = $this
    ->drupalCreateUser(array());

  // This user has no email address.
  $account->mail = '';
  $account
    ->save();

  // Create administrative user.
  $admin_user = $this
    ->drupalCreateUser(array(
    '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?', array(
    '%name' => $account
      ->getUsername(),
  )), '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.', array(
    '%name' => $account
      ->getUsername(),
  )), 'User deleted.');
  $this
    ->assertFalse(User::load($account
    ->id()), 'User is not found in the database.');
}