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 135 136 137 138 139 140 141 142 143 144
|
<?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\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 = m::mock(PasswordBroker::class, array_values($mocks))->makePartial();
$broker->shouldReceive('getUser')->once()->andReturnNull();
$this->assertSame(PasswordBrokerContract::INVALID_USER, $broker->sendResetLink(['credentials']));
}
public function testIfTokenIsRecentlyCreated()
{
$mocks = $this->getMocks();
$broker = m::mock(PasswordBroker::class, array_values($mocks))->makePartial();
$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->assertSame(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 = m::mock(PasswordBroker::class, array_values($mocks))->makePartial();
$mocks['users']->shouldReceive('retrieveByCredentials')->once()->with(['foo'])->andReturn($user = m::mock(CanResetPassword::class));
$mocks['tokens']->shouldReceive('recentlyCreatedToken')->once()->with($user)->andReturn(false);
$mocks['tokens']->shouldReceive('create')->once()->with($user)->andReturn('token');
$user->shouldReceive('sendPasswordResetNotification')->with('token');
$this->assertSame(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->assertSame(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->assertSame(PasswordBrokerContract::INVALID_TOKEN, $broker->reset($creds, function () {
//
}));
}
public function testResetRemovesRecordOnReminderTableAndCallsCallback()
{
unset($_SERVER['__password.reset.test']);
$mocks = $this->getMocks();
$broker = m::mock(PasswordBroker::class, array_values($mocks))->makePartial()->shouldAllowMockingProtectedMethods();
$broker->shouldReceive('validateReset')->once()->andReturn($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->assertSame(PasswordBrokerContract::PASSWORD_RESET, $broker->reset(['password' => 'password', 'token' => 'token'], $callback));
$this->assertEquals(['user' => $user, 'password' => 'password'], $_SERVER['__password.reset.test']);
}
public function testExecutesCallbackInsteadOfSendingNotification()
{
$executed = false;
$closure = function () use (&$executed) {
$executed = true;
};
$mocks = $this->getMocks();
$broker = m::mock(PasswordBroker::class, array_values($mocks))->makePartial();
$mocks['users']->shouldReceive('retrieveByCredentials')->once()->with(['foo'])->andReturn($user = m::mock(CanResetPassword::class));
$mocks['tokens']->shouldReceive('recentlyCreatedToken')->once()->with($user)->andReturn(false);
$mocks['tokens']->shouldReceive('create')->once()->with($user)->andReturn('token');
$user->shouldReceive('sendPasswordResetNotification')->with('token');
$this->assertEquals(PasswordBrokerContract::RESET_LINK_SENT, $broker->sendResetLink(['foo'], $closure));
$this->assertTrue($executed);
}
protected function getBroker($mocks)
{
return new PasswordBroker($mocks['tokens'], $mocks['users']);
}
protected function getMocks()
{
return [
'tokens' => m::mock(TokenRepositoryInterface::class),
'users' => m::mock(UserProvider::class),
];
}
}
|