mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
55 lines
2.0 KiB
PHP
Executable File
55 lines
2.0 KiB
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Models\User;
|
|
use Laravel\Fortify\Features;
|
|
use Laravel\Jetstream\Http\Livewire\TwoFactorAuthenticationForm;
|
|
use Livewire\Livewire;
|
|
|
|
test('two factor authentication can be enabled', function (): void {
|
|
$this->actingAs($user = User::factory()->create()->fresh());
|
|
|
|
$this->withSession(['auth.password_confirmed_at' => time()]);
|
|
|
|
Livewire::test(TwoFactorAuthenticationForm::class)
|
|
->call('enableTwoFactorAuthentication');
|
|
|
|
$user = $user->fresh();
|
|
|
|
expect($user->two_factor_secret)->not->toBeNull();
|
|
expect($user->recoveryCodes())->toHaveCount(8);
|
|
})->skip(fn (): bool => ! Features::canManageTwoFactorAuthentication(), 'Two factor authentication is not enabled.');
|
|
|
|
test('recovery codes can be regenerated', function (): void {
|
|
$this->actingAs($user = User::factory()->create()->fresh());
|
|
|
|
$this->withSession(['auth.password_confirmed_at' => time()]);
|
|
|
|
$component = Livewire::test(TwoFactorAuthenticationForm::class)
|
|
->call('enableTwoFactorAuthentication')
|
|
->call('regenerateRecoveryCodes');
|
|
|
|
$user = $user->fresh();
|
|
|
|
$component->call('regenerateRecoveryCodes');
|
|
|
|
expect($user->recoveryCodes())->toHaveCount(8);
|
|
expect(array_diff($user->recoveryCodes(), $user->fresh()->recoveryCodes()))->toHaveCount(8);
|
|
})->skip(fn (): bool => ! Features::canManageTwoFactorAuthentication(), 'Two factor authentication is not enabled.');
|
|
|
|
test('two factor authentication can be disabled', function (): void {
|
|
$this->actingAs($user = User::factory()->create()->fresh());
|
|
|
|
$this->withSession(['auth.password_confirmed_at' => time()]);
|
|
|
|
$component = Livewire::test(TwoFactorAuthenticationForm::class)
|
|
->call('enableTwoFactorAuthentication');
|
|
|
|
$this->assertNotNull($user->fresh()->two_factor_secret);
|
|
|
|
$component->call('disableTwoFactorAuthentication');
|
|
|
|
expect($user->fresh()->two_factor_secret)->toBeNull();
|
|
})->skip(fn (): bool => ! Features::canManageTwoFactorAuthentication(), 'Two factor authentication is not enabled.');
|