mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-08-06 12:02:45 +03:00
Copied over work from user_permissions branch
Only that relevant to the additional testing work.
This commit is contained in:
@@ -44,7 +44,7 @@ class AuthTest extends TestCase
|
||||
|
||||
public function test_mfa_session_cleared_on_logout()
|
||||
{
|
||||
$user = $this->getEditor();
|
||||
$user = $this->users->editor();
|
||||
$mfaSession = $this->app->make(MfaSession::class);
|
||||
|
||||
$mfaSession->markVerifiedForUser($user);
|
||||
@@ -94,7 +94,7 @@ class AuthTest extends TestCase
|
||||
|
||||
public function test_login_authenticates_nonadmins_on_default_guard_only()
|
||||
{
|
||||
$editor = $this->getEditor();
|
||||
$editor = $this->users->editor();
|
||||
$editor->password = bcrypt('password');
|
||||
$editor->save();
|
||||
|
||||
@@ -120,7 +120,7 @@ class AuthTest extends TestCase
|
||||
public function test_logged_in_user_with_unconfirmed_email_is_logged_out()
|
||||
{
|
||||
$this->setSettings(['registration-confirmation' => 'true']);
|
||||
$user = $this->getEditor();
|
||||
$user = $this->users->editor();
|
||||
$user->email_confirmed = false;
|
||||
$user->save();
|
||||
|
||||
|
Reference in New Issue
Block a user