mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-12 20:20:41 -05:00
61 lines
1.8 KiB
PHP
Executable File
61 lines
1.8 KiB
PHP
Executable File
<?php
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Auth\Events\Verified;
|
|
use Illuminate\Support\Facades\Event;
|
|
use Illuminate\Support\Facades\URL;
|
|
use Laravel\Fortify\Features;
|
|
|
|
test('email verification screen can be rendered', function () {
|
|
$user = User::factory()->create([
|
|
'email_verified_at' => null,
|
|
]);
|
|
|
|
$response = $this->actingAs($user)->get('/email/verify');
|
|
|
|
$response->assertStatus(200);
|
|
})->skip(function () {
|
|
return ! Features::enabled(Features::emailVerification());
|
|
}, 'Email verification not enabled.');
|
|
|
|
test('email can be verified', function () {
|
|
Event::fake();
|
|
|
|
$user = User::factory()->create([
|
|
'email_verified_at' => null,
|
|
]);
|
|
|
|
$verificationUrl = URL::temporarySignedRoute(
|
|
'verification.verify',
|
|
now()->addMinutes(60),
|
|
['id' => $user->id, 'hash' => sha1($user->email)]
|
|
);
|
|
|
|
$response = $this->actingAs($user)->get($verificationUrl);
|
|
|
|
Event::assertDispatched(Verified::class);
|
|
|
|
expect($user->fresh()->hasVerifiedEmail())->toBeTrue();
|
|
$response->assertRedirect(route('dashboard', absolute: false).'?verified=1');
|
|
})->skip(function () {
|
|
return ! Features::enabled(Features::emailVerification());
|
|
}, 'Email verification not enabled.');
|
|
|
|
test('email can not verified with invalid hash', function () {
|
|
$user = User::factory()->create([
|
|
'email_verified_at' => null,
|
|
]);
|
|
|
|
$verificationUrl = URL::temporarySignedRoute(
|
|
'verification.verify',
|
|
now()->addMinutes(60),
|
|
['id' => $user->id, 'hash' => sha1('wrong-email')]
|
|
);
|
|
|
|
$this->actingAs($user)->get($verificationUrl);
|
|
|
|
expect($user->fresh()->hasVerifiedEmail())->toBeFalse();
|
|
})->skip(function () {
|
|
return ! Features::enabled(Features::emailVerification());
|
|
}, 'Email verification not enabled.');
|