2021-11-14 01:52:46 +01:00
|
|
|
<?php
|
|
|
|
|
2021-11-30 17:39:33 +01:00
|
|
|
namespace Tests\Api\v1\Controllers;
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2021-12-02 13:15:53 +01:00
|
|
|
use App\Models\User;
|
|
|
|
use App\Models\Group;
|
2021-11-14 01:52:46 +01:00
|
|
|
use Tests\FeatureTestCase;
|
2021-12-02 13:15:53 +01:00
|
|
|
use App\Models\TwoFAccount;
|
2021-11-14 01:52:46 +01:00
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
use Illuminate\Support\Facades\Storage;
|
2022-06-21 17:27:47 +02:00
|
|
|
use Illuminate\Http\UploadedFile;
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2021-11-22 01:09:54 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \App\Api\v1\Controllers\TwoFAccountController
|
2021-11-30 17:39:33 +01:00
|
|
|
* @covers \App\Api\v1\Resources\TwoFAccountReadResource
|
|
|
|
* @covers \App\Api\v1\Resources\TwoFAccountStoreResource
|
2021-11-22 01:09:54 +01:00
|
|
|
*/
|
2021-11-14 01:52:46 +01:00
|
|
|
class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
|
{
|
|
|
|
/**
|
2021-12-02 13:15:53 +01:00
|
|
|
* @var \App\Models\User
|
2021-11-14 01:52:46 +01:00
|
|
|
*/
|
|
|
|
protected $user;
|
|
|
|
|
2021-11-22 01:09:54 +01:00
|
|
|
/**
|
2021-12-02 13:15:53 +01:00
|
|
|
* @var \App\Models\Group
|
2021-11-22 01:09:54 +01:00
|
|
|
*/
|
|
|
|
protected $group;
|
|
|
|
|
2021-11-14 01:52:46 +01:00
|
|
|
private const ACCOUNT = 'account';
|
|
|
|
private const SERVICE = 'service';
|
|
|
|
private const SECRET = 'A4GRFHVVRBGY7UIW';
|
|
|
|
private const ALGORITHM_DEFAULT = 'sha1';
|
|
|
|
private const ALGORITHM_CUSTOM = 'sha256';
|
|
|
|
private const DIGITS_DEFAULT = 6;
|
|
|
|
private const DIGITS_CUSTOM = 7;
|
|
|
|
private const PERIOD_DEFAULT = 30;
|
|
|
|
private const PERIOD_CUSTOM = 40;
|
|
|
|
private const COUNTER_DEFAULT = 0;
|
|
|
|
private const COUNTER_CUSTOM = 5;
|
2021-11-15 00:21:07 +01:00
|
|
|
private const IMAGE = 'https%3A%2F%2Fen.opensuse.org%2Fimages%2F4%2F44%2FButton-filled-colour.png';
|
2021-11-14 01:52:46 +01:00
|
|
|
private const ICON = 'test.png';
|
2021-11-15 00:21:07 +01:00
|
|
|
private const TOTP_FULL_CUSTOM_URI = 'otpauth://totp/'.self::SERVICE.':'.self::ACCOUNT.'?secret='.self::SECRET.'&issuer='.self::SERVICE.'&digits='.self::DIGITS_CUSTOM.'&period='.self::PERIOD_CUSTOM.'&algorithm='.self::ALGORITHM_CUSTOM.'&image='.self::IMAGE;
|
|
|
|
private const HOTP_FULL_CUSTOM_URI = 'otpauth://hotp/'.self::SERVICE.':'.self::ACCOUNT.'?secret='.self::SECRET.'&issuer='.self::SERVICE.'&digits='.self::DIGITS_CUSTOM.'&counter='.self::COUNTER_CUSTOM.'&algorithm='.self::ALGORITHM_CUSTOM.'&image='.self::IMAGE;
|
2021-11-14 01:52:46 +01:00
|
|
|
private const TOTP_SHORT_URI = 'otpauth://totp/'.self::ACCOUNT.'?secret='.self::SECRET;
|
|
|
|
private const HOTP_SHORT_URI = 'otpauth://hotp/'.self::ACCOUNT.'?secret='.self::SECRET;
|
2021-11-15 00:21:07 +01:00
|
|
|
private const TOTP_URI_WITH_UNREACHABLE_IMAGE = 'otpauth://totp/service:account?secret=A4GRFHVVRBGY7UIW&image=https%3A%2F%2Fen.opensuse.org%2Fimage.png';
|
2021-11-14 01:52:46 +01:00
|
|
|
private const INVALID_OTPAUTH_URI = 'otpauth://Xotp/'.self::ACCOUNT.'?secret='.self::SECRET;
|
2021-11-15 00:21:07 +01:00
|
|
|
private const VALID_RESOURCE_STRUCTURE_WITHOUT_SECRET = [
|
|
|
|
'id',
|
|
|
|
'group_id',
|
|
|
|
'service',
|
|
|
|
'account',
|
|
|
|
'icon',
|
|
|
|
'otp_type',
|
|
|
|
'digits',
|
|
|
|
'algorithm',
|
|
|
|
'period',
|
|
|
|
'counter'
|
|
|
|
];
|
|
|
|
private const VALID_RESOURCE_STRUCTURE_WITH_SECRET = [
|
|
|
|
'id',
|
|
|
|
'group_id',
|
|
|
|
'service',
|
|
|
|
'account',
|
|
|
|
'icon',
|
|
|
|
'otp_type',
|
|
|
|
'secret',
|
|
|
|
'digits',
|
|
|
|
'algorithm',
|
|
|
|
'period',
|
|
|
|
'counter'
|
|
|
|
];
|
|
|
|
private const VALID_OTP_RESOURCE_STRUCTURE_FOR_TOTP = [
|
|
|
|
'generated_at',
|
|
|
|
'otp_type',
|
|
|
|
'password',
|
|
|
|
'period',
|
|
|
|
];
|
|
|
|
private const VALID_OTP_RESOURCE_STRUCTURE_FOR_HOTP = [
|
|
|
|
'otp_type',
|
|
|
|
'password',
|
|
|
|
'counter',
|
|
|
|
];
|
|
|
|
private const ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_TOTP = [
|
|
|
|
'service' => self::SERVICE,
|
|
|
|
'account' => self::ACCOUNT,
|
|
|
|
'icon' => self::ICON,
|
|
|
|
'otp_type' => 'totp',
|
|
|
|
'secret' => self::SECRET,
|
|
|
|
'digits' => self::DIGITS_CUSTOM,
|
|
|
|
'algorithm' => self::ALGORITHM_CUSTOM,
|
|
|
|
'period' => self::PERIOD_CUSTOM,
|
|
|
|
'counter' => null,
|
|
|
|
];
|
|
|
|
private const ARRAY_OF_MINIMUM_VALID_PARAMETERS_FOR_TOTP = [
|
|
|
|
'account' => self::ACCOUNT,
|
|
|
|
'otp_type' => 'totp',
|
|
|
|
'secret' => self::SECRET,
|
|
|
|
];
|
|
|
|
private const JSON_FRAGMENTS_FOR_CUSTOM_TOTP = [
|
|
|
|
'service' => self::SERVICE,
|
|
|
|
'account' => self::ACCOUNT,
|
|
|
|
'otp_type' => 'totp',
|
|
|
|
'secret' => self::SECRET,
|
|
|
|
'digits' => self::DIGITS_CUSTOM,
|
|
|
|
'algorithm' => self::ALGORITHM_CUSTOM,
|
|
|
|
'period' => self::PERIOD_CUSTOM,
|
|
|
|
'counter' => null,
|
|
|
|
];
|
|
|
|
private const JSON_FRAGMENTS_FOR_DEFAULT_TOTP = [
|
|
|
|
'service' => null,
|
|
|
|
'account' => self::ACCOUNT,
|
|
|
|
'otp_type' => 'totp',
|
|
|
|
'secret' => self::SECRET,
|
|
|
|
'digits' => self::DIGITS_DEFAULT,
|
|
|
|
'algorithm' => self::ALGORITHM_DEFAULT,
|
|
|
|
'period' => self::PERIOD_DEFAULT,
|
|
|
|
'counter' => null,
|
|
|
|
];
|
|
|
|
private const ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_HOTP = [
|
|
|
|
'service' => self::SERVICE,
|
|
|
|
'account' => self::ACCOUNT,
|
|
|
|
'icon' => self::ICON,
|
|
|
|
'otp_type' => 'hotp',
|
|
|
|
'secret' => self::SECRET,
|
|
|
|
'digits' => self::DIGITS_CUSTOM,
|
|
|
|
'algorithm' => self::ALGORITHM_CUSTOM,
|
|
|
|
'period' => null,
|
|
|
|
'counter' => self::COUNTER_CUSTOM,
|
|
|
|
];
|
|
|
|
private const ARRAY_OF_MINIMUM_VALID_PARAMETERS_FOR_HOTP = [
|
|
|
|
'account' => self::ACCOUNT,
|
|
|
|
'otp_type' => 'hotp',
|
|
|
|
'secret' => self::SECRET,
|
|
|
|
];
|
|
|
|
private const JSON_FRAGMENTS_FOR_CUSTOM_HOTP = [
|
|
|
|
'service' => self::SERVICE,
|
|
|
|
'account' => self::ACCOUNT,
|
|
|
|
'otp_type' => 'hotp',
|
|
|
|
'secret' => self::SECRET,
|
|
|
|
'digits' => self::DIGITS_CUSTOM,
|
|
|
|
'algorithm' => self::ALGORITHM_CUSTOM,
|
|
|
|
'period' => null,
|
|
|
|
'counter' => self::COUNTER_CUSTOM,
|
|
|
|
];
|
|
|
|
private const JSON_FRAGMENTS_FOR_DEFAULT_HOTP = [
|
|
|
|
'service' => null,
|
|
|
|
'account' => self::ACCOUNT,
|
|
|
|
'otp_type' => 'hotp',
|
|
|
|
'secret' => self::SECRET,
|
|
|
|
'digits' => self::DIGITS_DEFAULT,
|
|
|
|
'algorithm' => self::ALGORITHM_DEFAULT,
|
|
|
|
'period' => null,
|
|
|
|
'counter' => self::COUNTER_DEFAULT,
|
|
|
|
];
|
|
|
|
private const ARRAY_OF_INVALID_PARAMETERS = [
|
|
|
|
'account' => null,
|
|
|
|
'otp_type' => 'totp',
|
|
|
|
'secret' => self::SECRET,
|
|
|
|
];
|
2022-06-21 17:27:47 +02:00
|
|
|
private const GOOGLE_AUTH_MIGRATION_URI = 'otpauth-migration://offline?data=CiQKCgcNEp61iE2P0RYSB2FjY291bnQaB3NlcnZpY2UgASgBMAIKLAoKBw0SnrWITY/RFhILYWNjb3VudF9iaXMaC3NlcnZpY2VfYmlzIAEoATACEAEYASAA';
|
|
|
|
private const INVALID_GOOGLE_AUTH_MIGRATION_URI = 'otpauthmigration://offline?data=CiQKCgcNEp61iE2P0RYSB2FjY291bnQaB3NlcnZpY2UgASgBMAIKLAoKBw0SnrWITY/RFhILYWNjb3VudF9iaXMaC3NlcnZpY2VfYmlzIAEoATACEAEYASAA';
|
|
|
|
private const GOOGLE_AUTH_MIGRATION_URI_WITH_INVALID_DATA = 'otpauth-migration://offline?data=CiQKCgcNEp61iE2P0RYSB2FjY291bnQaB3NlcnZpY';
|
|
|
|
|
2021-11-14 01:52:46 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setUp(): void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
2021-12-02 13:15:53 +01:00
|
|
|
$this->user = User::factory()->create();
|
|
|
|
$this->group = Group::factory()->create();
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_index_returns_twofaccount_collection()
|
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
TwoFAccount::factory()->count(3)->create();
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-14 01:52:46 +01:00
|
|
|
->json('GET', '/api/v1/twofaccounts')
|
|
|
|
->assertOk()
|
|
|
|
->assertJsonCount(3, $key = null)
|
|
|
|
->assertJsonStructure([
|
2021-11-15 00:21:07 +01:00
|
|
|
'*' => self::VALID_RESOURCE_STRUCTURE_WITHOUT_SECRET
|
|
|
|
]);
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_index_returns_twofaccount_collection_with_secret()
|
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
TwoFAccount::factory()->count(3)->create();
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-14 01:52:46 +01:00
|
|
|
->json('GET', '/api/v1/twofaccounts?withSecret=1')
|
|
|
|
->assertOk()
|
|
|
|
->assertJsonCount(3, $key = null)
|
|
|
|
->assertJsonStructure([
|
2021-11-15 00:21:07 +01:00
|
|
|
'*' => self::VALID_RESOURCE_STRUCTURE_WITH_SECRET
|
|
|
|
]);
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2021-11-15 00:21:07 +01:00
|
|
|
public function test_show_twofaccount_returns_twofaccount_resource_with_secret()
|
2021-11-14 01:52:46 +01:00
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
$twofaccount = TwoFAccount::factory()->create();
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-14 01:52:46 +01:00
|
|
|
->json('GET', '/api/v1/twofaccounts/' . $twofaccount->id)
|
|
|
|
->assertOk()
|
2021-11-15 00:21:07 +01:00
|
|
|
->assertJsonStructure(self::VALID_RESOURCE_STRUCTURE_WITH_SECRET);
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_show_twofaccount_returns_twofaccount_resource_without_secret()
|
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
$twofaccount = TwoFAccount::factory()->create();
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-14 01:52:46 +01:00
|
|
|
->json('GET', '/api/v1/twofaccounts/' . $twofaccount->id . '?withSecret=0')
|
|
|
|
->assertOk()
|
2021-11-15 00:21:07 +01:00
|
|
|
->assertJsonStructure(self::VALID_RESOURCE_STRUCTURE_WITHOUT_SECRET);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2021-11-30 17:39:33 +01:00
|
|
|
// public function test_show_twofaccount_with_indeciphered_data_returns_replaced_data()
|
|
|
|
// {
|
|
|
|
// $dbEncryptionService = resolve('App\Services\DbEncryptionService');
|
|
|
|
// $dbEncryptionService->setTo(true);
|
2021-11-15 00:21:07 +01:00
|
|
|
|
2021-12-02 13:15:53 +01:00
|
|
|
// $twofaccount = TwoFAccount::factory()->create();
|
2021-11-15 00:21:07 +01:00
|
|
|
|
2021-11-30 17:39:33 +01:00
|
|
|
// DB::table('twofaccounts')
|
|
|
|
// ->where('id', $twofaccount->id)
|
|
|
|
// ->update([
|
|
|
|
// 'secret' => '**encrypted**',
|
|
|
|
// 'account' => '**encrypted**',
|
|
|
|
// ]);
|
2021-11-15 00:21:07 +01:00
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
// $response = $this->actingAs($this->user, 'api-guard')
|
2021-11-30 17:39:33 +01:00
|
|
|
// ->json('GET', '/api/v1/twofaccounts/' . $twofaccount->id)
|
|
|
|
// ->assertJsonFragment([
|
|
|
|
// 'secret' => '*indecipherable*',
|
|
|
|
// 'account' => '*indecipherable*',
|
|
|
|
// ]);
|
|
|
|
// }
|
2021-11-14 01:52:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_show_missing_twofaccount_returns_not_found()
|
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-14 01:52:46 +01:00
|
|
|
->json('GET', '/api/v1/twofaccounts/1000')
|
|
|
|
->assertNotFound()
|
|
|
|
->assertJsonStructure([
|
|
|
|
'message'
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider provideDataForTestStoreStructure
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_store_returns_success_with_consistent_resource_structure(array $data)
|
|
|
|
{
|
|
|
|
Storage::put('test.png', 'emptied to prevent missing resource replaced by null by the model getter');
|
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-14 01:52:46 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts', $data)
|
|
|
|
->assertCreated()
|
2021-11-15 00:21:07 +01:00
|
|
|
->assertJsonStructure(self::VALID_RESOURCE_STRUCTURE_WITH_SECRET);
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provide data for TwoFAccount store test
|
|
|
|
*/
|
|
|
|
public function provideDataForTestStoreStructure() : array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
[[
|
|
|
|
'uri' => self::TOTP_FULL_CUSTOM_URI,
|
|
|
|
]],
|
|
|
|
[[
|
|
|
|
'uri' => self::TOTP_SHORT_URI,
|
|
|
|
]],
|
2021-11-15 00:21:07 +01:00
|
|
|
[
|
|
|
|
self::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_TOTP
|
|
|
|
],
|
|
|
|
[
|
|
|
|
self::ARRAY_OF_MINIMUM_VALID_PARAMETERS_FOR_TOTP
|
|
|
|
],
|
2021-11-14 01:52:46 +01:00
|
|
|
[[
|
|
|
|
'uri' => self::HOTP_FULL_CUSTOM_URI,
|
|
|
|
]],
|
|
|
|
[[
|
|
|
|
'uri' => self::HOTP_SHORT_URI,
|
|
|
|
]],
|
2021-11-15 00:21:07 +01:00
|
|
|
[
|
|
|
|
self::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_HOTP
|
|
|
|
],
|
|
|
|
[
|
|
|
|
self::ARRAY_OF_MINIMUM_VALID_PARAMETERS_FOR_HOTP
|
|
|
|
],
|
2021-11-14 01:52:46 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_store_totp_using_fully_custom_uri_returns_consistent_resource()
|
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-14 01:52:46 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts', [
|
2021-11-15 00:21:07 +01:00
|
|
|
'uri' => self::TOTP_FULL_CUSTOM_URI,
|
|
|
|
])
|
|
|
|
->assertJsonFragment(self::JSON_FRAGMENTS_FOR_CUSTOM_TOTP);
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_store_totp_using_short_uri_returns_resource_with_default_otp_parameter()
|
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-14 01:52:46 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts', [
|
2021-11-15 00:21:07 +01:00
|
|
|
'uri' => self::TOTP_SHORT_URI,
|
|
|
|
])
|
|
|
|
->assertJsonFragment(self::JSON_FRAGMENTS_FOR_DEFAULT_TOTP);
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_store_totp_using_fully_custom_parameters_returns_consistent_resource()
|
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts', self::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_TOTP)
|
|
|
|
->assertJsonFragment(self::JSON_FRAGMENTS_FOR_CUSTOM_TOTP);
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_store_totp_using_minimum_parameters_returns_consistent_resource()
|
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts', self::ARRAY_OF_MINIMUM_VALID_PARAMETERS_FOR_TOTP)
|
|
|
|
->assertJsonFragment(self::JSON_FRAGMENTS_FOR_DEFAULT_TOTP);
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_store_hotp_using_fully_custom_uri_returns_consistent_resource()
|
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-14 01:52:46 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts', [
|
2021-11-15 00:21:07 +01:00
|
|
|
'uri' => self::HOTP_FULL_CUSTOM_URI,
|
|
|
|
])
|
|
|
|
->assertJsonFragment(self::JSON_FRAGMENTS_FOR_CUSTOM_HOTP);
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_store_hotp_using_short_uri_returns_resource_with_default_otp_parameter()
|
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-14 01:52:46 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts', [
|
2021-11-15 00:21:07 +01:00
|
|
|
'uri' => self::HOTP_SHORT_URI,
|
|
|
|
])
|
|
|
|
->assertJsonFragment(self::JSON_FRAGMENTS_FOR_DEFAULT_HOTP);
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_store_hotp_using_fully_custom_parameters_returns_consistent_resource()
|
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts', self::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_HOTP)
|
|
|
|
->assertJsonFragment(self::JSON_FRAGMENTS_FOR_CUSTOM_HOTP);
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_store_hotp_using_minimum_parameters_returns_consistent_resource()
|
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts', self::ARRAY_OF_MINIMUM_VALID_PARAMETERS_FOR_HOTP)
|
|
|
|
->assertJsonFragment(self::JSON_FRAGMENTS_FOR_DEFAULT_HOTP);
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_store_with_invalid_uri_returns_validation_error()
|
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-14 01:52:46 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts', [
|
2021-11-15 00:21:07 +01:00
|
|
|
'uri' => self::INVALID_OTPAUTH_URI,
|
|
|
|
])
|
2021-11-14 01:52:46 +01:00
|
|
|
->assertStatus(422);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-11-22 01:09:54 +01:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_store_assigns_created_account_when_default_group_is_a_specific_one()
|
|
|
|
{
|
|
|
|
// Set the default group to a specific one
|
2021-12-01 13:47:20 +01:00
|
|
|
$settingService = resolve('App\Services\SettingService');
|
2021-11-22 01:09:54 +01:00
|
|
|
$settingService->set('defaultGroup', $this->group->id);
|
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-22 01:09:54 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts', [
|
|
|
|
'uri' => self::TOTP_SHORT_URI,
|
|
|
|
])
|
|
|
|
->assertJsonFragment([
|
|
|
|
'group_id' => $this->group->id
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_store_assigns_created_account_when_default_group_is_the_active_one()
|
|
|
|
{
|
2021-12-01 13:47:20 +01:00
|
|
|
$settingService = resolve('App\Services\SettingService');
|
2021-11-22 01:09:54 +01:00
|
|
|
|
|
|
|
// Set the default group to be the active one
|
|
|
|
$settingService->set('defaultGroup', -1);
|
|
|
|
// Set the active group
|
2022-04-01 13:35:59 +02:00
|
|
|
$settingService->set('activeGroup', $this->group->id);
|
2021-11-22 01:09:54 +01:00
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-22 01:09:54 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts', [
|
|
|
|
'uri' => self::TOTP_SHORT_URI,
|
|
|
|
])
|
|
|
|
->assertJsonFragment([
|
2022-04-01 13:35:59 +02:00
|
|
|
'group_id' => $this->group->id
|
2021-11-22 01:09:54 +01:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_store_assigns_created_account_when_default_group_is_no_group()
|
|
|
|
{
|
2021-12-01 13:47:20 +01:00
|
|
|
$settingService = resolve('App\Services\SettingService');
|
2021-11-22 01:09:54 +01:00
|
|
|
|
|
|
|
// Set the default group to No group
|
|
|
|
$settingService->set('defaultGroup', 0);
|
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-22 01:09:54 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts', [
|
|
|
|
'uri' => self::TOTP_SHORT_URI,
|
|
|
|
])
|
|
|
|
->assertJsonFragment([
|
|
|
|
'group_id' => null
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_store_assigns_created_account_when_default_group_does_not_exist()
|
|
|
|
{
|
2021-12-01 13:47:20 +01:00
|
|
|
$settingService = resolve('App\Services\SettingService');
|
2021-11-22 01:09:54 +01:00
|
|
|
|
|
|
|
// Set the default group to a non-existing one
|
|
|
|
$settingService->set('defaultGroup', 1000);
|
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-22 01:09:54 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts', [
|
|
|
|
'uri' => self::TOTP_SHORT_URI,
|
|
|
|
])
|
|
|
|
->assertJsonFragment([
|
|
|
|
'group_id' => null
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-11-14 01:52:46 +01:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_update_totp_returns_success_with_updated_resource()
|
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
$twofaccount = TwoFAccount::factory()->create();
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('PUT', '/api/v1/twofaccounts/' . $twofaccount->id, self::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_TOTP)
|
2021-11-14 01:52:46 +01:00
|
|
|
->assertOk()
|
2021-11-15 00:21:07 +01:00
|
|
|
->assertJsonFragment(self::JSON_FRAGMENTS_FOR_CUSTOM_TOTP);
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_update_hotp_returns_success_with_updated_resource()
|
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
$twofaccount = TwoFAccount::factory()->create();
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('PUT', '/api/v1/twofaccounts/' . $twofaccount->id, self::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_HOTP)
|
2021-11-14 01:52:46 +01:00
|
|
|
->assertOk()
|
2021-11-15 00:21:07 +01:00
|
|
|
->assertJsonFragment(self::JSON_FRAGMENTS_FOR_CUSTOM_HOTP);
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_update_missing_twofaccount_returns_not_found()
|
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('PUT', '/api/v1/twofaccounts/1000', self::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_TOTP)
|
2021-11-14 01:52:46 +01:00
|
|
|
->assertNotFound();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_update_twofaccount_with_invalid_data_returns_validation_error()
|
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
$twofaccount = TwoFAccount::factory()->create();
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('PUT', '/api/v1/twofaccounts/' . $twofaccount->id, self::ARRAY_OF_INVALID_PARAMETERS)
|
2021-11-14 01:52:46 +01:00
|
|
|
->assertStatus(422);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-06-21 17:27:47 +02:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_import_valid_gauth_data_returns_success_with_consistent_resources()
|
|
|
|
{
|
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
|
|
|
->json('POST', '/api/v1/twofaccounts/import', [
|
|
|
|
'uri' => self::GOOGLE_AUTH_MIGRATION_URI,
|
|
|
|
])
|
|
|
|
->assertOk()
|
|
|
|
->assertJsonCount(2, $key = null)
|
|
|
|
->assertJsonFragment([
|
|
|
|
'id' => 0,
|
|
|
|
'service' => self::SERVICE,
|
|
|
|
'account' => self::ACCOUNT,
|
|
|
|
'otp_type' => 'totp',
|
|
|
|
'secret' => self::SECRET,
|
|
|
|
'digits' => self::DIGITS_DEFAULT,
|
|
|
|
'algorithm' => self::ALGORITHM_DEFAULT,
|
|
|
|
'period' => self::PERIOD_DEFAULT,
|
|
|
|
'counter' => null
|
|
|
|
])
|
|
|
|
->assertJsonFragment([
|
|
|
|
'id' => 0,
|
|
|
|
'service' => self::SERVICE . '_bis',
|
|
|
|
'account' => self::ACCOUNT . '_bis',
|
|
|
|
'otp_type' => 'totp',
|
|
|
|
'secret' => self::SECRET,
|
|
|
|
'digits' => self::DIGITS_DEFAULT,
|
|
|
|
'algorithm' => self::ALGORITHM_DEFAULT,
|
|
|
|
'period' => self::PERIOD_DEFAULT,
|
|
|
|
'counter' => null
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_import_with_invalid_uri_returns_validation_error()
|
|
|
|
{
|
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
|
|
|
->json('POST', '/api/v1/twofaccounts', [
|
|
|
|
'uri' => self::INVALID_GOOGLE_AUTH_MIGRATION_URI,
|
|
|
|
])
|
|
|
|
->assertStatus(422);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_import_gauth_data_with_duplicates_returns_negative_ids()
|
|
|
|
{
|
|
|
|
$twofaccount = TwoFAccount::factory()->create([
|
|
|
|
'otp_type' => 'totp',
|
|
|
|
'account' => self::ACCOUNT,
|
|
|
|
'service' => self::SERVICE,
|
|
|
|
'secret' => self::SECRET,
|
|
|
|
'algorithm' => self::ALGORITHM_DEFAULT,
|
|
|
|
'digits' => self::DIGITS_DEFAULT,
|
|
|
|
'period' => self::PERIOD_DEFAULT,
|
|
|
|
'legacy_uri' => self::TOTP_SHORT_URI,
|
|
|
|
'icon' => '',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
|
|
|
->json('POST', '/api/v1/twofaccounts/import', [
|
|
|
|
'uri' => self::GOOGLE_AUTH_MIGRATION_URI,
|
|
|
|
])
|
|
|
|
->assertOk()
|
|
|
|
->assertJsonFragment([
|
|
|
|
'id' => -1,
|
|
|
|
'service' => self::SERVICE,
|
|
|
|
'account' => self::ACCOUNT,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_import_invalid_gauth_data_returns_bad_request()
|
|
|
|
{
|
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
|
|
|
->json('POST', '/api/v1/twofaccounts/import', [
|
|
|
|
'uri' => self::GOOGLE_AUTH_MIGRATION_URI_WITH_INVALID_DATA,
|
|
|
|
])
|
|
|
|
->assertStatus(400)
|
|
|
|
->assertJsonStructure([
|
|
|
|
'message'
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-11-15 00:21:07 +01:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_reorder_returns_success()
|
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
TwoFAccount::factory()->count(3)->create();
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts/reorder', [
|
|
|
|
'orderedIds' => [3,2,1]])
|
|
|
|
->assertStatus(200)
|
|
|
|
->assertJsonStructure([
|
|
|
|
'message'
|
|
|
|
]);
|
|
|
|
}
|
2021-11-14 01:52:46 +01:00
|
|
|
|
|
|
|
|
2021-11-15 00:21:07 +01:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_reorder_with_invalid_data_returns_validation_error()
|
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
TwoFAccount::factory()->count(3)->create();
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts/reorder', [
|
|
|
|
'orderedIds' => '3,2,1'])
|
|
|
|
->assertStatus(422);
|
|
|
|
}
|
2021-11-14 01:52:46 +01:00
|
|
|
|
|
|
|
|
2021-11-15 00:21:07 +01:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_preview_returns_success_with_resource()
|
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts/preview', [
|
|
|
|
'uri' => self::TOTP_FULL_CUSTOM_URI,
|
|
|
|
])
|
|
|
|
->assertOk()
|
|
|
|
->assertJsonFragment(self::JSON_FRAGMENTS_FOR_CUSTOM_TOTP);
|
|
|
|
}
|
2021-11-14 01:52:46 +01:00
|
|
|
|
|
|
|
|
2021-11-15 00:21:07 +01:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_preview_with_invalid_data_returns_validation_error()
|
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts/preview', [
|
|
|
|
'uri' => self::INVALID_OTPAUTH_URI,
|
|
|
|
])
|
|
|
|
->assertStatus(422);
|
|
|
|
}
|
2021-11-14 01:52:46 +01:00
|
|
|
|
|
|
|
|
2021-11-15 00:21:07 +01:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_preview_with_unreachable_image_returns_success()
|
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts/preview', [
|
|
|
|
'uri' => self::TOTP_URI_WITH_UNREACHABLE_IMAGE,
|
|
|
|
])
|
|
|
|
->assertOk()
|
|
|
|
->assertJsonFragment([
|
|
|
|
'icon' => null
|
|
|
|
]);
|
|
|
|
}
|
2021-11-14 01:52:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2021-11-15 00:21:07 +01:00
|
|
|
public function test_get_otp_using_totp_twofaccount_id_returns_consistent_resource()
|
2021-11-14 01:52:46 +01:00
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
$twofaccount = TwoFAccount::factory()->create([
|
2021-11-15 00:21:07 +01:00
|
|
|
'otp_type' => 'totp',
|
|
|
|
'account' => self::ACCOUNT,
|
|
|
|
'service' => self::SERVICE,
|
|
|
|
'secret' => self::SECRET,
|
|
|
|
'algorithm' => self::ALGORITHM_DEFAULT,
|
|
|
|
'digits' => self::DIGITS_DEFAULT,
|
|
|
|
'period' => self::PERIOD_DEFAULT,
|
|
|
|
'legacy_uri' => self::TOTP_SHORT_URI,
|
|
|
|
'icon' => '',
|
2021-11-14 01:52:46 +01:00
|
|
|
]);
|
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('GET', '/api/v1/twofaccounts/' . $twofaccount->id . '/otp')
|
|
|
|
->assertOk()
|
|
|
|
->assertJsonStructure(self::VALID_OTP_RESOURCE_STRUCTURE_FOR_TOTP)
|
|
|
|
->assertJsonFragment([
|
|
|
|
'otp_type' => 'totp',
|
|
|
|
'period' => self::PERIOD_DEFAULT,
|
|
|
|
]);
|
|
|
|
}
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2021-11-15 00:21:07 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_get_otp_by_posting_totp_uri_returns_consistent_resource()
|
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts/otp', [
|
|
|
|
'uri' => self::TOTP_FULL_CUSTOM_URI,
|
2021-11-14 01:52:46 +01:00
|
|
|
])
|
2021-11-15 00:21:07 +01:00
|
|
|
->assertOk()
|
|
|
|
->assertJsonStructure(self::VALID_OTP_RESOURCE_STRUCTURE_FOR_TOTP)
|
|
|
|
->assertJsonFragment([
|
|
|
|
'otp_type' => 'totp',
|
|
|
|
'period' => self::PERIOD_CUSTOM,
|
2021-11-14 01:52:46 +01:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2021-11-15 00:21:07 +01:00
|
|
|
public function test_get_otp_by_posting_totp_parameters_returns_consistent_resource()
|
2021-11-14 01:52:46 +01:00
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts/otp', self::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_TOTP)
|
|
|
|
->assertOk()
|
|
|
|
->assertJsonStructure(self::VALID_OTP_RESOURCE_STRUCTURE_FOR_TOTP)
|
2021-11-14 01:52:46 +01:00
|
|
|
->assertJsonFragment([
|
2021-11-15 00:21:07 +01:00
|
|
|
'otp_type' => 'totp',
|
|
|
|
'period' => self::PERIOD_CUSTOM,
|
2021-11-14 01:52:46 +01:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2021-11-15 00:21:07 +01:00
|
|
|
public function test_get_otp_using_hotp_twofaccount_id_returns_consistent_resource()
|
2021-11-14 01:52:46 +01:00
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
$twofaccount = TwoFAccount::factory()->create([
|
2021-11-15 00:21:07 +01:00
|
|
|
'otp_type' => 'hotp',
|
|
|
|
'account' => self::ACCOUNT,
|
|
|
|
'service' => self::SERVICE,
|
|
|
|
'secret' => self::SECRET,
|
|
|
|
'algorithm' => self::ALGORITHM_DEFAULT,
|
|
|
|
'digits' => self::DIGITS_DEFAULT,
|
|
|
|
'period' => null,
|
|
|
|
'legacy_uri' => self::HOTP_SHORT_URI,
|
|
|
|
'icon' => '',
|
|
|
|
]);
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('GET', '/api/v1/twofaccounts/' . $twofaccount->id . '/otp')
|
|
|
|
->assertOk()
|
|
|
|
->assertJsonStructure(self::VALID_OTP_RESOURCE_STRUCTURE_FOR_HOTP)
|
|
|
|
->assertJsonFragment([
|
|
|
|
'otp_type' => 'hotp',
|
|
|
|
'counter' => self::COUNTER_DEFAULT + 1,
|
2021-11-14 01:52:46 +01:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2021-11-15 00:21:07 +01:00
|
|
|
public function test_get_otp_by_posting_hotp_uri_returns_consistent_resource()
|
2021-11-14 01:52:46 +01:00
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts/otp', [
|
|
|
|
'uri' => self::HOTP_FULL_CUSTOM_URI,
|
|
|
|
])
|
|
|
|
->assertOk()
|
|
|
|
->assertJsonStructure(self::VALID_OTP_RESOURCE_STRUCTURE_FOR_HOTP)
|
|
|
|
->assertJsonFragment([
|
|
|
|
'otp_type' => 'hotp',
|
|
|
|
'counter' => self::COUNTER_CUSTOM + 1,
|
2021-11-14 01:52:46 +01:00
|
|
|
]);
|
2021-11-15 00:21:07 +01:00
|
|
|
}
|
|
|
|
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2021-11-15 00:21:07 +01:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_get_otp_by_posting_hotp_parameters_returns_consistent_resource()
|
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts/otp', self::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_HOTP)
|
|
|
|
->assertOk()
|
|
|
|
->assertJsonStructure(self::VALID_OTP_RESOURCE_STRUCTURE_FOR_HOTP)
|
2021-11-14 01:52:46 +01:00
|
|
|
->assertJsonFragment([
|
2021-11-15 00:21:07 +01:00
|
|
|
'otp_type' => 'hotp',
|
|
|
|
'counter' => self::COUNTER_CUSTOM + 1,
|
2021-11-14 01:52:46 +01:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2021-11-15 00:21:07 +01:00
|
|
|
public function test_get_otp_by_posting_multiple_inputs_returns_bad_request()
|
2021-11-14 01:52:46 +01:00
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts/otp', [
|
|
|
|
'uri' => self::HOTP_FULL_CUSTOM_URI,
|
|
|
|
'key' => 'value',
|
|
|
|
])
|
|
|
|
->assertStatus(400)
|
2021-11-14 01:52:46 +01:00
|
|
|
->assertJsonStructure([
|
2021-11-15 00:21:07 +01:00
|
|
|
'message',
|
|
|
|
'reason',
|
2021-11-14 01:52:46 +01:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2021-11-15 00:21:07 +01:00
|
|
|
public function test_get_otp_using_indecipherable_twofaccount_id_returns_bad_request()
|
2021-11-14 01:52:46 +01:00
|
|
|
{
|
2021-12-01 13:47:20 +01:00
|
|
|
$settingService = resolve('App\Services\SettingService');
|
2021-11-30 17:39:33 +01:00
|
|
|
$settingService->set('useEncryption', true);
|
2021-11-15 00:21:07 +01:00
|
|
|
|
2021-12-02 13:15:53 +01:00
|
|
|
$twofaccount = TwoFAccount::factory()->create();
|
2021-11-15 00:21:07 +01:00
|
|
|
|
|
|
|
DB::table('twofaccounts')
|
|
|
|
->where('id', $twofaccount->id)
|
|
|
|
->update([
|
|
|
|
'secret' => '**encrypted**',
|
|
|
|
]);
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('GET', '/api/v1/twofaccounts/' . $twofaccount->id . '/otp')
|
|
|
|
->assertStatus(400)
|
2021-11-14 01:52:46 +01:00
|
|
|
->assertJsonStructure([
|
2021-11-15 00:21:07 +01:00
|
|
|
'message',
|
2021-11-14 01:52:46 +01:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2021-11-15 00:21:07 +01:00
|
|
|
public function test_get_otp_using_missing_twofaccount_id_returns_not_found()
|
2021-11-14 01:52:46 +01:00
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('GET', '/api/v1/twofaccounts/1000/otp')
|
|
|
|
->assertNotFound();
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2021-11-15 00:21:07 +01:00
|
|
|
public function test_get_otp_by_posting_invalid_uri_returns_validation_error()
|
2021-11-14 01:52:46 +01:00
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts/otp', [
|
|
|
|
'uri' => self::INVALID_OTPAUTH_URI,
|
|
|
|
])
|
|
|
|
->assertStatus(422);
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2021-11-15 00:21:07 +01:00
|
|
|
public function test_get_otp_by_posting_invalid_parameters_returns_validation_error()
|
2021-11-14 01:52:46 +01:00
|
|
|
{
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('POST', '/api/v1/twofaccounts/otp', self::ARRAY_OF_INVALID_PARAMETERS)
|
|
|
|
->assertStatus(422);
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2021-11-15 00:21:07 +01:00
|
|
|
public function test_count_returns_right_number_of_twofaccount()
|
2021-11-14 01:52:46 +01:00
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
TwoFAccount::factory()->count(3)->create();
|
2021-11-15 00:21:07 +01:00
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('GET', '/api/v1/twofaccounts/count')
|
|
|
|
->assertStatus(200)
|
|
|
|
->assertExactJson([
|
|
|
|
'count' => 3
|
2021-11-14 01:52:46 +01:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2021-11-15 00:21:07 +01:00
|
|
|
public function test_withdraw_returns_success()
|
2021-11-14 01:52:46 +01:00
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
TwoFAccount::factory()->count(3)->create();
|
2021-11-15 00:21:07 +01:00
|
|
|
$ids = DB::table('twofaccounts')->pluck('id')->implode(',');
|
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('PATCH', '/api/v1/twofaccounts/withdraw?ids=1,2,3' . $ids)
|
|
|
|
->assertOk()
|
2021-11-14 01:52:46 +01:00
|
|
|
->assertJsonStructure([
|
2021-11-15 00:21:07 +01:00
|
|
|
'message',
|
2021-11-14 01:52:46 +01:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2021-11-15 00:21:07 +01:00
|
|
|
public function test_withdraw_too_many_ids_returns_bad_request()
|
2021-11-14 01:52:46 +01:00
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
TwoFAccount::factory()->count(102)->create();
|
2021-11-15 00:21:07 +01:00
|
|
|
$ids = DB::table('twofaccounts')->pluck('id')->implode(',');
|
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('PATCH', '/api/v1/twofaccounts/withdraw?ids=' . $ids)
|
|
|
|
->assertStatus(400)
|
2021-11-14 01:52:46 +01:00
|
|
|
->assertJsonStructure([
|
2021-11-15 00:21:07 +01:00
|
|
|
'message',
|
|
|
|
'reason',
|
2021-11-14 01:52:46 +01:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2021-11-15 00:21:07 +01:00
|
|
|
public function test_destroy_twofaccount_returns_success()
|
2021-11-14 01:52:46 +01:00
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
$twofaccount = TwoFAccount::factory()->create();
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('DELETE', '/api/v1/twofaccounts/' . $twofaccount->id)
|
|
|
|
->assertNoContent();
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2021-11-15 00:21:07 +01:00
|
|
|
public function test_destroy_missing_twofaccount_returns_not_found()
|
2021-11-14 01:52:46 +01:00
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
$twofaccount = TwoFAccount::factory()->create();
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('DELETE', '/api/v1/twofaccounts/1000')
|
|
|
|
->assertNotFound();
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2021-11-15 00:21:07 +01:00
|
|
|
public function test_batch_destroy_twofaccount_returns_success()
|
2021-11-14 01:52:46 +01:00
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
TwoFAccount::factory()->count(3)->create();
|
2021-11-15 00:21:07 +01:00
|
|
|
$ids = DB::table('twofaccounts')->pluck('id')->implode(',');
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('DELETE', '/api/v1/twofaccounts?ids=' . $ids)
|
|
|
|
->assertNoContent();
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2021-11-15 00:21:07 +01:00
|
|
|
public function test_batch_destroy_too_many_twofaccounts_returns_bad_request()
|
2021-11-14 01:52:46 +01:00
|
|
|
{
|
2021-12-02 13:15:53 +01:00
|
|
|
TwoFAccount::factory()->count(102)->create();
|
2021-11-15 00:21:07 +01:00
|
|
|
$ids = DB::table('twofaccounts')->pluck('id')->implode(',');
|
2021-11-14 01:52:46 +01:00
|
|
|
|
2022-03-31 08:38:35 +02:00
|
|
|
$response = $this->actingAs($this->user, 'api-guard')
|
2021-11-15 00:21:07 +01:00
|
|
|
->json('DELETE', '/api/v1/twofaccounts?ids=' . $ids)
|
|
|
|
->assertStatus(400)
|
|
|
|
->assertJsonStructure([
|
|
|
|
'message',
|
|
|
|
'reason',
|
|
|
|
]);
|
2021-11-14 01:52:46 +01:00
|
|
|
}
|
|
|
|
|
2021-11-15 00:21:07 +01:00
|
|
|
}
|