mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-05-31 21:23:38 +08:00
Merge branch 'fix/registraion-form-validation' of git://github.com/cw1998/BookStack into cw1998-fix/registraion-form-validation
This commit is contained in:
@ -69,6 +69,31 @@ class AuthTest extends BrowserKitTest
|
||||
->seePageIs('/register');
|
||||
}
|
||||
|
||||
public function test_registration_validation()
|
||||
{
|
||||
$this->setSettings(['registration-enabled' => 'true']);
|
||||
|
||||
$this->visit('/register')
|
||||
->type('1', '#name')
|
||||
->type('1', '#email')
|
||||
->type('1', '#password')
|
||||
->press('Create Account')
|
||||
->see('The name must be at least 2 characters.')
|
||||
->see('The email must be a valid email address.')
|
||||
->see('The password must be at least 6 characters.')
|
||||
->seePageIs('/register');
|
||||
}
|
||||
|
||||
public function test_sign_up_link_on_login()
|
||||
{
|
||||
$this->visit('/login')
|
||||
->dontSee('Sign up');
|
||||
|
||||
$this->setSettings(['registration-enabled' => 'true']);
|
||||
|
||||
$this->visit('/login')
|
||||
->see('Sign up');
|
||||
}
|
||||
|
||||
public function test_confirmed_registration()
|
||||
{
|
||||
|
Reference in New Issue
Block a user