2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Auth;
|
2015-09-02 13:26:33 -04:00
|
|
|
|
2021-08-07 16:53:13 -04:00
|
|
|
use BookStack\Auth\Access\Mfa\MfaSession;
|
2022-01-31 09:16:56 -05:00
|
|
|
use BookStack\Auth\Role;
|
2019-06-23 07:16:45 -04:00
|
|
|
use BookStack\Auth\User;
|
2020-11-21 19:17:45 -05:00
|
|
|
use BookStack\Entities\Models\Page;
|
2016-09-17 13:22:04 -04:00
|
|
|
use BookStack\Notifications\ConfirmEmail;
|
2020-04-10 08:38:08 -04:00
|
|
|
use BookStack\Notifications\ResetPassword;
|
2021-09-26 10:37:55 -04:00
|
|
|
use Illuminate\Support\Facades\DB;
|
2016-09-17 13:22:04 -04:00
|
|
|
use Illuminate\Support\Facades\Notification;
|
2021-09-17 18:44:54 -04:00
|
|
|
use Tests\TestCase;
|
|
|
|
use Tests\TestResponse;
|
2015-09-21 15:54:11 -04:00
|
|
|
|
2021-09-17 18:44:54 -04:00
|
|
|
class AuthTest extends TestCase
|
2015-09-02 13:26:33 -04:00
|
|
|
{
|
2016-01-15 18:21:47 -05:00
|
|
|
public function test_auth_working()
|
2015-09-02 13:26:33 -04:00
|
|
|
{
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->get('/')->assertRedirect('/login');
|
2015-09-02 13:26:33 -04:00
|
|
|
}
|
|
|
|
|
2016-01-15 18:21:47 -05:00
|
|
|
public function test_login()
|
2015-09-02 13:26:33 -04:00
|
|
|
{
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->login('admin@admin.com', 'password')->assertRedirect('/');
|
2015-09-02 13:26:33 -04:00
|
|
|
}
|
|
|
|
|
2016-01-15 18:21:47 -05:00
|
|
|
public function test_public_viewing()
|
2015-09-10 15:28:53 -04:00
|
|
|
{
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->setSettings(['app-public' => 'true']);
|
|
|
|
$this->get('/')
|
|
|
|
->assertOk()
|
|
|
|
->assertSee('Log in');
|
2015-09-10 15:28:53 -04:00
|
|
|
}
|
|
|
|
|
2016-01-15 18:21:47 -05:00
|
|
|
public function test_registration_showing()
|
2015-09-10 15:28:53 -04:00
|
|
|
{
|
|
|
|
// Ensure registration form is showing
|
|
|
|
$this->setSettings(['registration-enabled' => 'true']);
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->get('/login')
|
|
|
|
->assertElementContains('a[href="' . url('/register') . '"]', 'Sign up');
|
2015-09-10 15:28:53 -04:00
|
|
|
}
|
|
|
|
|
2016-01-15 18:21:47 -05:00
|
|
|
public function test_normal_registration()
|
2015-09-10 15:28:53 -04:00
|
|
|
{
|
2015-09-21 15:54:11 -04:00
|
|
|
// Set settings and get user instance
|
2022-01-31 09:16:56 -05:00
|
|
|
/** @var Role $registrationRole */
|
|
|
|
$registrationRole = Role::query()->first();
|
|
|
|
$this->setSettings(['registration-enabled' => 'true', 'registration-role' => $registrationRole->id]);
|
|
|
|
/** @var User $user */
|
2021-10-30 16:29:59 -04:00
|
|
|
$user = User::factory()->make();
|
2015-09-10 15:28:53 -04:00
|
|
|
|
2015-09-21 15:54:11 -04:00
|
|
|
// Test form and ensure user is created
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->get('/register')
|
|
|
|
->assertSee('Sign Up')
|
|
|
|
->assertElementContains('form[action="' . url('/register') . '"]', 'Create Account');
|
|
|
|
|
|
|
|
$resp = $this->post('/register', $user->only('password', 'name', 'email'));
|
|
|
|
$resp->assertRedirect('/');
|
|
|
|
|
|
|
|
$resp = $this->get('/');
|
|
|
|
$resp->assertOk();
|
|
|
|
$resp->assertSee($user->name);
|
2022-01-31 09:16:56 -05:00
|
|
|
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->assertDatabaseHas('users', ['name' => $user->name, 'email' => $user->email]);
|
2022-01-31 09:16:56 -05:00
|
|
|
|
|
|
|
$user = User::query()->where('email', '=', $user->email)->first();
|
|
|
|
$this->assertEquals(1, $user->roles()->count());
|
|
|
|
$this->assertEquals($registrationRole->id, $user->roles()->first()->id);
|
2015-09-10 15:28:53 -04:00
|
|
|
}
|
|
|
|
|
2018-01-28 12:15:30 -05:00
|
|
|
public function test_empty_registration_redirects_back_with_errors()
|
|
|
|
{
|
|
|
|
// Set settings and get user instance
|
|
|
|
$this->setSettings(['registration-enabled' => 'true']);
|
|
|
|
|
|
|
|
// Test form and ensure user is created
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->get('/register');
|
|
|
|
$this->post('/register', [])->assertRedirect('/register');
|
|
|
|
$this->get('/register')->assertSee('The name field is required');
|
2018-01-28 12:15:30 -05:00
|
|
|
}
|
|
|
|
|
2019-04-16 07:18:51 -04:00
|
|
|
public function test_registration_validation()
|
|
|
|
{
|
|
|
|
$this->setSettings(['registration-enabled' => 'true']);
|
|
|
|
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->get('/register');
|
|
|
|
$resp = $this->followingRedirects()->post('/register', [
|
2021-09-18 16:21:44 -04:00
|
|
|
'name' => '1',
|
|
|
|
'email' => '1',
|
2021-09-17 18:44:54 -04:00
|
|
|
'password' => '1',
|
|
|
|
]);
|
|
|
|
$resp->assertSee('The name must be at least 2 characters.');
|
|
|
|
$resp->assertSee('The email must be a valid email address.');
|
|
|
|
$resp->assertSee('The password must be at least 8 characters.');
|
2019-04-16 07:18:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_sign_up_link_on_login()
|
|
|
|
{
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->get('/login')->assertDontSee('Sign up');
|
2019-04-16 07:18:51 -04:00
|
|
|
|
|
|
|
$this->setSettings(['registration-enabled' => 'true']);
|
|
|
|
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->get('/login')->assertSee('Sign up');
|
2019-04-16 07:18:51 -04:00
|
|
|
}
|
2016-01-15 18:21:47 -05:00
|
|
|
|
|
|
|
public function test_confirmed_registration()
|
2015-09-10 15:28:53 -04:00
|
|
|
{
|
2016-09-17 13:22:04 -04:00
|
|
|
// Fake notifications
|
|
|
|
Notification::fake();
|
|
|
|
|
2015-09-21 15:54:11 -04:00
|
|
|
// Set settings and get user instance
|
|
|
|
$this->setSettings(['registration-enabled' => 'true', 'registration-confirmation' => 'true']);
|
2021-10-30 16:29:59 -04:00
|
|
|
$user = User::factory()->make();
|
2015-09-21 15:54:11 -04:00
|
|
|
|
|
|
|
// Go through registration process
|
2021-09-17 18:44:54 -04:00
|
|
|
$resp = $this->post('/register', $user->only('name', 'email', 'password'));
|
|
|
|
$resp->assertRedirect('/register/confirm');
|
|
|
|
$this->assertDatabaseHas('users', ['name' => $user->name, 'email' => $user->email, 'email_confirmed' => false]);
|
2015-09-21 15:54:11 -04:00
|
|
|
|
2016-09-17 13:22:04 -04:00
|
|
|
// Ensure notification sent
|
2021-09-17 18:44:54 -04:00
|
|
|
/** @var User $dbUser */
|
|
|
|
$dbUser = User::query()->where('email', '=', $user->email)->first();
|
2016-09-17 13:22:04 -04:00
|
|
|
Notification::assertSentTo($dbUser, ConfirmEmail::class);
|
|
|
|
|
2015-09-21 15:54:11 -04:00
|
|
|
// Test access and resend confirmation email
|
2021-09-17 18:44:54 -04:00
|
|
|
$resp = $this->login($user->email, $user->password);
|
|
|
|
$resp->assertRedirect('/register/confirm/awaiting');
|
|
|
|
|
|
|
|
$resp = $this->get('/register/confirm/awaiting');
|
|
|
|
$resp->assertElementContains('form[action="' . url('/register/confirm/resend') . '"]', 'Resend');
|
|
|
|
|
|
|
|
$this->get('/books')->assertRedirect('/login');
|
|
|
|
$this->post('/register/confirm/resend', $user->only('email'));
|
2015-09-21 15:54:11 -04:00
|
|
|
|
2016-09-17 13:22:04 -04:00
|
|
|
// Get confirmation and confirm notification matches
|
2020-04-10 08:38:08 -04:00
|
|
|
$emailConfirmation = DB::table('email_confirmations')->where('user_id', '=', $dbUser->id)->first();
|
2021-06-26 11:23:15 -04:00
|
|
|
Notification::assertSentTo($dbUser, ConfirmEmail::class, function ($notification, $channels) use ($emailConfirmation) {
|
2016-09-17 13:22:04 -04:00
|
|
|
return $notification->token === $emailConfirmation->token;
|
|
|
|
});
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2016-09-17 13:22:04 -04:00
|
|
|
// Check confirmation email confirmation activation.
|
2021-11-15 05:50:28 -05:00
|
|
|
$this->get('/register/confirm/' . $emailConfirmation->token)->assertRedirect('/login');
|
|
|
|
$this->get('/login')->assertSee('Your email has been confirmed! You should now be able to login using this email address.');
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->assertDatabaseMissing('email_confirmations', ['token' => $emailConfirmation->token]);
|
|
|
|
$this->assertDatabaseHas('users', ['name' => $dbUser->name, 'email' => $dbUser->email, 'email_confirmed' => true]);
|
2015-09-10 15:28:53 -04:00
|
|
|
}
|
|
|
|
|
2016-01-15 18:21:47 -05:00
|
|
|
public function test_restricted_registration()
|
|
|
|
{
|
|
|
|
$this->setSettings(['registration-enabled' => 'true', 'registration-confirmation' => 'true', 'registration-restrict' => 'example.com']);
|
2021-10-30 16:29:59 -04:00
|
|
|
$user = User::factory()->make();
|
2021-09-17 18:44:54 -04:00
|
|
|
|
2016-01-15 18:21:47 -05:00
|
|
|
// Go through registration process
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->post('/register', $user->only('name', 'email', 'password'))
|
|
|
|
->assertRedirect('/register');
|
|
|
|
$resp = $this->get('/register');
|
|
|
|
$resp->assertSee('That email domain does not have access to this application');
|
|
|
|
$this->assertDatabaseMissing('users', $user->only('email'));
|
2016-01-15 18:21:47 -05:00
|
|
|
|
|
|
|
$user->email = 'barry@example.com';
|
|
|
|
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->post('/register', $user->only('name', 'email', 'password'))
|
|
|
|
->assertRedirect('/register/confirm');
|
|
|
|
$this->assertDatabaseHas('users', ['name' => $user->name, 'email' => $user->email, 'email_confirmed' => false]);
|
2017-11-11 13:09:48 -05:00
|
|
|
|
2021-08-07 16:18:59 -04:00
|
|
|
$this->assertNull(auth()->user());
|
2020-09-05 12:26:48 -04:00
|
|
|
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->get('/')->assertRedirect('/login');
|
|
|
|
$resp = $this->followingRedirects()->post('/login', $user->only('email', 'password'));
|
|
|
|
$resp->assertSee('Email Address Not Confirmed');
|
|
|
|
$this->assertNull(auth()->user());
|
2017-11-11 13:09:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_restricted_registration_with_confirmation_disabled()
|
|
|
|
{
|
|
|
|
$this->setSettings(['registration-enabled' => 'true', 'registration-confirmation' => 'false', 'registration-restrict' => 'example.com']);
|
2021-10-30 16:29:59 -04:00
|
|
|
$user = User::factory()->make();
|
2021-09-17 18:44:54 -04:00
|
|
|
|
2017-11-11 13:09:48 -05:00
|
|
|
// Go through registration process
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->post('/register', $user->only('name', 'email', 'password'))
|
|
|
|
->assertRedirect('/register');
|
|
|
|
$this->assertDatabaseMissing('users', $user->only('email'));
|
|
|
|
$this->get('/register')->assertSee('That email domain does not have access to this application');
|
2017-11-11 13:09:48 -05:00
|
|
|
|
|
|
|
$user->email = 'barry@example.com';
|
|
|
|
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->post('/register', $user->only('name', 'email', 'password'))
|
|
|
|
->assertRedirect('/register/confirm');
|
|
|
|
$this->assertDatabaseHas('users', ['name' => $user->name, 'email' => $user->email, 'email_confirmed' => false]);
|
2017-11-11 13:09:48 -05:00
|
|
|
|
2021-08-07 16:18:59 -04:00
|
|
|
$this->assertNull(auth()->user());
|
2020-09-05 12:26:48 -04:00
|
|
|
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->get('/')->assertRedirect('/login');
|
|
|
|
$resp = $this->post('/login', $user->only('email', 'password'));
|
|
|
|
$resp->assertRedirect('/register/confirm/awaiting');
|
|
|
|
$this->get('/register/confirm/awaiting')->assertSee('Email Address Not Confirmed');
|
|
|
|
$this->assertNull(auth()->user());
|
2016-01-02 09:48:35 -05:00
|
|
|
}
|
|
|
|
|
2022-01-31 09:16:56 -05:00
|
|
|
public function test_registration_role_unset_by_default()
|
|
|
|
{
|
|
|
|
$this->assertFalse(setting('registration-role'));
|
|
|
|
|
|
|
|
$resp = $this->asAdmin()->get('/settings');
|
|
|
|
$resp->assertElementContains('select[name="setting-registration-role"] option[value="0"][selected]', '-- None --');
|
|
|
|
}
|
|
|
|
|
2016-01-15 18:21:47 -05:00
|
|
|
public function test_logout()
|
2015-09-02 13:26:33 -04:00
|
|
|
{
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->asAdmin()->get('/')->assertOk();
|
2021-11-14 16:13:24 -05:00
|
|
|
$this->post('/logout')->assertRedirect('/');
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->get('/')->assertRedirect('/login');
|
2015-09-02 13:26:33 -04:00
|
|
|
}
|
2015-09-21 15:54:11 -04:00
|
|
|
|
2021-08-07 16:53:13 -04:00
|
|
|
public function test_mfa_session_cleared_on_logout()
|
|
|
|
{
|
|
|
|
$user = $this->getEditor();
|
|
|
|
$mfaSession = $this->app->make(MfaSession::class);
|
|
|
|
|
2021-08-21 10:49:40 -04:00
|
|
|
$mfaSession->markVerifiedForUser($user);
|
2021-08-07 16:53:13 -04:00
|
|
|
$this->assertTrue($mfaSession->isVerifiedForUser($user));
|
|
|
|
|
2021-11-14 16:13:24 -05:00
|
|
|
$this->asAdmin()->post('/logout');
|
2021-08-07 16:53:13 -04:00
|
|
|
$this->assertFalse($mfaSession->isVerifiedForUser($user));
|
|
|
|
}
|
|
|
|
|
2016-10-30 07:33:56 -04:00
|
|
|
public function test_reset_password_flow()
|
|
|
|
{
|
2017-01-25 14:35:40 -05:00
|
|
|
Notification::fake();
|
|
|
|
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->get('/login')
|
|
|
|
->assertElementContains('a[href="' . url('/password/email') . '"]', 'Forgot Password?');
|
|
|
|
|
|
|
|
$this->get('/password/email')
|
|
|
|
->assertElementContains('form[action="' . url('/password/email') . '"]', 'Send Reset Link');
|
2016-10-30 07:33:56 -04:00
|
|
|
|
2021-09-17 18:44:54 -04:00
|
|
|
$resp = $this->post('/password/email', [
|
2021-06-26 11:23:15 -04:00
|
|
|
'email' => 'admin@admin.com',
|
2016-10-30 07:33:56 -04:00
|
|
|
]);
|
2021-09-17 18:44:54 -04:00
|
|
|
$resp->assertRedirect('/password/email');
|
2016-10-30 07:33:56 -04:00
|
|
|
|
2021-09-17 18:44:54 -04:00
|
|
|
$resp = $this->get('/password/email');
|
|
|
|
$resp->assertSee('A password reset link will be sent to admin@admin.com if that email address is found in the system.');
|
|
|
|
|
|
|
|
$this->assertDatabaseHas('password_resets', [
|
|
|
|
'email' => 'admin@admin.com',
|
|
|
|
]);
|
|
|
|
|
|
|
|
/** @var User $user */
|
|
|
|
$user = User::query()->where('email', '=', 'admin@admin.com')->first();
|
2017-01-25 14:35:40 -05:00
|
|
|
|
2020-04-10 08:38:08 -04:00
|
|
|
Notification::assertSentTo($user, ResetPassword::class);
|
|
|
|
$n = Notification::sent($user, ResetPassword::class);
|
2017-01-25 14:35:40 -05:00
|
|
|
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->get('/password/reset/' . $n->first()->token)
|
|
|
|
->assertOk()
|
|
|
|
->assertSee('Reset Password');
|
|
|
|
|
|
|
|
$resp = $this->post('/password/reset', [
|
2021-09-18 16:21:44 -04:00
|
|
|
'email' => 'admin@admin.com',
|
|
|
|
'password' => 'randompass',
|
2021-09-17 18:44:54 -04:00
|
|
|
'password_confirmation' => 'randompass',
|
2021-09-18 16:21:44 -04:00
|
|
|
'token' => $n->first()->token,
|
2021-09-17 18:44:54 -04:00
|
|
|
]);
|
|
|
|
$resp->assertRedirect('/');
|
|
|
|
|
|
|
|
$this->get('/')->assertSee('Your password has been successfully reset');
|
2016-10-30 07:33:56 -04:00
|
|
|
}
|
|
|
|
|
2020-04-10 08:38:08 -04:00
|
|
|
public function test_reset_password_flow_shows_success_message_even_if_wrong_password_to_prevent_user_discovery()
|
|
|
|
{
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->get('/password/email');
|
|
|
|
$resp = $this->followingRedirects()->post('/password/email', [
|
|
|
|
'email' => 'barry@admin.com',
|
|
|
|
]);
|
|
|
|
$resp->assertSee('A password reset link will be sent to barry@admin.com if that email address is found in the system.');
|
|
|
|
$resp->assertDontSee('We can\'t find a user');
|
|
|
|
|
|
|
|
$this->get('/password/reset/arandometokenvalue')->assertSee('Reset Password');
|
|
|
|
$resp = $this->post('/password/reset', [
|
2021-09-18 16:21:44 -04:00
|
|
|
'email' => 'barry@admin.com',
|
|
|
|
'password' => 'randompass',
|
2021-09-17 18:44:54 -04:00
|
|
|
'password_confirmation' => 'randompass',
|
2021-09-18 16:21:44 -04:00
|
|
|
'token' => 'arandometokenvalue',
|
2021-09-17 18:44:54 -04:00
|
|
|
]);
|
|
|
|
$resp->assertRedirect('/password/reset/arandometokenvalue');
|
|
|
|
|
|
|
|
$this->get('/password/reset/arandometokenvalue')
|
|
|
|
->assertDontSee('We can\'t find a user')
|
|
|
|
->assertSee('The password reset token is invalid for this email address.');
|
2020-04-10 08:38:08 -04:00
|
|
|
}
|
|
|
|
|
2016-10-30 07:33:56 -04:00
|
|
|
public function test_reset_password_page_shows_sign_links()
|
|
|
|
{
|
|
|
|
$this->setSettings(['registration-enabled' => 'true']);
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->get('/password/email')
|
|
|
|
->assertElementContains('a', 'Log in')
|
|
|
|
->assertElementContains('a', 'Sign up');
|
2016-10-30 07:33:56 -04:00
|
|
|
}
|
|
|
|
|
2021-10-08 18:19:37 -04:00
|
|
|
public function test_reset_password_request_is_throttled()
|
|
|
|
{
|
|
|
|
$editor = $this->getEditor();
|
|
|
|
Notification::fake();
|
|
|
|
$this->get('/password/email');
|
|
|
|
$this->followingRedirects()->post('/password/email', [
|
|
|
|
'email' => $editor->email,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$resp = $this->followingRedirects()->post('/password/email', [
|
|
|
|
'email' => $editor->email,
|
|
|
|
]);
|
|
|
|
Notification::assertTimesSent(1, ResetPassword::class);
|
|
|
|
$resp->assertSee('A password reset link will be sent to ' . $editor->email . ' if that email address is found in the system.');
|
|
|
|
}
|
|
|
|
|
2019-05-19 11:25:05 -04:00
|
|
|
public function test_login_redirects_to_initially_requested_url_correctly()
|
|
|
|
{
|
|
|
|
config()->set('app.url', 'http://localhost');
|
2021-09-17 18:44:54 -04:00
|
|
|
/** @var Page $page */
|
2019-05-19 11:25:05 -04:00
|
|
|
$page = Page::query()->first();
|
|
|
|
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->get($page->getUrl())->assertRedirect(url('/login'));
|
2019-05-19 11:25:05 -04:00
|
|
|
$this->login('admin@admin.com', 'password')
|
2021-09-17 18:44:54 -04:00
|
|
|
->assertRedirect($page->getUrl());
|
2019-05-19 11:25:05 -04:00
|
|
|
}
|
|
|
|
|
2020-07-28 11:27:16 -04:00
|
|
|
public function test_login_intended_redirect_does_not_redirect_to_external_pages()
|
|
|
|
{
|
|
|
|
config()->set('app.url', 'http://localhost');
|
|
|
|
$this->setSettings(['app-public' => true]);
|
|
|
|
|
|
|
|
$this->get('/login', ['referer' => 'https://example.com']);
|
|
|
|
$login = $this->post('/login', ['email' => 'admin@admin.com', 'password' => 'password']);
|
|
|
|
|
2021-09-17 18:44:54 -04:00
|
|
|
$login->assertRedirect('http://localhost');
|
2020-07-28 11:27:16 -04:00
|
|
|
}
|
|
|
|
|
2021-08-21 10:14:24 -04:00
|
|
|
public function test_login_intended_redirect_does_not_factor_mfa_routes()
|
|
|
|
{
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->get('/books')->assertRedirect('/login');
|
|
|
|
$this->get('/mfa/setup')->assertRedirect('/login');
|
2021-08-21 10:14:24 -04:00
|
|
|
$login = $this->post('/login', ['email' => 'admin@admin.com', 'password' => 'password']);
|
2021-09-17 18:44:54 -04:00
|
|
|
$login->assertRedirect('/books');
|
2021-08-21 10:14:24 -04:00
|
|
|
}
|
|
|
|
|
2020-04-25 13:19:22 -04:00
|
|
|
public function test_login_authenticates_admins_on_all_guards()
|
|
|
|
{
|
|
|
|
$this->post('/login', ['email' => 'admin@admin.com', 'password' => 'password']);
|
|
|
|
$this->assertTrue(auth()->check());
|
|
|
|
$this->assertTrue(auth('ldap')->check());
|
|
|
|
$this->assertTrue(auth('saml2')->check());
|
2021-10-13 11:51:27 -04:00
|
|
|
$this->assertTrue(auth('oidc')->check());
|
2020-04-25 13:19:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_login_authenticates_nonadmins_on_default_guard_only()
|
|
|
|
{
|
|
|
|
$editor = $this->getEditor();
|
|
|
|
$editor->password = bcrypt('password');
|
|
|
|
$editor->save();
|
|
|
|
|
|
|
|
$this->post('/login', ['email' => $editor->email, 'password' => 'password']);
|
|
|
|
$this->assertTrue(auth()->check());
|
|
|
|
$this->assertFalse(auth('ldap')->check());
|
|
|
|
$this->assertFalse(auth('saml2')->check());
|
2021-10-13 11:51:27 -04:00
|
|
|
$this->assertFalse(auth('oidc')->check());
|
2020-04-25 13:19:22 -04:00
|
|
|
}
|
|
|
|
|
2020-07-28 07:59:43 -04:00
|
|
|
public function test_failed_logins_are_logged_when_message_configured()
|
|
|
|
{
|
|
|
|
$log = $this->withTestLogger();
|
|
|
|
config()->set(['logging.failed_login.message' => 'Failed login for %u']);
|
|
|
|
|
|
|
|
$this->post('/login', ['email' => 'admin@example.com', 'password' => 'cattreedog']);
|
|
|
|
$this->assertTrue($log->hasWarningThatContains('Failed login for admin@example.com'));
|
|
|
|
|
|
|
|
$this->post('/login', ['email' => 'admin@admin.com', 'password' => 'password']);
|
|
|
|
$this->assertFalse($log->hasWarningThatContains('Failed login for admin@admin.com'));
|
|
|
|
}
|
|
|
|
|
2021-08-30 16:28:17 -04:00
|
|
|
public function test_logged_in_user_with_unconfirmed_email_is_logged_out()
|
|
|
|
{
|
|
|
|
$this->setSettings(['registration-confirmation' => 'true']);
|
|
|
|
$user = $this->getEditor();
|
|
|
|
$user->email_confirmed = false;
|
|
|
|
$user->save();
|
|
|
|
|
|
|
|
auth()->login($user);
|
|
|
|
$this->assertTrue(auth()->check());
|
|
|
|
|
2021-09-17 18:44:54 -04:00
|
|
|
$this->get('/books')->assertRedirect('/');
|
2021-08-30 16:28:17 -04:00
|
|
|
$this->assertFalse(auth()->check());
|
|
|
|
}
|
|
|
|
|
2015-09-21 15:54:11 -04:00
|
|
|
/**
|
2021-06-26 11:23:15 -04:00
|
|
|
* Perform a login.
|
2015-09-21 15:54:11 -04:00
|
|
|
*/
|
2021-09-17 18:44:54 -04:00
|
|
|
protected function login(string $email, string $password): TestResponse
|
2015-09-21 15:54:11 -04:00
|
|
|
{
|
2021-09-17 18:44:54 -04:00
|
|
|
return $this->post('/login', compact('email', 'password'));
|
2015-09-21 15:54:11 -04:00
|
|
|
}
|
2015-09-02 13:26:33 -04:00
|
|
|
}
|