post('/register', [ 'email' => 'notice@example.com', ])->assertRedirect('/register/notice'); $this->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 () { Mail::fake(); $this->post('/register', [ 'email' => 'cooldown@example.com', ])->assertRedirect('/register/notice'); $this->from('/register/notice')->post('/register/resend-verification', [ 'email' => 'cooldown@example.com', ])->assertRedirect('/register/notice') ->assertSessionHasErrors('email'); }); it('resends verification after cooldown expires', function () { Mail::fake(); $this->post('/register', [ 'email' => 'resend@example.com', ])->assertRedirect('/register/notice'); $key = 'register:resend:cooldown:' . sha1('resend@example.com'); Cache::forget($key); $this->post('/register/resend-verification', [ 'email' => 'resend@example.com', ])->assertRedirect('/register/notice'); Mail::assertQueued(RegistrationVerificationMail::class, 2); expect(User::query()->where('email', 'resend@example.com')->exists())->toBeTrue(); });