1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
<?php
namespace Illuminate\Tests\Auth;
use Illuminate\Auth\Passwords\PasswordBroker;
use Illuminate\Auth\Passwords\TokenRepositoryInterface;
use Illuminate\Contracts\Auth\CanResetPassword;
use Illuminate\Contracts\Auth\PasswordBroker as PasswordBrokerContract;
use Illuminate\Contracts\Auth\UserProvider;
use Illuminate\Contracts\Mail\Mailer;
use Illuminate\Support\Arr;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use UnexpectedValueException;
class AuthPasswordBrokerTest extends TestCase
{
protected function tearDown(): void
{
m::close();
}
public function testIfUserIsNotFoundErrorRedirectIsReturned()
{
$mocks = $this->getMocks();
$broker = $this->getMockBuilder(PasswordBroker::class)->setMethods(['getUser', 'makeErrorRedirect'])->setConstructorArgs(array_values($mocks))->getMock();
$broker->expects($this->once())->method('getUser')->willReturn(null);
$this->assertEquals(PasswordBrokerContract::INVALID_USER, $broker->sendResetLink(['credentials']));
}
public function testIfTokenIsRecentlyCreated()
{
$mocks = $this->getMocks();
$mocks['tokens'] = m::mock(TestTokenRepositoryInterface::class);
$broker = $this->getMockBuilder(PasswordBroker::class)->setMethods(['emailResetLink', 'getUri'])->setConstructorArgs(array_values($mocks))->getMock();
$mocks['users']->shouldReceive('retrieveByCredentials')->once()->with(['foo'])->andReturn($user = m::mock(CanResetPassword::class));
$mocks['tokens']->shouldReceive('recentlyCreatedToken')->once()->with($user)->andReturn(true);
$user->shouldReceive('sendPasswordResetNotification')->with('token');
$this->assertEquals(PasswordBrokerContract::RESET_THROTTLED, $broker->sendResetLink(['foo']));
}
public function testGetUserThrowsExceptionIfUserDoesntImplementCanResetPassword()
{
$this->expectException(UnexpectedValueException::class);
$this->expectExceptionMessage('User must implement CanResetPassword interface.');
$broker = $this->getBroker($mocks = $this->getMocks());
$mocks['users']->shouldReceive('retrieveByCredentials')->once()->with(['foo'])->andReturn('bar');
$broker->getUser(['foo']);
}
public function testUserIsRetrievedByCredentials()
{
$broker = $this->getBroker($mocks = $this->getMocks());
$mocks['users']->shouldReceive('retrieveByCredentials')->once()->with(['foo'])->andReturn($user = m::mock(CanResetPassword::class));
$this->assertEquals($user, $broker->getUser(['foo']));
}
public function testBrokerCreatesTokenAndRedirectsWithoutError()
{
$mocks = $this->getMocks();
$broker = $this->getMockBuilder(PasswordBroker::class)->setMethods(['emailResetLink', 'getUri'])->setConstructorArgs(array_values($mocks))->getMock();
$mocks['users']->shouldReceive('retrieveByCredentials')->once()->with(['foo'])->andReturn($user = m::mock(CanResetPassword::class));
$mocks['tokens']->shouldReceive('create')->once()->with($user)->andReturn('token');
$user->shouldReceive('sendPasswordResetNotification')->with('token');
$this->assertEquals(PasswordBrokerContract::RESET_LINK_SENT, $broker->sendResetLink(['foo']));
}
public function testRedirectIsReturnedByResetWhenUserCredentialsInvalid()
{
$broker = $this->getBroker($mocks = $this->getMocks());
$mocks['users']->shouldReceive('retrieveByCredentials')->once()->with(['creds'])->andReturn(null);
$this->assertEquals(PasswordBrokerContract::INVALID_USER, $broker->reset(['creds'], function () {
//
}));
}
public function testRedirectReturnedByRemindWhenRecordDoesntExistInTable()
{
$creds = ['token' => 'token'];
$broker = $this->getBroker($mocks = $this->getMocks());
$mocks['users']->shouldReceive('retrieveByCredentials')->once()->with(Arr::except($creds, ['token']))->andReturn($user = m::mock(CanResetPassword::class));
$mocks['tokens']->shouldReceive('exists')->with($user, 'token')->andReturn(false);
$this->assertEquals(PasswordBrokerContract::INVALID_TOKEN, $broker->reset($creds, function () {
//
}));
}
public function testResetRemovesRecordOnReminderTableAndCallsCallback()
{
unset($_SERVER['__password.reset.test']);
$broker = $this->getMockBuilder(PasswordBroker::class)->setMethods(['validateReset', 'getPassword', 'getToken'])->setConstructorArgs(array_values($mocks = $this->getMocks()))->getMock();
$broker->expects($this->once())->method('validateReset')->willReturn($user = m::mock(CanResetPassword::class));
$mocks['tokens']->shouldReceive('delete')->once()->with($user);
$callback = function ($user, $password) {
$_SERVER['__password.reset.test'] = compact('user', 'password');
return 'foo';
};
$this->assertEquals(PasswordBrokerContract::PASSWORD_RESET, $broker->reset(['password' => 'password', 'token' => 'token'], $callback));
$this->assertEquals(['user' => $user, 'password' => 'password'], $_SERVER['__password.reset.test']);
}
protected function getBroker($mocks)
{
return new PasswordBroker($mocks['tokens'], $mocks['users'], $mocks['mailer'], $mocks['view']);
}
protected function getMocks()
{
return [
'tokens' => m::mock(TokenRepositoryInterface::class),
'users' => m::mock(UserProvider::class),
'mailer' => m::mock(Mailer::class),
'view' => 'resetLinkView',
];
}
}
// Before 7.x we have to check the existence of a new method. In 7.x, this code must be moved to
// Illuminate\Auth\Passwords\TokenRepositoryInterface
interface TestTokenRepositoryInterface extends TokenRepositoryInterface
{
public function recentlyCreatedToken(CanResetPassword $user);
}
|