1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081 |
- <?php
- namespace Tests\Api\v1\Controllers;
- use App\Facades\Settings;
- use App\Models\Group;
- use App\Models\TwoFAccount;
- use App\Models\User;
- use Illuminate\Support\Facades\DB;
- use Illuminate\Support\Facades\Storage;
- use Tests\Classes\LocalFile;
- use Tests\Data\OtpTestData;
- use Tests\FeatureTestCase;
- use Tests\Data\MigrationTestData;
- /**
- * @covers \App\Api\v1\Controllers\TwoFAccountController
- * @covers \App\Api\v1\Resources\TwoFAccountReadResource
- * @covers \App\Api\v1\Resources\TwoFAccountStoreResource
- * @covers \App\Providers\MigrationServiceProvider
- * @covers \App\Providers\TwoFAuthServiceProvider
- */
- class TwoFAccountControllerTest extends FeatureTestCase
- {
- /**
- * @var \App\Models\User
- */
- protected $user;
- /**
- * @var \App\Models\Group
- */
- protected $group;
- 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 JSON_FRAGMENTS_FOR_CUSTOM_TOTP = [
- 'service' => OtpTestData::SERVICE,
- 'account' => OtpTestData::ACCOUNT,
- 'otp_type' => 'totp',
- 'secret' => OtpTestData::SECRET,
- 'digits' => OtpTestData::DIGITS_CUSTOM,
- 'algorithm' => OtpTestData::ALGORITHM_CUSTOM,
- 'period' => OtpTestData::PERIOD_CUSTOM,
- 'counter' => null,
- ];
- private const JSON_FRAGMENTS_FOR_DEFAULT_TOTP = [
- 'service' => null,
- 'account' => OtpTestData::ACCOUNT,
- 'otp_type' => 'totp',
- 'secret' => OtpTestData::SECRET,
- 'digits' => OtpTestData::DIGITS_DEFAULT,
- 'algorithm' => OtpTestData::ALGORITHM_DEFAULT,
- 'period' => OtpTestData::PERIOD_DEFAULT,
- 'counter' => null,
- ];
- private const JSON_FRAGMENTS_FOR_CUSTOM_HOTP = [
- 'service' => OtpTestData::SERVICE,
- 'account' => OtpTestData::ACCOUNT,
- 'otp_type' => 'hotp',
- 'secret' => OtpTestData::SECRET,
- 'digits' => OtpTestData::DIGITS_CUSTOM,
- 'algorithm' => OtpTestData::ALGORITHM_CUSTOM,
- 'period' => null,
- 'counter' => OtpTestData::COUNTER_CUSTOM,
- ];
- private const JSON_FRAGMENTS_FOR_DEFAULT_HOTP = [
- 'service' => null,
- 'account' => OtpTestData::ACCOUNT,
- 'otp_type' => 'hotp',
- 'secret' => OtpTestData::SECRET,
- 'digits' => OtpTestData::DIGITS_DEFAULT,
- 'algorithm' => OtpTestData::ALGORITHM_DEFAULT,
- 'period' => null,
- 'counter' => OtpTestData::COUNTER_DEFAULT,
- ];
- private const ARRAY_OF_INVALID_PARAMETERS = [
- 'account' => null,
- 'otp_type' => 'totp',
- 'secret' => OtpTestData::SECRET,
- ];
- /**
- * @test
- */
- public function setUp(): void
- {
- parent::setUp();
- $this->user = User::factory()->create();
- $this->group = Group::factory()->create();
- }
- /**
- * @test
- *
- * @dataProvider indexUrlParameterProvider
- */
- public function test_index_returns_twofaccount_collection($urlParameter, $expected)
- {
- TwoFAccount::factory()->count(3)->create();
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('GET', '/api/v1/twofaccounts' . $urlParameter)
- ->assertOk()
- ->assertJsonCount(3, $key = null)
- ->assertJsonStructure([
- '*' => $expected,
- ]);
- }
- /**
- * Provide data for index tests
- */
- public function indexUrlParameterProvider()
- {
- return [
- 'VALID_RESOURCE_STRUCTURE_WITHOUT_SECRET' => [
- '',
- self::VALID_RESOURCE_STRUCTURE_WITHOUT_SECRET,
- ],
- 'VALID_RESOURCE_STRUCTURE_WITH_SECRET' => [
- '?withSecret=1',
- self::VALID_RESOURCE_STRUCTURE_WITH_SECRET,
- ],
- ];
- }
- /**
- * @test
- */
- public function test_show_twofaccount_returns_twofaccount_resource_with_secret()
- {
- $twofaccount = TwoFAccount::factory()->create();
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('GET', '/api/v1/twofaccounts/' . $twofaccount->id)
- ->assertOk()
- ->assertJsonStructure(self::VALID_RESOURCE_STRUCTURE_WITH_SECRET);
- }
- /**
- * @test
- */
- public function test_show_twofaccount_returns_twofaccount_resource_without_secret()
- {
- $twofaccount = TwoFAccount::factory()->create();
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('GET', '/api/v1/twofaccounts/' . $twofaccount->id . '?withSecret=0')
- ->assertOk()
- ->assertJsonStructure(self::VALID_RESOURCE_STRUCTURE_WITHOUT_SECRET);
- }
- /**
- * @test
- */
- // public function test_show_twofaccount_with_indeciphered_data_returns_replaced_data()
- // {
- // $dbEncryptionService = resolve('App\Services\DbEncryptionService');
- // $dbEncryptionService->setTo(true);
- // $twofaccount = TwoFAccount::factory()->create();
- // DB::table('twofaccounts')
- // ->where('id', $twofaccount->id)
- // ->update([
- // 'secret' => '**encrypted**',
- // 'account' => '**encrypted**',
- // ]);
- // $response = $this->actingAs($this->user, 'api-guard')
- // ->json('GET', '/api/v1/twofaccounts/' . $twofaccount->id)
- // ->assertJsonFragment([
- // 'secret' => '*indecipherable*',
- // 'account' => '*indecipherable*',
- // ]);
- // }
- /**
- * @test
- */
- public function test_show_missing_twofaccount_returns_not_found()
- {
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('GET', '/api/v1/twofaccounts/1000')
- ->assertNotFound()
- ->assertJsonStructure([
- 'message',
- ]);
- }
- /**
- * @dataProvider accountCreationProvider
- * @test
- */
- public function test_store_without_encryption_returns_success_with_consistent_resource_structure($payload, $expected)
- {
- Settings::set('useEncryption', false);
- Storage::put('test.png', 'emptied to prevent missing resource replaced by null by the model getter');
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts', $payload)
- ->assertCreated()
- ->assertJsonStructure(self::VALID_RESOURCE_STRUCTURE_WITH_SECRET)
- ->assertJsonFragment($expected);
- }
- /**
- * @dataProvider accountCreationProvider
- * @test
- */
- public function test_store_with_encryption_returns_success_with_consistent_resource_structure($payload, $expected)
- {
- Settings::set('useEncryption', true);
- Storage::put('test.png', 'emptied to prevent missing resource replaced by null by the model getter');
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts', $payload)
- ->assertCreated()
- ->assertJsonStructure(self::VALID_RESOURCE_STRUCTURE_WITH_SECRET)
- ->assertJsonFragment($expected);
- }
- /**
- * Provide data for TwoFAccount store tests
- */
- public function accountCreationProvider()
- {
- return [
- 'TOTP_FULL_CUSTOM_URI' => [
- [
- 'uri' => OtpTestData::TOTP_FULL_CUSTOM_URI,
- ],
- self::JSON_FRAGMENTS_FOR_CUSTOM_TOTP,
- ],
- 'TOTP_SHORT_URI' => [
- [
- 'uri' => OtpTestData::TOTP_SHORT_URI,
- ],
- self::JSON_FRAGMENTS_FOR_DEFAULT_TOTP,
- ],
- 'ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_TOTP' => [
- OtpTestData::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_TOTP,
- self::JSON_FRAGMENTS_FOR_CUSTOM_TOTP,
- ],
- 'ARRAY_OF_MINIMUM_VALID_PARAMETERS_FOR_TOTP' => [
- OtpTestData::ARRAY_OF_MINIMUM_VALID_PARAMETERS_FOR_TOTP,
- self::JSON_FRAGMENTS_FOR_DEFAULT_TOTP,
- ],
- 'HOTP_FULL_CUSTOM_URI' => [
- [
- 'uri' => OtpTestData::HOTP_FULL_CUSTOM_URI,
- ],
- self::JSON_FRAGMENTS_FOR_CUSTOM_HOTP,
- ],
- 'HOTP_SHORT_URI' => [
- [
- 'uri' => OtpTestData::HOTP_SHORT_URI,
- ],
- self::JSON_FRAGMENTS_FOR_DEFAULT_HOTP,
- ],
- 'ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_HOTP' => [
- OtpTestData::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_HOTP,
- self::JSON_FRAGMENTS_FOR_CUSTOM_HOTP,
- ],
- 'ARRAY_OF_MINIMUM_VALID_PARAMETERS_FOR_HOTP' => [
- OtpTestData::ARRAY_OF_MINIMUM_VALID_PARAMETERS_FOR_HOTP,
- self::JSON_FRAGMENTS_FOR_DEFAULT_HOTP,
- ],
- ];
- }
- /**
- * @test
- */
- public function test_store_with_invalid_uri_returns_validation_error()
- {
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts', [
- 'uri' => OtpTestData::INVALID_OTPAUTH_URI,
- ])
- ->assertStatus(422);
- }
- /**
- * @test
- */
- public function test_store_assigns_created_account_when_default_group_is_a_specific_one()
- {
- // Set the default group to a specific one
- Settings::set('defaultGroup', $this->group->id);
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts', [
- 'uri' => OtpTestData::TOTP_SHORT_URI,
- ])
- ->assertJsonFragment([
- 'group_id' => $this->group->id,
- ]);
- }
- /**
- * @test
- */
- public function test_store_assigns_created_account_when_default_group_is_the_active_one()
- {
- // Set the default group to be the active one
- Settings::set('defaultGroup', -1);
- // Set the active group
- Settings::set('activeGroup', $this->group->id);
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts', [
- 'uri' => OtpTestData::TOTP_SHORT_URI,
- ])
- ->assertJsonFragment([
- 'group_id' => $this->group->id,
- ]);
- }
- /**
- * @test
- */
- public function test_store_assigns_created_account_when_default_group_is_no_group()
- {
- // Set the default group to No group
- Settings::set('defaultGroup', 0);
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts', [
- 'uri' => OtpTestData::TOTP_SHORT_URI,
- ])
- ->assertJsonFragment([
- 'group_id' => null,
- ]);
- }
- /**
- * @test
- */
- public function test_store_assigns_created_account_when_default_group_does_not_exist()
- {
- // Set the default group to a non-existing one
- Settings::set('defaultGroup', 1000);
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts', [
- 'uri' => OtpTestData::TOTP_SHORT_URI,
- ])
- ->assertJsonFragment([
- 'group_id' => null,
- ]);
- }
- /**
- * @test
- */
- public function test_update_totp_returns_success_with_updated_resource()
- {
- $twofaccount = TwoFAccount::factory()->create();
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('PUT', '/api/v1/twofaccounts/' . $twofaccount->id, OtpTestData::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_TOTP)
- ->assertOk()
- ->assertJsonFragment(self::JSON_FRAGMENTS_FOR_CUSTOM_TOTP);
- }
- /**
- * @test
- */
- public function test_update_hotp_returns_success_with_updated_resource()
- {
- $twofaccount = TwoFAccount::factory()->create();
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('PUT', '/api/v1/twofaccounts/' . $twofaccount->id, OtpTestData::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_HOTP)
- ->assertOk()
- ->assertJsonFragment(self::JSON_FRAGMENTS_FOR_CUSTOM_HOTP);
- }
- /**
- * @test
- */
- public function test_update_missing_twofaccount_returns_not_found()
- {
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('PUT', '/api/v1/twofaccounts/1000', OtpTestData::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_TOTP)
- ->assertNotFound();
- }
- /**
- * @test
- */
- public function test_update_twofaccount_with_invalid_data_returns_validation_error()
- {
- $twofaccount = TwoFAccount::factory()->create();
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('PUT', '/api/v1/twofaccounts/' . $twofaccount->id, self::ARRAY_OF_INVALID_PARAMETERS)
- ->assertStatus(422);
- }
- /**
- * @test
- */
- public function test_import_valid_gauth_payload_returns_success_with_consistent_resources()
- {
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/migration', [
- 'payload' => MigrationTestData::GOOGLE_AUTH_MIGRATION_URI,
- 'withSecret' => 1,
- ])
- ->assertOk()
- ->assertJsonCount(2, $key = null)
- ->assertJsonFragment([
- 'id' => 0,
- 'service' => OtpTestData::SERVICE,
- 'account' => OtpTestData::ACCOUNT,
- 'otp_type' => 'totp',
- 'secret' => OtpTestData::SECRET,
- 'digits' => OtpTestData::DIGITS_DEFAULT,
- 'algorithm' => OtpTestData::ALGORITHM_DEFAULT,
- 'period' => OtpTestData::PERIOD_DEFAULT,
- 'counter' => null,
- ])
- ->assertJsonFragment([
- 'id' => 0,
- 'service' => OtpTestData::SERVICE . '_bis',
- 'account' => OtpTestData::ACCOUNT . '_bis',
- 'otp_type' => 'totp',
- 'secret' => OtpTestData::SECRET,
- 'digits' => OtpTestData::DIGITS_DEFAULT,
- 'algorithm' => OtpTestData::ALGORITHM_DEFAULT,
- 'period' => OtpTestData::PERIOD_DEFAULT,
- 'counter' => null,
- ]);
- }
- /**
- * @test
- */
- public function test_import_with_invalid_gauth_payload_returns_validation_error()
- {
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/migration', [
- 'uri' => MigrationTestData::INVALID_GOOGLE_AUTH_MIGRATION_URI,
- ])
- ->assertStatus(422);
- }
- /**
- * @test
- */
- public function test_import_gauth_payload_with_duplicates_returns_negative_ids()
- {
- $twofaccount = TwoFAccount::factory()->create([
- 'otp_type' => 'totp',
- 'account' => OtpTestData::ACCOUNT,
- 'service' => OtpTestData::SERVICE,
- 'secret' => OtpTestData::SECRET,
- 'algorithm' => OtpTestData::ALGORITHM_DEFAULT,
- 'digits' => OtpTestData::DIGITS_DEFAULT,
- 'period' => OtpTestData::PERIOD_DEFAULT,
- 'legacy_uri' => OtpTestData::TOTP_SHORT_URI,
- 'icon' => '',
- ]);
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/migration', [
- 'payload' => MigrationTestData::GOOGLE_AUTH_MIGRATION_URI,
- ])
- ->assertOk()
- ->assertJsonFragment([
- 'id' => -1,
- 'service' => OtpTestData::SERVICE,
- 'account' => OtpTestData::ACCOUNT,
- ]);
- }
- /**
- * @test
- */
- public function test_import_invalid_gauth_payload_returns_bad_request()
- {
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/migration', [
- 'payload' => MigrationTestData::GOOGLE_AUTH_MIGRATION_URI_WITH_INVALID_DATA,
- ])
- ->assertStatus(400)
- ->assertJsonStructure([
- 'message',
- ]);
- }
- /**
- * @test
- */
- public function test_import_valid_aegis_json_file_returns_success()
- {
- $file = LocalFile::fake()->validAegisJsonFile();
- $response = $this->withHeaders(['Content-Type' => 'multipart/form-data'])
- ->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/migration', [
- 'file' => $file,
- 'withSecret' => 1,
- ])
- ->assertOk()
- ->assertJsonCount(3, $key = null)
- ->assertJsonFragment([
- 'id' => 0,
- 'service' => OtpTestData::SERVICE,
- 'account' => OtpTestData::ACCOUNT,
- 'otp_type' => 'totp',
- 'secret' => OtpTestData::SECRET,
- 'digits' => OtpTestData::DIGITS_CUSTOM,
- 'algorithm' => OtpTestData::ALGORITHM_CUSTOM,
- 'period' => OtpTestData::PERIOD_CUSTOM,
- 'counter' => null,
- ])
- ->assertJsonFragment([
- 'id' => 0,
- 'service' => OtpTestData::SERVICE,
- 'account' => OtpTestData::ACCOUNT,
- 'otp_type' => 'hotp',
- 'secret' => OtpTestData::SECRET,
- 'digits' => OtpTestData::DIGITS_CUSTOM,
- 'algorithm' => OtpTestData::ALGORITHM_CUSTOM,
- 'period' => null,
- 'counter' => OtpTestData::COUNTER_CUSTOM,
- ])
- ->assertJsonFragment([
- 'id' => 0,
- 'service' => OtpTestData::STEAM,
- 'account' => OtpTestData::ACCOUNT,
- 'otp_type' => 'steamtotp',
- 'secret' => OtpTestData::STEAM_SECRET,
- 'digits' => OtpTestData::DIGITS_STEAM,
- 'algorithm' => OtpTestData::ALGORITHM_DEFAULT,
- 'period' => OtpTestData::PERIOD_DEFAULT,
- 'counter' => null,
- ]);
- }
- /**
- * @test
- *
- * @dataProvider invalidAegisJsonFileProvider
- */
- public function test_import_invalid_aegis_json_file_returns_bad_request($file)
- {
- $response = $this->withHeaders(['Content-Type' => 'multipart/form-data'])
- ->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/migration', [
- 'file' => $file,
- ])
- ->assertStatus(400);
- }
- /**
- * Provide invalid Aegis JSON files for import tests
- */
- public function invalidAegisJsonFileProvider()
- {
- return [
- 'encryptedAegisJsonFile' => [
- LocalFile::fake()->encryptedAegisJsonFile(),
- ],
- 'invalidAegisJsonFile' => [
- LocalFile::fake()->invalidAegisJsonFile(),
- ],
- ];
- }
- /**
- * @test
- *
- * @dataProvider validPlainTextFileProvider
- */
- public function test_import_valid_plain_text_file_returns_success($file)
- {
- $response = $this->withHeaders(['Content-Type' => 'multipart/form-data'])
- ->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/migration', [
- 'file' => $file,
- 'withSecret' => 1,
- ])
- ->assertOk()
- ->assertJsonCount(3, $key = null)
- ->assertJsonFragment([
- 'id' => 0,
- 'service' => OtpTestData::SERVICE,
- 'account' => OtpTestData::ACCOUNT,
- 'otp_type' => 'totp',
- 'secret' => OtpTestData::SECRET,
- 'digits' => OtpTestData::DIGITS_CUSTOM,
- 'algorithm' => OtpTestData::ALGORITHM_CUSTOM,
- 'period' => OtpTestData::PERIOD_CUSTOM,
- 'counter' => null,
- ])
- ->assertJsonFragment([
- 'id' => 0,
- 'service' => OtpTestData::SERVICE,
- 'account' => OtpTestData::ACCOUNT,
- 'otp_type' => 'hotp',
- 'secret' => OtpTestData::SECRET,
- 'digits' => OtpTestData::DIGITS_CUSTOM,
- 'algorithm' => OtpTestData::ALGORITHM_CUSTOM,
- 'period' => null,
- 'counter' => OtpTestData::COUNTER_CUSTOM,
- ])
- ->assertJsonFragment([
- 'id' => 0,
- 'service' => OtpTestData::STEAM,
- 'account' => OtpTestData::ACCOUNT,
- 'otp_type' => 'steamtotp',
- 'secret' => OtpTestData::STEAM_SECRET,
- 'digits' => OtpTestData::DIGITS_STEAM,
- 'algorithm' => OtpTestData::ALGORITHM_DEFAULT,
- 'period' => OtpTestData::PERIOD_DEFAULT,
- 'counter' => null,
- ]);
- }
- /**
- * Provide valid Plain Text files for import tests
- */
- public function validPlainTextFileProvider()
- {
- return [
- 'validPlainTextFile' => [
- LocalFile::fake()->validPlainTextFile(),
- ],
- 'validPlainTextFileWithNewLines' => [
- LocalFile::fake()->validPlainTextFileWithNewLines(),
- ],
- ];
- }
- /**
- * @test
- *
- * @dataProvider invalidPlainTextFileProvider
- */
- public function test_import_invalid_plain_text_file_returns_bad_request($file)
- {
- $response = $this->withHeaders(['Content-Type' => 'multipart/form-data'])
- ->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/migration', [
- 'file' => $file,
- ])
- ->assertStatus(400);
- }
- /**
- * Provide invalid Plain Text files for import tests
- */
- public function invalidPlainTextFileProvider()
- {
- return [
- 'invalidPlainTextFileEmpty' => [
- LocalFile::fake()->invalidPlainTextFileEmpty(),
- ],
- 'invalidPlainTextFileNoUri' => [
- LocalFile::fake()->invalidPlainTextFileNoUri(),
- ],
- 'invalidPlainTextFileWithInvalidUri' => [
- LocalFile::fake()->invalidPlainTextFileWithInvalidUri(),
- ],
- 'invalidPlainTextFileWithInvalidLine' => [
- LocalFile::fake()->invalidPlainTextFileWithInvalidLine(),
- ],
- ];
- }
- /**
- * @test
- */
- public function test_reorder_returns_success()
- {
- TwoFAccount::factory()->count(3)->create();
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/reorder', [
- 'orderedIds' => [3, 2, 1],
- ])
- ->assertStatus(200)
- ->assertJsonStructure([
- 'message',
- ]);
- }
- /**
- * @test
- */
- public function test_reorder_with_invalid_data_returns_validation_error()
- {
- TwoFAccount::factory()->count(3)->create();
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/reorder', [
- 'orderedIds' => '3,2,1',
- ])
- ->assertStatus(422);
- }
- /**
- * @test
- */
- public function test_preview_returns_success_with_resource()
- {
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/preview', [
- 'uri' => OtpTestData::TOTP_FULL_CUSTOM_URI,
- ])
- ->assertOk()
- ->assertJsonFragment(self::JSON_FRAGMENTS_FOR_CUSTOM_TOTP);
- }
- /**
- * @test
- */
- public function test_preview_with_invalid_data_returns_validation_error()
- {
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/preview', [
- 'uri' => OtpTestData::INVALID_OTPAUTH_URI,
- ])
- ->assertStatus(422);
- }
- /**
- * @test
- */
- public function test_preview_with_unreachable_image_returns_success()
- {
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/preview', [
- 'uri' => OtpTestData::TOTP_URI_WITH_UNREACHABLE_IMAGE,
- ])
- ->assertOk()
- ->assertJsonFragment([
- 'icon' => null,
- ]);
- }
- /**
- * @test
- */
- public function test_get_otp_using_totp_twofaccount_id_returns_consistent_resource()
- {
- $twofaccount = TwoFAccount::factory()->create([
- 'otp_type' => 'totp',
- 'account' => OtpTestData::ACCOUNT,
- 'service' => OtpTestData::SERVICE,
- 'secret' => OtpTestData::SECRET,
- 'algorithm' => OtpTestData::ALGORITHM_DEFAULT,
- 'digits' => OtpTestData::DIGITS_DEFAULT,
- 'period' => OtpTestData::PERIOD_DEFAULT,
- 'legacy_uri' => OtpTestData::TOTP_SHORT_URI,
- 'icon' => '',
- ]);
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('GET', '/api/v1/twofaccounts/' . $twofaccount->id . '/otp')
- ->assertOk()
- ->assertJsonStructure(self::VALID_OTP_RESOURCE_STRUCTURE_FOR_TOTP)
- ->assertJsonFragment([
- 'otp_type' => 'totp',
- 'period' => OtpTestData::PERIOD_DEFAULT,
- ]);
- }
- /**
- * @test
- */
- public function test_get_otp_by_posting_totp_uri_returns_consistent_resource()
- {
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/otp', [
- 'uri' => OtpTestData::TOTP_FULL_CUSTOM_URI,
- ])
- ->assertOk()
- ->assertJsonStructure(self::VALID_OTP_RESOURCE_STRUCTURE_FOR_TOTP)
- ->assertJsonFragment([
- 'otp_type' => 'totp',
- 'period' => OtpTestData::PERIOD_CUSTOM,
- ]);
- }
- /**
- * @test
- */
- public function test_get_otp_by_posting_totp_parameters_returns_consistent_resource()
- {
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/otp', OtpTestData::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_TOTP)
- ->assertOk()
- ->assertJsonStructure(self::VALID_OTP_RESOURCE_STRUCTURE_FOR_TOTP)
- ->assertJsonFragment([
- 'otp_type' => 'totp',
- 'period' => OtpTestData::PERIOD_CUSTOM,
- ]);
- }
- /**
- * @test
- */
- public function test_get_otp_using_hotp_twofaccount_id_returns_consistent_resource()
- {
- $twofaccount = TwoFAccount::factory()->create([
- 'otp_type' => 'hotp',
- 'account' => OtpTestData::ACCOUNT,
- 'service' => OtpTestData::SERVICE,
- 'secret' => OtpTestData::SECRET,
- 'algorithm' => OtpTestData::ALGORITHM_DEFAULT,
- 'digits' => OtpTestData::DIGITS_DEFAULT,
- 'period' => null,
- 'legacy_uri' => OtpTestData::HOTP_SHORT_URI,
- 'icon' => '',
- ]);
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('GET', '/api/v1/twofaccounts/' . $twofaccount->id . '/otp')
- ->assertOk()
- ->assertJsonStructure(self::VALID_OTP_RESOURCE_STRUCTURE_FOR_HOTP)
- ->assertJsonFragment([
- 'otp_type' => 'hotp',
- 'counter' => OtpTestData::COUNTER_DEFAULT + 1,
- ]);
- }
- /**
- * @test
- */
- public function test_get_otp_by_posting_hotp_uri_returns_consistent_resource()
- {
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/otp', [
- 'uri' => OtpTestData::HOTP_FULL_CUSTOM_URI,
- ])
- ->assertOk()
- ->assertJsonStructure(self::VALID_OTP_RESOURCE_STRUCTURE_FOR_HOTP)
- ->assertJsonFragment([
- 'otp_type' => 'hotp',
- 'counter' => OtpTestData::COUNTER_CUSTOM + 1,
- ]);
- }
- /**
- * @test
- */
- public function test_get_otp_by_posting_hotp_parameters_returns_consistent_resource()
- {
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/otp', OtpTestData::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_HOTP)
- ->assertOk()
- ->assertJsonStructure(self::VALID_OTP_RESOURCE_STRUCTURE_FOR_HOTP)
- ->assertJsonFragment([
- 'otp_type' => 'hotp',
- 'counter' => OtpTestData::COUNTER_CUSTOM + 1,
- ]);
- }
- /**
- * @test
- */
- public function test_get_otp_by_posting_multiple_inputs_returns_bad_request()
- {
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/otp', [
- 'uri' => OtpTestData::HOTP_FULL_CUSTOM_URI,
- 'key' => 'value',
- ])
- ->assertStatus(400)
- ->assertJsonStructure([
- 'message',
- 'reason',
- ]);
- }
- /**
- * @test
- */
- public function test_get_otp_using_indecipherable_twofaccount_id_returns_bad_request()
- {
- Settings::set('useEncryption', true);
- $twofaccount = TwoFAccount::factory()->create();
- DB::table('twofaccounts')
- ->where('id', $twofaccount->id)
- ->update([
- 'secret' => '**encrypted**',
- ]);
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('GET', '/api/v1/twofaccounts/' . $twofaccount->id . '/otp')
- ->assertStatus(400)
- ->assertJsonStructure([
- 'message',
- ]);
- }
- /**
- * @test
- */
- public function test_get_otp_using_missing_twofaccount_id_returns_not_found()
- {
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('GET', '/api/v1/twofaccounts/1000/otp')
- ->assertNotFound();
- }
- /**
- * @test
- */
- public function test_get_otp_by_posting_invalid_uri_returns_validation_error()
- {
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/otp', [
- 'uri' => OtpTestData::INVALID_OTPAUTH_URI,
- ])
- ->assertStatus(422);
- }
- /**
- * @test
- */
- public function test_get_otp_by_posting_invalid_parameters_returns_validation_error()
- {
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('POST', '/api/v1/twofaccounts/otp', self::ARRAY_OF_INVALID_PARAMETERS)
- ->assertStatus(422);
- }
- /**
- * @test
- */
- public function test_count_returns_right_number_of_twofaccount()
- {
- TwoFAccount::factory()->count(3)->create();
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('GET', '/api/v1/twofaccounts/count')
- ->assertStatus(200)
- ->assertExactJson([
- 'count' => 3,
- ]);
- }
- /**
- * @test
- */
- public function test_withdraw_returns_success()
- {
- TwoFAccount::factory()->count(3)->create();
- $ids = DB::table('twofaccounts')->pluck('id')->implode(',');
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('PATCH', '/api/v1/twofaccounts/withdraw?ids=1,2,3' . $ids)
- ->assertOk()
- ->assertJsonStructure([
- 'message',
- ]);
- }
- /**
- * @test
- */
- public function test_withdraw_too_many_ids_returns_bad_request()
- {
- TwoFAccount::factory()->count(102)->create();
- $ids = DB::table('twofaccounts')->pluck('id')->implode(',');
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('PATCH', '/api/v1/twofaccounts/withdraw?ids=' . $ids)
- ->assertStatus(400)
- ->assertJsonStructure([
- 'message',
- 'reason',
- ]);
- }
- /**
- * @test
- */
- public function test_destroy_twofaccount_returns_success()
- {
- $twofaccount = TwoFAccount::factory()->create();
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('DELETE', '/api/v1/twofaccounts/' . $twofaccount->id)
- ->assertNoContent();
- }
- /**
- * @test
- */
- public function test_destroy_missing_twofaccount_returns_not_found()
- {
- $twofaccount = TwoFAccount::factory()->create();
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('DELETE', '/api/v1/twofaccounts/1000')
- ->assertNotFound();
- }
- /**
- * @test
- */
- public function test_batch_destroy_twofaccount_returns_success()
- {
- TwoFAccount::factory()->count(3)->create();
- $ids = DB::table('twofaccounts')->pluck('id')->implode(',');
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('DELETE', '/api/v1/twofaccounts?ids=' . $ids)
- ->assertNoContent();
- }
- /**
- * @test
- */
- public function test_batch_destroy_too_many_twofaccounts_returns_bad_request()
- {
- TwoFAccount::factory()->count(102)->create();
- $ids = DB::table('twofaccounts')->pluck('id')->implode(',');
- $response = $this->actingAs($this->user, 'api-guard')
- ->json('DELETE', '/api/v1/twofaccounts?ids=' . $ids)
- ->assertStatus(400)
- ->assertJsonStructure([
- 'message',
- 'reason',
- ]);
- }
- }
|