test auth contracts

This commit is contained in:
Yisroel Baum 2026-08-02 20:53:15 +03:00
parent 3da9c586c3
commit b3266b38c8
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
15 changed files with 457 additions and 165 deletions

View file

@ -101,7 +101,7 @@ class AuthMiddlewareTest extends TestCase
): User {
$user = app(UserRepository::class)->create(new CreateUserDto(
email: new EmailAddress('user@example.com'),
password: 'correct-password',
passwordHash: 'hashed-password',
));
app(SessionRepository::class)->create(new CreateSessionDto(
token: $token,

View file

@ -20,7 +20,7 @@ class EloquentSessionRepositoryTest extends TestCase
{
$user = app(UserRepository::class)->create(new CreateUserDto(
email: new EmailAddress('user@example.com'),
password: 'correct-password',
passwordHash: 'hashed-password',
));
$createdAt = $this->utc('2026-07-31T12:00:00');
$expiresAt = $this->utc('2026-08-07T12:00:00');
@ -62,7 +62,7 @@ class EloquentSessionRepositoryTest extends TestCase
{
$user = app(UserRepository::class)->create(new CreateUserDto(
email: new EmailAddress('user@example.com'),
password: 'correct-password',
passwordHash: 'hashed-password',
));
$repository = app(SessionRepository::class);
$repository->create(new CreateSessionDto(

View file

@ -2,162 +2,46 @@
namespace Tests\Feature\Auth;
use App\Auth\Clock;
use App\Auth\PasswordHasher;
use App\Auth\SessionRepository;
use App\Http\Middleware\AuthMiddleware;
use App\Shared\ValueObject\EmailAddress;
use App\User\CreateUserDto;
use App\User\User;
use App\User\UserRepository;
use DateTimeImmutable;
use DateTimeZone;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Symfony\Component\HttpFoundation\Cookie;
use Tests\Fakes\FakeClock;
use Tests\TestCase;
class LoginEndpointTest extends TestCase
{
use RefreshDatabase;
private DateTimeImmutable $currentTime;
protected function setUp(): void
public function test_login_returns_user_and_sets_session_cookie(): void
{
parent::setUp();
$this->currentTime = new DateTimeImmutable(
'2026-07-31T12:00:00',
new DateTimeZone('UTC'),
);
$this->app->instance(
Clock::class,
new FakeClock($this->currentTime),
);
config()->set('session.lifetime', 120);
config()->set('session.path', '/');
config()->set('session.secure', true);
config()->set('session.same_site', 'lax');
}
public function test_login_validates_its_request(): void
{
$this->postJson('/api/login')
->assertUnprocessable()
->assertJsonValidationErrors(['email', 'password']);
$this->postJson('/api/login', [
'email' => 'invalid-email',
'password' => 'password',
])->assertUnprocessable()
->assertJsonValidationErrors(['email']);
}
public function test_login_rejects_invalid_credentials_generically(): void
{
$this->createUser();
$this->postJson('/api/login', [
'email' => 'user@example.com',
'password' => 'wrong-password',
])->assertUnauthorized()
->assertExactJson(['error' => 'invalid_credentials'])
->assertCookieMissing(AuthMiddleware::COOKIE_NAME);
$this->postJson('/api/login', [
'email' => 'unknown@example.com',
'password' => 'correct-password',
])->assertUnauthorized()
->assertExactJson(['error' => 'invalid_credentials'])
->assertCookieMissing(AuthMiddleware::COOKIE_NAME);
$this->assertDatabaseCount('sessions', 0);
}
public function test_login_creates_a_session_and_returns_the_user(): void
{
$user = $this->createUser();
$email = 'user@example.com';
$password = 'correct-password';
$passwordHash = app(PasswordHasher::class)->hash($password);
app(UserRepository::class)->create(new CreateUserDto(
email: new EmailAddress($email),
passwordHash: $passwordHash,
));
$response = $this->postJson('/api/login', [
'email' => ' user@EXAMPLE.COM ',
'password' => 'correct-password',
'email' => $email,
'password' => $password,
]);
$response->assertOk()->assertExactJson([
'user' => [
'id' => $user->getId(),
'email' => 'user@example.com',
],
]);
$response->assertOk();
$response->assertJsonPath('user.email', $email);
$cookie = $this->findAuthCookie(
$response->headers->getCookies(),
$cookie = $response->getCookie(
AuthMiddleware::COOKIE_NAME,
false,
);
$token = $cookie->getValue();
$this->assertMatchesRegularExpression(
'/^[a-f0-9]{64}$/',
$token,
$this->assertNotNull($cookie);
$this->assertNotNull(
app(SessionRepository::class)->findByToken(
$cookie->getValue(),
),
);
$this->assertTrue($cookie->isHttpOnly());
$this->assertTrue($cookie->isSecure());
$this->assertSame('/', $cookie->getPath());
$this->assertSame('lax', $cookie->getSameSite());
$this->assertSame(
$this->currentTime->modify('+120 minutes')->getTimestamp(),
$cookie->getExpiresTime(),
);
$session = app(SessionRepository::class)->findByToken($token);
$this->assertNotNull($session);
$this->assertSame($user->getId(), $session->getUser()->getId());
$this->assertEquals(
$this->currentTime,
$session->getCreatedAt(),
);
$this->assertEquals(
$this->currentTime->modify('+120 minutes'),
$session->getExpiresAt(),
);
}
public function test_login_throttles_repeated_attempts(): void
{
$this->createUser();
for ($attempt = 1; $attempt <= 5; $attempt++) {
$this->postJson('/api/login', [
'email' => 'user@example.com',
'password' => 'wrong-password',
])->assertUnauthorized();
}
$this->postJson('/api/login', [
'email' => 'user@example.com',
'password' => 'wrong-password',
])->assertStatus(429);
}
private function createUser(): User
{
return app(UserRepository::class)->create(new CreateUserDto(
email: new EmailAddress('user@example.com'),
password: 'correct-password',
));
}
/**
* @param array<int, Cookie> $cookies
*/
private function findAuthCookie(array $cookies): Cookie
{
foreach ($cookies as $cookie) {
if ($cookie->getName() === AuthMiddleware::COOKIE_NAME) {
return $cookie;
}
}
$this->fail('The authentication cookie was not set.');
}
}

View file

@ -25,7 +25,7 @@ class MeEndpointTest extends TestCase
);
$user = app(UserRepository::class)->create(new CreateUserDto(
email: new EmailAddress('user@example.com'),
password: 'correct-password',
passwordHash: 'hashed-password',
));
app(SessionRepository::class)->create(new CreateSessionDto(
token: 'valid-token',

View file

@ -2,6 +2,7 @@
namespace Tests\Feature\Database;
use App\Auth\PasswordHasher;
use App\Shared\ValueObject\EmailAddress;
use App\User\UserRepository;
use Illuminate\Foundation\Testing\RefreshDatabase;
@ -21,15 +22,18 @@ class DatabaseSeederTest extends TestCase
]);
$this->assertDatabaseMissing('users', [
'email' => 'user@example.com',
'password' => 'password',
'passwordHash' => 'password',
]);
$this->assertDatabaseCount('users', 1);
$user = app(UserRepository::class)->findByCredentials(
$user = app(UserRepository::class)->findByEmail(
new EmailAddress('user@example.com'),
'password',
);
$this->assertNotNull($user);
$this->assertTrue(app(PasswordHasher::class)->verify(
'password',
$user->getPasswordHash(),
));
}
}

View file

@ -17,7 +17,7 @@ class EloquentUserRepositoryTest extends TestCase
$repository = app(UserRepository::class);
$user = $repository->create(new CreateUserDto(
email: new EmailAddress('Founder@EXAMPLE.COM'),
password: 'correct-password',
passwordHash: 'hashed-password',
));
$this->assertGreaterThan(0, $user->getId());
@ -29,9 +29,9 @@ class EloquentUserRepositoryTest extends TestCase
'id' => $user->getId(),
'email' => 'Founder@example.com',
]);
$this->assertDatabaseMissing('users', [
$this->assertDatabaseHas('users', [
'id' => $user->getId(),
'password' => 'correct-password',
'passwordHash' => 'hashed-password',
]);
$foundUser = $repository->find($user->getId());
@ -42,6 +42,10 @@ class EloquentUserRepositoryTest extends TestCase
$user->getEmail()->value(),
$foundUser->getEmail()->value(),
);
$this->assertSame(
$user->getPasswordHash(),
$foundUser->getPasswordHash(),
);
}
public function test_it_returns_null_for_an_unknown_user(): void
@ -51,38 +55,27 @@ class EloquentUserRepositoryTest extends TestCase
$this->assertNull($repository->find(999));
}
public function test_it_finds_a_user_with_matching_credentials(): void
public function test_it_finds_a_user_by_email(): void
{
$repository = app(UserRepository::class);
$createdUser = $repository->create(new CreateUserDto(
email: new EmailAddress('user@example.com'),
password: 'correct-password',
passwordHash: 'hashed-password',
));
$foundUser = $repository->findByCredentials(
$foundUser = $repository->findByEmail(
new EmailAddress('user@EXAMPLE.COM'),
'correct-password',
);
$this->assertNotNull($foundUser);
$this->assertSame($createdUser->getId(), $foundUser->getId());
}
public function test_it_rejects_non_matching_credentials(): void
public function test_it_returns_null_for_an_unknown_email(): void
{
$repository = app(UserRepository::class);
$repository->create(new CreateUserDto(
email: new EmailAddress('user@example.com'),
password: 'correct-password',
));
$this->assertNull($repository->findByCredentials(
new EmailAddress('user@example.com'),
'wrong-password',
));
$this->assertNull($repository->findByCredentials(
$this->assertNull($repository->findByEmail(
new EmailAddress('unknown@example.com'),
'correct-password',
));
}
}