mirror of
https://github.com/koel/koel
synced 2024-12-19 09:03:07 +00:00
49 lines
1.4 KiB
PHP
49 lines
1.4 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Unit\Services;
|
||
|
|
||
|
use App\Repositories\UserRepository;
|
||
|
use App\Services\AuthenticationService;
|
||
|
use App\Services\TokenManager;
|
||
|
use Illuminate\Auth\Passwords\PasswordBroker;
|
||
|
use Illuminate\Hashing\HashManager;
|
||
|
use Illuminate\Support\Facades\Password;
|
||
|
use Mockery\MockInterface;
|
||
|
use Tests\TestCase;
|
||
|
|
||
|
class AuthenticationServiceTest extends TestCase
|
||
|
{
|
||
|
private UserRepository|MockInterface $userRepository;
|
||
|
private TokenManager|MockInterface $tokenManager;
|
||
|
private HashManager|MockInterface $hash;
|
||
|
private PasswordBroker|MockInterface $passwordBroker;
|
||
|
private AuthenticationService $service;
|
||
|
|
||
|
public function setUp(): void
|
||
|
{
|
||
|
parent::setUp();
|
||
|
|
||
|
$this->userRepository = $this->mock(UserRepository::class);
|
||
|
$this->tokenManager = $this->mock(TokenManager::class);
|
||
|
$this->hash = $this->mock(HashManager::class);
|
||
|
$this->passwordBroker = $this->mock(PasswordBroker::class);
|
||
|
|
||
|
$this->service = new AuthenticationService(
|
||
|
$this->userRepository,
|
||
|
$this->tokenManager,
|
||
|
$this->hash,
|
||
|
$this->passwordBroker
|
||
|
);
|
||
|
}
|
||
|
|
||
|
public function testTrySendResetPasswordLink(): void
|
||
|
{
|
||
|
$this->passwordBroker
|
||
|
->shouldReceive('sendResetLink')
|
||
|
->with(['email' => 'foo@bar.com'])
|
||
|
->andReturn(Password::RESET_LINK_SENT);
|
||
|
|
||
|
$this->assertTrue($this->service->trySendResetPasswordLink('foo@bar.com'));
|
||
|
}
|
||
|
}
|