function UserEditTest::testUserEdit

Test user edit page.

File

drupal/core/modules/user/lib/Drupal/user/Tests/UserEditTest.php, line 28
Definition of Drupal\user\Tests\UserEditTest.

Class

UserEditTest
Tests the user edit form.

Namespace

Drupal\user\Tests

Code

function testUserEdit() {

  // Test user edit functionality.
  $user1 = $this
    ->drupalCreateUser(array(
    'change own username',
  ));
  $user2 = $this
    ->drupalCreateUser(array());
  $this
    ->drupalLogin($user1);

  // Test that error message appears when attempting to use a non-unique user name.
  $edit['name'] = $user2->name;
  $this
    ->drupalPost("user/{$user1->uid}/edit", $edit, t('Save'));
  $this
    ->assertRaw(t('The name %name is already taken.', array(
    '%name' => $edit['name'],
  )));

  // Check that filling out a single password field does not validate.
  $edit = array();
  $edit['pass[pass1]'] = '';
  $edit['pass[pass2]'] = $this
    ->randomName();
  $this
    ->drupalPost("user/{$user1->uid}/edit", $edit, t('Save'));
  $this
    ->assertText(t("The specified passwords do not match."), 'Typing mismatched passwords displays an error message.');
  $edit['pass[pass1]'] = $this
    ->randomName();
  $edit['pass[pass2]'] = '';
  $this
    ->drupalPost("user/{$user1->uid}/edit", $edit, t('Save'));
  $this
    ->assertText(t("The specified passwords do not match."), 'Typing mismatched passwords displays an error message.');

  // Test that the error message appears when attempting to change the mail or
  // pass without the current password.
  $edit = array();
  $edit['mail'] = $this
    ->randomName() . '@new.example.com';
  $this
    ->drupalPost("user/{$user1->uid}/edit", $edit, t('Save'));
  $this
    ->assertRaw(t("Your current password is missing or incorrect; it's required to change the %name.", array(
    '%name' => t('E-mail address'),
  )));
  $edit['current_pass'] = $user1->pass_raw;
  $this
    ->drupalPost("user/{$user1->uid}/edit", $edit, t('Save'));
  $this
    ->assertRaw(t("The changes have been saved."));

  // Test that the user must enter current password before changing passwords.
  $edit = array();
  $edit['pass[pass1]'] = $new_pass = $this
    ->randomName();
  $edit['pass[pass2]'] = $new_pass;
  $this
    ->drupalPost("user/{$user1->uid}/edit", $edit, t('Save'));
  $this
    ->assertRaw(t("Your current password is missing or incorrect; it's required to change the %name.", array(
    '%name' => t('Password'),
  )));

  // Try again with the current password.
  $edit['current_pass'] = $user1->pass_raw;
  $this
    ->drupalPost("user/{$user1->uid}/edit", $edit, t('Save'));
  $this
    ->assertRaw(t("The changes have been saved."));

  // Make sure the user can log in with their new password.
  $this
    ->drupalLogout();
  $user1->pass_raw = $new_pass;
  $this
    ->drupalLogin($user1);
  $this
    ->drupalLogout();

  // Test that the password strength indicator displays.
  $config = config('user.settings');
  $this
    ->drupalLogin($user1);
  $config
    ->set('password_strength', TRUE)
    ->save();
  $this
    ->drupalPost("user/{$user1->uid}/edit", $edit, t('Save'));
  $this
    ->assertRaw(t('Password strength:'), 'The password strength indicator is displayed.');
  $config
    ->set('password_strength', FALSE)
    ->save();
  $this
    ->drupalPost("user/{$user1->uid}/edit", $edit, t('Save'));
  $this
    ->assertNoRaw(t('Password strength:'), 'The password strength indicator is not displayed.');
}