42 lines
1.1 KiB
PHP
42 lines
1.1 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Tests;
|
||
|
|
|
||
|
|
use App\Entity\User;
|
||
|
|
use Symfony\Component\Security\Core\Exception\UserNotFoundException;
|
||
|
|
use Symfony\Component\Security\Core\User\UserInterface;
|
||
|
|
use Symfony\Component\Security\Core\User\UserProviderInterface;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @implements UserProviderInterface<User>
|
||
|
|
*/
|
||
|
|
class TestUserProvider implements UserProviderInterface
|
||
|
|
{
|
||
|
|
/** @var array<string, User> */
|
||
|
|
private array $users = [];
|
||
|
|
|
||
|
|
public function addUser(User $user): void
|
||
|
|
{
|
||
|
|
$this->users[$user->getUserIdentifier()] = $user;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function refreshUser(UserInterface $user): UserInterface
|
||
|
|
{
|
||
|
|
return $this->loadUserByIdentifier($user->getUserIdentifier());
|
||
|
|
}
|
||
|
|
|
||
|
|
public function supportsClass(string $class): bool
|
||
|
|
{
|
||
|
|
return User::class === $class || is_subclass_of($class, User::class);
|
||
|
|
}
|
||
|
|
|
||
|
|
public function loadUserByIdentifier(string $identifier): UserInterface
|
||
|
|
{
|
||
|
|
if (!isset($this->users[$identifier])) {
|
||
|
|
throw new UserNotFoundException(sprintf('User "%s" not found.', $identifier));
|
||
|
|
}
|
||
|
|
|
||
|
|
return $this->users[$identifier];
|
||
|
|
}
|
||
|
|
}
|