public function UserEditTest::testUserWith0Password in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/user/src/Tests/UserEditTest.php \Drupal\user\Tests\UserEditTest::testUserWith0Password()
Tests setting the password to "0".
We discovered in https://www.drupal.org/node/2563751 that logging in with a password that is literally "0" was not possible. This test ensures that this regression can't happen again.
File
- core/
modules/ user/ src/ Tests/ UserEditTest.php, line 118 - Contains \Drupal\user\Tests\UserEditTest.
Class
- UserEditTest
- Tests user edit page.
Namespace
Drupal\user\TestsCode
public function testUserWith0Password() {
$admin = $this
->drupalCreateUser([
'administer users',
]);
$this
->drupalLogin($admin);
// Create a regular user.
$user1 = $this
->drupalCreateUser([]);
$edit = [
'pass[pass1]' => '0',
'pass[pass2]' => '0',
];
$this
->drupalPostForm("user/" . $user1
->id() . "/edit", $edit, t('Save'));
$this
->assertRaw(t("The changes have been saved."));
}