CluPilotCloud/tests/Feature/Auth/RegisterTest.php

69 lines
2.5 KiB
PHP

<?php
use App\Models\User;
it('shows the signup page to guests', function () {
$this->get(route('register'))->assertOk()->assertSee(__('auth.register_title'));
});
it('links between login and signup', function () {
$this->get(route('login'))->assertOk()->assertSee(route('register'));
$this->get(route('register'))->assertOk()->assertSee(route('login'));
});
it('registers a new account and signs in', function () {
$this->post(route('register.store'), [
'name' => 'New Co',
'email' => 'new@signup.test',
'password' => 'password1234',
'password_confirmation' => 'password1234',
])->assertRedirect();
$user = User::query()->where('email', 'new@signup.test')->first();
// A registered user is never an operator: the two no longer share a table
// or a role system to check "isOperator" against at all.
expect($user)->not->toBeNull();
$this->assertAuthenticatedAs($user);
// A linked customer is created so the portal has something to work with.
$customer = \App\Models\Customer::query()->where('user_id', $user->id)->first();
expect($customer)->not->toBeNull()->and($customer->email)->toBe('new@signup.test');
});
it('refuses to register with an existing customer email (account-claim guard)', function () {
\App\Models\Customer::factory()->create(['email' => 'claim@signup.test']);
$this->post(route('register.store'), [
'name' => 'Claimer', 'email' => 'claim@signup.test',
'password' => 'password1234', 'password_confirmation' => 'password1234',
])->assertSessionHasErrors('email');
expect(User::query()->where('email', 'claim@signup.test')->exists())->toBeFalse();
});
it('throttles repeated registration attempts', function () {
$hit429 = false;
for ($i = 0; $i < 24; $i++) {
$res = $this->post(route('register.store'), [
'name' => 'S', 'email' => "spam{$i}@signup.test",
'password' => 'password1234', 'password_confirmation' => 'password1234',
]);
if ($res->status() === 429) {
$hit429 = true;
break;
}
}
expect($hit429)->toBeTrue();
});
it('rejects a mismatched password confirmation', function () {
$this->post(route('register.store'), [
'name' => 'X',
'email' => 'x@signup.test',
'password' => 'password1234',
'password_confirmation' => 'different',
])->assertSessionHasErrors('password');
expect(User::query()->where('email', 'x@signup.test')->exists())->toBeFalse();
});