Clock + SystemClock (DateTimeImmutable in UTC), TokenGenerator + RandomTokenGenerator (bin2hex(random_bytes(32)) -> 64-char hex), PasswordHasher + BcryptPasswordHasher (password_hash with PASSWORD_DEFAULT, password_verify). matching fakes: FakeClock with mutable setTime, FakeTokenGenerator with a pre-seeded queue (throws once exhausted), FakePasswordHasher returns 'hashed:<plain>' for deterministic test assertions. composer stan now passes --memory-limit=512M (default 128M overflows once larastan loads more rules).
27 lines
570 B
PHP
27 lines
570 B
PHP
<?php
|
|
|
|
namespace Tests\Fakes;
|
|
|
|
use App\Auth\TokenGenerator;
|
|
use RuntimeException;
|
|
|
|
class FakeTokenGenerator implements TokenGenerator
|
|
{
|
|
private int $callCount = 0;
|
|
|
|
/**
|
|
* @param string[] $tokens
|
|
*/
|
|
public function __construct(private array $tokens) {}
|
|
|
|
public function generate(): string
|
|
{
|
|
if ($this->callCount >= count($this->tokens)) {
|
|
throw new RuntimeException('FakeTokenGenerator exhausted');
|
|
}
|
|
$token = $this->tokens[$this->callCount];
|
|
$this->callCount++;
|
|
|
|
return $token;
|
|
}
|
|
}
|