function UserRegistrationTest::testRegistrationWithoutEmailVerification in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/user/src/Tests/UserRegistrationTest.php \Drupal\user\Tests\UserRegistrationTest::testRegistrationWithoutEmailVerification()
File
- core/
modules/ user/ src/ Tests/ UserRegistrationTest.php, line 67 - Contains \Drupal\user\Tests\UserRegistrationTest.
Class
- UserRegistrationTest
- Tests registration of user under different configurations.
Namespace
Drupal\user\TestsCode
function testRegistrationWithoutEmailVerification() {
$config = $this
->config('user.settings');
// Don't require email verification and allow registration by site visitors
// without administrator approval.
$config
->set('verify_mail', FALSE)
->set('register', USER_REGISTER_VISITORS)
->save();
$edit = array();
$edit['name'] = $name = $this
->randomMachineName();
$edit['mail'] = $mail = $edit['name'] . '@example.com';
// Try entering a mismatching password.
$edit['pass[pass1]'] = '99999.0';
$edit['pass[pass2]'] = '99999';
$this
->drupalPostForm('user/register', $edit, t('Create new account'));
$this
->assertText(t('The specified passwords do not match.'), 'Typing mismatched passwords displays an error message.');
// Enter a correct password.
$edit['pass[pass1]'] = $new_pass = $this
->randomMachineName();
$edit['pass[pass2]'] = $new_pass;
$this
->drupalPostForm('user/register', $edit, t('Create new account'));
$this->container
->get('entity.manager')
->getStorage('user')
->resetCache();
$accounts = entity_load_multiple_by_properties('user', array(
'name' => $name,
'mail' => $mail,
));
$new_user = reset($accounts);
$this
->assertNotNull($new_user, 'New account successfully created with matching passwords.');
$this
->assertText(t('Registration successful. You are now logged in.'), 'Users are logged in after registering.');
$this
->drupalLogout();
// Allow registration by site visitors, but require administrator approval.
$config
->set('register', USER_REGISTER_VISITORS_ADMINISTRATIVE_APPROVAL)
->save();
$edit = array();
$edit['name'] = $name = $this
->randomMachineName();
$edit['mail'] = $mail = $edit['name'] . '@example.com';
$edit['pass[pass1]'] = $pass = $this
->randomMachineName();
$edit['pass[pass2]'] = $pass;
$this
->drupalPostForm('user/register', $edit, t('Create new account'));
$this
->assertText(t('Thank you for applying for an account. Your account is currently pending approval by the site administrator.'), 'Users are notified of pending approval');
// Try to login before administrator approval.
$auth = array(
'name' => $name,
'pass' => $pass,
);
$this
->drupalPostForm('user/login', $auth, t('Log in'));
$this
->assertText(t('The username @name has not been activated or is blocked.', array(
'@name' => $name,
)), 'User cannot login yet.');
// Activate the new account.
$accounts = entity_load_multiple_by_properties('user', array(
'name' => $name,
'mail' => $mail,
));
$new_user = reset($accounts);
$admin_user = $this
->drupalCreateUser(array(
'administer users',
));
$this
->drupalLogin($admin_user);
$edit = array(
'status' => 1,
);
$this
->drupalPostForm('user/' . $new_user
->id() . '/edit', $edit, t('Save'));
$this
->drupalLogout();
// Login after administrator approval.
$this
->drupalPostForm('user/login', $auth, t('Log in'));
$this
->assertText(t('Member for'), 'User can log in after administrator approval.');
}