2021-11-22 01:09:54 +01:00
|
|
|
<?php
|
|
|
|
|
2021-11-30 17:39:33 +01:00
|
|
|
namespace Tests\Feature\Services;
|
2021-11-22 01:09:54 +01:00
|
|
|
|
2021-12-02 13:15:53 +01:00
|
|
|
use App\Models\Group;
|
|
|
|
use App\Models\TwoFAccount;
|
2021-11-22 01:09:54 +01:00
|
|
|
use Tests\FeatureTestCase;
|
2022-07-05 10:10:24 +02:00
|
|
|
use Tests\Classes\OtpTestData;
|
2022-07-29 19:22:54 +02:00
|
|
|
use App\Services\TwoFAccountService;
|
2021-11-22 01:09:54 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \App\Services\TwoFAccountService
|
|
|
|
*/
|
|
|
|
class TwoFAccountServiceTest extends FeatureTestCase
|
|
|
|
{
|
|
|
|
/**
|
2021-12-01 13:47:20 +01:00
|
|
|
* App\Services\SettingService $settingService
|
2021-11-22 01:09:54 +01:00
|
|
|
*/
|
|
|
|
protected $twofaccountService;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2021-12-02 13:15:53 +01:00
|
|
|
* App\Models\TwoFAccount $customTotpTwofaccount
|
2021-11-22 01:09:54 +01:00
|
|
|
*/
|
|
|
|
protected $customTotpTwofaccount;
|
|
|
|
|
|
|
|
|
2021-11-30 17:39:33 +01:00
|
|
|
/**
|
2021-12-02 13:15:53 +01:00
|
|
|
* App\Models\Group $group
|
2021-11-30 17:39:33 +01:00
|
|
|
*/
|
|
|
|
protected $group;
|
|
|
|
|
|
|
|
|
2021-11-22 01:09:54 +01:00
|
|
|
/**
|
2021-12-02 13:15:53 +01:00
|
|
|
* App\Models\TwoFAccount $customTotpTwofaccount
|
2021-11-22 01:09:54 +01:00
|
|
|
*/
|
|
|
|
protected $customHotpTwofaccount;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setUp() : void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
2022-07-29 19:22:54 +02:00
|
|
|
$this->twofaccountService = $this->app->make(TwoFAccountService::class);
|
2021-11-22 01:09:54 +01:00
|
|
|
|
|
|
|
$this->customTotpTwofaccount = new TwoFAccount;
|
2022-07-05 10:10:24 +02:00
|
|
|
$this->customTotpTwofaccount->legacy_uri = OtpTestData::TOTP_FULL_CUSTOM_URI;
|
|
|
|
$this->customTotpTwofaccount->service = OtpTestData::SERVICE;
|
|
|
|
$this->customTotpTwofaccount->account = OtpTestData::ACCOUNT;
|
|
|
|
$this->customTotpTwofaccount->icon = OtpTestData::ICON;
|
2021-11-22 01:09:54 +01:00
|
|
|
$this->customTotpTwofaccount->otp_type = 'totp';
|
2022-07-05 10:10:24 +02:00
|
|
|
$this->customTotpTwofaccount->secret = OtpTestData::SECRET;
|
|
|
|
$this->customTotpTwofaccount->digits = OtpTestData::DIGITS_CUSTOM;
|
|
|
|
$this->customTotpTwofaccount->algorithm = OtpTestData::ALGORITHM_CUSTOM;
|
|
|
|
$this->customTotpTwofaccount->period = OtpTestData::PERIOD_CUSTOM;
|
2021-11-22 01:09:54 +01:00
|
|
|
$this->customTotpTwofaccount->counter = null;
|
|
|
|
$this->customTotpTwofaccount->save();
|
|
|
|
|
|
|
|
$this->customHotpTwofaccount = new TwoFAccount;
|
2022-07-05 10:10:24 +02:00
|
|
|
$this->customHotpTwofaccount->legacy_uri = OtpTestData::HOTP_FULL_CUSTOM_URI;
|
|
|
|
$this->customHotpTwofaccount->service = OtpTestData::SERVICE;
|
|
|
|
$this->customHotpTwofaccount->account = OtpTestData::ACCOUNT;
|
|
|
|
$this->customHotpTwofaccount->icon = OtpTestData::ICON;
|
2021-11-22 01:09:54 +01:00
|
|
|
$this->customHotpTwofaccount->otp_type = 'hotp';
|
2022-07-05 10:10:24 +02:00
|
|
|
$this->customHotpTwofaccount->secret = OtpTestData::SECRET;
|
|
|
|
$this->customHotpTwofaccount->digits = OtpTestData::DIGITS_CUSTOM;
|
|
|
|
$this->customHotpTwofaccount->algorithm = OtpTestData::ALGORITHM_CUSTOM;
|
2021-11-22 01:09:54 +01:00
|
|
|
$this->customHotpTwofaccount->period = null;
|
2022-07-05 10:10:24 +02:00
|
|
|
$this->customHotpTwofaccount->counter = OtpTestData::COUNTER_CUSTOM;
|
2021-11-22 01:09:54 +01:00
|
|
|
$this->customHotpTwofaccount->save();
|
2021-11-30 17:39:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
$this->group = new Group;
|
|
|
|
$this->group->name = 'MyGroup';
|
|
|
|
$this->group->save();
|
2021-11-22 01:09:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-11-30 17:39:33 +01:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_withdraw_comma_separated_ids_deletes_relation()
|
|
|
|
{
|
|
|
|
$twofaccounts = collect([$this->customHotpTwofaccount, $this->customTotpTwofaccount]);
|
|
|
|
$this->group->twofaccounts()->saveMany($twofaccounts);
|
|
|
|
|
|
|
|
$this->twofaccountService->withdraw($this->customHotpTwofaccount->id.','.$this->customTotpTwofaccount->id);
|
|
|
|
|
|
|
|
$this->assertDatabaseHas('twofaccounts', [
|
|
|
|
'id' => $this->customTotpTwofaccount->id,
|
|
|
|
'group_id' => null,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertDatabaseHas('twofaccounts', [
|
|
|
|
'id' => $this->customHotpTwofaccount->id,
|
|
|
|
'group_id' => null,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_withdraw_array_of_model_ids_deletes_relation()
|
|
|
|
{
|
|
|
|
$twofaccounts = collect([$this->customHotpTwofaccount, $this->customTotpTwofaccount]);
|
|
|
|
$this->group->twofaccounts()->saveMany($twofaccounts);
|
|
|
|
|
|
|
|
$this->twofaccountService->withdraw([$this->customHotpTwofaccount->id, $this->customTotpTwofaccount->id]);
|
|
|
|
|
|
|
|
$this->assertDatabaseHas('twofaccounts', [
|
|
|
|
'id' => $this->customTotpTwofaccount->id,
|
|
|
|
'group_id' => null,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertDatabaseHas('twofaccounts', [
|
|
|
|
'id' => $this->customHotpTwofaccount->id,
|
|
|
|
'group_id' => null,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_withdraw_single_id_deletes_relation()
|
|
|
|
{
|
|
|
|
$twofaccounts = collect([$this->customHotpTwofaccount, $this->customTotpTwofaccount]);
|
|
|
|
$this->group->twofaccounts()->saveMany($twofaccounts);
|
|
|
|
|
|
|
|
$this->twofaccountService->withdraw($this->customTotpTwofaccount->id);
|
|
|
|
|
|
|
|
$this->assertDatabaseHas('twofaccounts', [
|
|
|
|
'id' => $this->customTotpTwofaccount->id,
|
|
|
|
'group_id' => null,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_withdraw_missing_ids_returns_void()
|
|
|
|
{
|
|
|
|
$this->assertNull($this->twofaccountService->withdraw(null));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_delete_comma_separated_ids()
|
|
|
|
{
|
|
|
|
$this->twofaccountService->delete($this->customHotpTwofaccount->id.','.$this->customTotpTwofaccount->id);
|
|
|
|
|
|
|
|
$this->assertDatabaseMissing('twofaccounts', [
|
|
|
|
'id' => $this->customTotpTwofaccount->id,
|
|
|
|
]);
|
|
|
|
$this->assertDatabaseMissing('twofaccounts', [
|
|
|
|
'id' => $this->customHotpTwofaccount->id,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_delete_array_of_ids()
|
|
|
|
{
|
|
|
|
$this->twofaccountService->delete([$this->customTotpTwofaccount->id, $this->customHotpTwofaccount->id]);
|
|
|
|
|
|
|
|
$this->assertDatabaseMissing('twofaccounts', [
|
|
|
|
'id' => $this->customTotpTwofaccount->id,
|
|
|
|
]);
|
|
|
|
$this->assertDatabaseMissing('twofaccounts', [
|
|
|
|
'id' => $this->customHotpTwofaccount->id,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_delete_single_id()
|
|
|
|
{
|
|
|
|
$this->twofaccountService->delete($this->customTotpTwofaccount->id);
|
|
|
|
|
|
|
|
$this->assertDatabaseMissing('twofaccounts', [
|
|
|
|
'id' => $this->customTotpTwofaccount->id,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2022-06-21 17:27:47 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_convert_migration_from_gauth_returns_correct_accounts()
|
|
|
|
{
|
2022-07-05 10:10:24 +02:00
|
|
|
$twofaccounts = $this->twofaccountService->convertMigrationFromGA(OtpTestData::GOOGLE_AUTH_MIGRATION_URI);
|
2022-06-21 17:27:47 +02:00
|
|
|
|
|
|
|
$this->assertCount(2, $twofaccounts);
|
|
|
|
|
|
|
|
$this->assertEquals('totp', $twofaccounts->first()->otp_type);
|
2022-07-05 10:10:24 +02:00
|
|
|
$this->assertEquals(OtpTestData::SERVICE, $twofaccounts->first()->service);
|
|
|
|
$this->assertEquals(OtpTestData::ACCOUNT, $twofaccounts->first()->account);
|
|
|
|
$this->assertEquals(OtpTestData::SECRET, $twofaccounts->first()->secret);
|
|
|
|
$this->assertEquals(OtpTestData::DIGITS_DEFAULT, $twofaccounts->first()->digits);
|
|
|
|
$this->assertEquals(OtpTestData::PERIOD_DEFAULT, $twofaccounts->first()->period);
|
2022-06-21 17:27:47 +02:00
|
|
|
$this->assertEquals(null, $twofaccounts->first()->counter);
|
2022-07-05 10:10:24 +02:00
|
|
|
$this->assertEquals(OtpTestData::ALGORITHM_DEFAULT, $twofaccounts->first()->algorithm);
|
2022-06-21 17:27:47 +02:00
|
|
|
|
|
|
|
$this->assertEquals('totp', $twofaccounts->last()->otp_type);
|
2022-07-05 10:10:24 +02:00
|
|
|
$this->assertEquals(OtpTestData::SERVICE.'_bis', $twofaccounts->last()->service);
|
|
|
|
$this->assertEquals(OtpTestData::ACCOUNT.'_bis', $twofaccounts->last()->account);
|
|
|
|
$this->assertEquals(OtpTestData::SECRET, $twofaccounts->last()->secret);
|
|
|
|
$this->assertEquals(OtpTestData::DIGITS_DEFAULT, $twofaccounts->last()->digits);
|
|
|
|
$this->assertEquals(OtpTestData::PERIOD_DEFAULT, $twofaccounts->last()->period);
|
2022-06-21 17:27:47 +02:00
|
|
|
$this->assertEquals(null, $twofaccounts->last()->counter);
|
2022-07-05 10:10:24 +02:00
|
|
|
$this->assertEquals(OtpTestData::ALGORITHM_DEFAULT, $twofaccounts->last()->algorithm);
|
2022-06-21 17:27:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_convert_migration_from_gauth_returns_flagged_duplicates()
|
|
|
|
{
|
|
|
|
$parameters = [
|
2022-07-05 10:10:24 +02:00
|
|
|
'service' => OtpTestData::SERVICE,
|
|
|
|
'account' => OtpTestData::ACCOUNT,
|
|
|
|
'icon' => OtpTestData::ICON,
|
2022-06-21 17:27:47 +02:00
|
|
|
'otp_type' => 'totp',
|
2022-07-05 10:10:24 +02:00
|
|
|
'secret' => OtpTestData::SECRET,
|
|
|
|
'digits' => OtpTestData::DIGITS_DEFAULT,
|
|
|
|
'algorithm' => OtpTestData::ALGORITHM_DEFAULT,
|
|
|
|
'period' => OtpTestData::PERIOD_DEFAULT,
|
2022-06-21 17:27:47 +02:00
|
|
|
];
|
2022-07-05 10:10:24 +02:00
|
|
|
$twofaccount = new TwoFAccount;
|
|
|
|
$twofaccount->fillWithOtpParameters($parameters)->save();
|
|
|
|
|
|
|
|
$parameters['service'] = OtpTestData::SERVICE.'_bis';
|
|
|
|
$parameters['account'] = OtpTestData::ACCOUNT.'_bis';
|
2022-06-21 17:27:47 +02:00
|
|
|
|
2022-07-05 10:10:24 +02:00
|
|
|
$twofaccount = new TwoFAccount;
|
|
|
|
$twofaccount->fillWithOtpParameters($parameters)->save();
|
2022-06-21 17:27:47 +02:00
|
|
|
|
2022-07-05 10:10:24 +02:00
|
|
|
$twofaccounts = $this->twofaccountService->convertMigrationFromGA(OtpTestData::GOOGLE_AUTH_MIGRATION_URI);
|
2022-06-21 17:27:47 +02:00
|
|
|
|
|
|
|
$this->assertEquals(-1, $twofaccounts->first()->id);
|
|
|
|
$this->assertEquals(-1, $twofaccounts->last()->id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function test_convert_invalid_migration_from_gauth_returns_InvalidGoogleAuthMigration_excpetion()
|
|
|
|
{
|
|
|
|
$this->expectException(\App\Exceptions\InvalidGoogleAuthMigration::class);
|
2022-07-05 10:10:24 +02:00
|
|
|
$twofaccounts = $this->twofaccountService->convertMigrationFromGA(OtpTestData::GOOGLE_AUTH_MIGRATION_URI_WITH_INVALID_DATA);
|
2022-06-21 17:27:47 +02:00
|
|
|
}
|
|
|
|
|
2021-11-22 01:09:54 +01:00
|
|
|
}
|