Files
SkinbaseNova/tests/Feature/Auth/RegistrationNoticeResendTest.php
2026-04-18 17:02:56 +02:00

63 lines
1.9 KiB
PHP

<?php
use App\Jobs\SendVerificationEmailJob;
use App\Models\User;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\Queue;
uses(RefreshDatabase::class);
it('shows registration notice with email after first step', function () {
$this->withSession(['registration_email' => 'notice@example.com'])
->get('/register/notice')
->assertOk()
->assertSee('notice@example.com')
->assertSee('Change email');
});
it('prefills register form email from query string', function () {
$this->get('/register?email=prefill@example.com')
->assertOk()
->assertSee('value="prefill@example.com"', false);
});
it('blocks resend while cooldown is active', function () {
Queue::fake();
User::factory()->create([
'email' => 'cooldown@example.com',
'email_verified_at' => null,
'onboarding_step' => 'email',
'last_verification_sent_at' => now(),
]);
$response = $this->from('/register/notice')->post('/register/resend-verification', [
'email' => 'cooldown@example.com',
]);
$response->assertRedirect('/register/notice');
$response->assertSessionHasNoErrors();
$response->assertSessionHas('status', 'If that email is valid, we sent a verification link.');
Queue::assertNothingPushed();
});
it('resends verification after cooldown expires', function () {
Queue::fake();
User::factory()->create([
'email' => 'resend@example.com',
'email_verified_at' => null,
'onboarding_step' => 'email',
'last_verification_sent_at' => now()->subMinutes(31),
]);
$this->post('/register/resend-verification', [
'email' => 'resend@example.com',
])->assertRedirect('/register/notice');
Queue::assertPushed(SendVerificationEmailJob::class, 1);
expect(User::query()->where('email', 'resend@example.com')->exists())->toBeTrue();
});