|
@@ -26,13 +26,127 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
private const PERIOD_CUSTOM = 40;
|
|
|
private const COUNTER_DEFAULT = 0;
|
|
|
private const COUNTER_CUSTOM = 5;
|
|
|
+ private const IMAGE = 'https%3A%2F%2Fen.opensuse.org%2Fimages%2F4%2F44%2FButton-filled-colour.png';
|
|
|
private const ICON = 'test.png';
|
|
|
- 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;
|
|
|
- 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;
|
|
|
+ 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;
|
|
|
private const TOTP_SHORT_URI = 'otpauth://totp/'.self::ACCOUNT.'?secret='.self::SECRET;
|
|
|
private const HOTP_SHORT_URI = 'otpauth://hotp/'.self::ACCOUNT.'?secret='.self::SECRET;
|
|
|
+ private const TOTP_URI_WITH_UNREACHABLE_IMAGE = 'otpauth://totp/service:account?secret=A4GRFHVVRBGY7UIW&image=https%3A%2F%2Fen.opensuse.org%2Fimage.png';
|
|
|
private const INVALID_OTPAUTH_URI = 'otpauth://Xotp/'.self::ACCOUNT.'?secret='.self::SECRET;
|
|
|
-
|
|
|
+ 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,
|
|
|
+ ];
|
|
|
|
|
|
/**
|
|
|
* @test
|
|
@@ -50,27 +164,15 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
*/
|
|
|
public function test_index_returns_twofaccount_collection()
|
|
|
{
|
|
|
- $twofaccount = factory(TwoFAccount::class, 3)->create();
|
|
|
+ factory(TwoFAccount::class, 3)->create();
|
|
|
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
->json('GET', '/api/v1/twofaccounts')
|
|
|
->assertOk()
|
|
|
->assertJsonCount(3, $key = null)
|
|
|
->assertJsonStructure([
|
|
|
- '*' => [
|
|
|
- 'id',
|
|
|
- 'group_id',
|
|
|
- 'service',
|
|
|
- 'account',
|
|
|
- 'icon',
|
|
|
- 'otp_type',
|
|
|
- 'digits',
|
|
|
- 'algorithm',
|
|
|
- 'period',
|
|
|
- 'counter'
|
|
|
- ]
|
|
|
- ]
|
|
|
- );
|
|
|
+ '*' => self::VALID_RESOURCE_STRUCTURE_WITHOUT_SECRET
|
|
|
+ ]);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -79,54 +181,29 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
*/
|
|
|
public function test_index_returns_twofaccount_collection_with_secret()
|
|
|
{
|
|
|
- $twofaccount = factory(TwoFAccount::class, 3)->create();
|
|
|
+ factory(TwoFAccount::class, 3)->create();
|
|
|
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
->json('GET', '/api/v1/twofaccounts?withSecret=1')
|
|
|
->assertOk()
|
|
|
->assertJsonCount(3, $key = null)
|
|
|
->assertJsonStructure([
|
|
|
- '*' => [
|
|
|
- 'id',
|
|
|
- 'group_id',
|
|
|
- 'service',
|
|
|
- 'account',
|
|
|
- 'icon',
|
|
|
- 'otp_type',
|
|
|
- 'secret',
|
|
|
- 'digits',
|
|
|
- 'algorithm',
|
|
|
- 'period',
|
|
|
- 'counter'
|
|
|
- ]
|
|
|
- ]
|
|
|
- );
|
|
|
+ '*' => self::VALID_RESOURCE_STRUCTURE_WITH_SECRET
|
|
|
+ ]);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* @test
|
|
|
*/
|
|
|
- public function test_show_twofaccount_returns_twofaccount_resource()
|
|
|
+ public function test_show_twofaccount_returns_twofaccount_resource_with_secret()
|
|
|
{
|
|
|
$twofaccount = factory(TwoFAccount::class)->create();
|
|
|
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
->json('GET', '/api/v1/twofaccounts/' . $twofaccount->id)
|
|
|
->assertOk()
|
|
|
- ->assertJsonStructure([
|
|
|
- 'id',
|
|
|
- 'group_id',
|
|
|
- 'service',
|
|
|
- 'account',
|
|
|
- 'icon',
|
|
|
- 'otp_type',
|
|
|
- 'secret',
|
|
|
- 'digits',
|
|
|
- 'algorithm',
|
|
|
- 'period',
|
|
|
- 'counter'
|
|
|
- ]);
|
|
|
+ ->assertJsonStructure(self::VALID_RESOURCE_STRUCTURE_WITH_SECRET);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -140,17 +217,32 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
->json('GET', '/api/v1/twofaccounts/' . $twofaccount->id . '?withSecret=0')
|
|
|
->assertOk()
|
|
|
- ->assertJsonStructure([
|
|
|
- 'id',
|
|
|
- 'group_id',
|
|
|
- 'service',
|
|
|
- 'account',
|
|
|
- 'icon',
|
|
|
- 'otp_type',
|
|
|
- 'digits',
|
|
|
- 'algorithm',
|
|
|
- 'period',
|
|
|
- 'counter'
|
|
|
+ ->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 = factory(TwoFAccount::class)->create();
|
|
|
+
|
|
|
+ DB::table('twofaccounts')
|
|
|
+ ->where('id', $twofaccount->id)
|
|
|
+ ->update([
|
|
|
+ 'secret' => '**encrypted**',
|
|
|
+ 'account' => '**encrypted**',
|
|
|
+ ]);
|
|
|
+
|
|
|
+ $response = $this->actingAs($this->user, 'api')
|
|
|
+ ->json('GET', '/api/v1/twofaccounts/' . $twofaccount->id)
|
|
|
+ ->assertJsonFragment([
|
|
|
+ 'secret' => '*indecipherable*',
|
|
|
+ 'account' => '*indecipherable*',
|
|
|
]);
|
|
|
}
|
|
|
|
|
@@ -180,19 +272,7 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
->json('POST', '/api/v1/twofaccounts', $data)
|
|
|
->assertCreated()
|
|
|
- ->assertJsonStructure([
|
|
|
- 'id',
|
|
|
- 'group_id',
|
|
|
- 'service',
|
|
|
- 'account',
|
|
|
- 'icon',
|
|
|
- 'otp_type',
|
|
|
- 'secret',
|
|
|
- 'digits',
|
|
|
- 'algorithm',
|
|
|
- 'period',
|
|
|
- 'counter'
|
|
|
- ]);
|
|
|
+ ->assertJsonStructure(self::VALID_RESOURCE_STRUCTURE_WITH_SECRET);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -208,44 +288,24 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
[[
|
|
|
'uri' => self::TOTP_SHORT_URI,
|
|
|
]],
|
|
|
- [[
|
|
|
- '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,
|
|
|
- ]],
|
|
|
- [[
|
|
|
- 'account' => self::ACCOUNT,
|
|
|
- 'otp_type' => 'totp',
|
|
|
- 'secret' => self::SECRET,
|
|
|
- ]],
|
|
|
+ [
|
|
|
+ self::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_TOTP
|
|
|
+ ],
|
|
|
+ [
|
|
|
+ self::ARRAY_OF_MINIMUM_VALID_PARAMETERS_FOR_TOTP
|
|
|
+ ],
|
|
|
[[
|
|
|
'uri' => self::HOTP_FULL_CUSTOM_URI,
|
|
|
]],
|
|
|
[[
|
|
|
'uri' => self::HOTP_SHORT_URI,
|
|
|
]],
|
|
|
- [[
|
|
|
- '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,
|
|
|
- ]],
|
|
|
- [[
|
|
|
- 'account' => self::ACCOUNT,
|
|
|
- 'otp_type' => 'hotp',
|
|
|
- 'secret' => self::SECRET,
|
|
|
- ]],
|
|
|
+ [
|
|
|
+ self::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_HOTP
|
|
|
+ ],
|
|
|
+ [
|
|
|
+ self::ARRAY_OF_MINIMUM_VALID_PARAMETERS_FOR_HOTP
|
|
|
+ ],
|
|
|
];
|
|
|
}
|
|
|
|
|
@@ -257,18 +317,9 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
{
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
->json('POST', '/api/v1/twofaccounts', [
|
|
|
- 'uri' => self::TOTP_FULL_CUSTOM_URI,
|
|
|
- ])
|
|
|
- ->assertJsonFragment([
|
|
|
- '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,
|
|
|
- ]);
|
|
|
+ 'uri' => self::TOTP_FULL_CUSTOM_URI,
|
|
|
+ ])
|
|
|
+ ->assertJsonFragment(self::JSON_FRAGMENTS_FOR_CUSTOM_TOTP);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -279,18 +330,9 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
{
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
->json('POST', '/api/v1/twofaccounts', [
|
|
|
- 'uri' => self::TOTP_SHORT_URI,
|
|
|
- ])
|
|
|
- ->assertJsonFragment([
|
|
|
- '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,
|
|
|
- ]);
|
|
|
+ 'uri' => self::TOTP_SHORT_URI,
|
|
|
+ ])
|
|
|
+ ->assertJsonFragment(self::JSON_FRAGMENTS_FOR_DEFAULT_TOTP);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -300,26 +342,8 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
public function test_store_totp_using_fully_custom_parameters_returns_consistent_resource()
|
|
|
{
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('POST', '/api/v1/twofaccounts', [
|
|
|
- '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,
|
|
|
- ])
|
|
|
- ->assertJsonFragment([
|
|
|
- '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,
|
|
|
- ]);
|
|
|
+ ->json('POST', '/api/v1/twofaccounts', self::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_TOTP)
|
|
|
+ ->assertJsonFragment(self::JSON_FRAGMENTS_FOR_CUSTOM_TOTP);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -329,21 +353,8 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
public function test_store_totp_using_minimum_parameters_returns_consistent_resource()
|
|
|
{
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('POST', '/api/v1/twofaccounts', [
|
|
|
- 'account' => self::ACCOUNT,
|
|
|
- 'otp_type' => 'totp',
|
|
|
- 'secret' => self::SECRET,
|
|
|
- ])
|
|
|
- ->assertJsonFragment([
|
|
|
- '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,
|
|
|
- ]);
|
|
|
+ ->json('POST', '/api/v1/twofaccounts', self::ARRAY_OF_MINIMUM_VALID_PARAMETERS_FOR_TOTP)
|
|
|
+ ->assertJsonFragment(self::JSON_FRAGMENTS_FOR_DEFAULT_TOTP);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -354,18 +365,9 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
{
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
->json('POST', '/api/v1/twofaccounts', [
|
|
|
- 'uri' => self::HOTP_FULL_CUSTOM_URI,
|
|
|
- ])
|
|
|
- ->assertJsonFragment([
|
|
|
- '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,
|
|
|
- ]);
|
|
|
+ 'uri' => self::HOTP_FULL_CUSTOM_URI,
|
|
|
+ ])
|
|
|
+ ->assertJsonFragment(self::JSON_FRAGMENTS_FOR_CUSTOM_HOTP);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -376,18 +378,9 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
{
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
->json('POST', '/api/v1/twofaccounts', [
|
|
|
- 'uri' => self::HOTP_SHORT_URI,
|
|
|
- ])
|
|
|
- ->assertJsonFragment([
|
|
|
- '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,
|
|
|
- ]);
|
|
|
+ 'uri' => self::HOTP_SHORT_URI,
|
|
|
+ ])
|
|
|
+ ->assertJsonFragment(self::JSON_FRAGMENTS_FOR_DEFAULT_HOTP);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -397,26 +390,8 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
public function test_store_hotp_using_fully_custom_parameters_returns_consistent_resource()
|
|
|
{
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('POST', '/api/v1/twofaccounts', [
|
|
|
- '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,
|
|
|
- ])
|
|
|
- ->assertJsonFragment([
|
|
|
- '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,
|
|
|
- ]);
|
|
|
+ ->json('POST', '/api/v1/twofaccounts', self::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_HOTP)
|
|
|
+ ->assertJsonFragment(self::JSON_FRAGMENTS_FOR_CUSTOM_HOTP);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -426,21 +401,8 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
public function test_store_hotp_using_minimum_parameters_returns_consistent_resource()
|
|
|
{
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('POST', '/api/v1/twofaccounts', [
|
|
|
- 'account' => self::ACCOUNT,
|
|
|
- 'otp_type' => 'hotp',
|
|
|
- 'secret' => self::SECRET,
|
|
|
- ])
|
|
|
- ->assertJsonFragment([
|
|
|
- '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,
|
|
|
- ]);
|
|
|
+ ->json('POST', '/api/v1/twofaccounts', self::ARRAY_OF_MINIMUM_VALID_PARAMETERS_FOR_HOTP)
|
|
|
+ ->assertJsonFragment(self::JSON_FRAGMENTS_FOR_DEFAULT_HOTP);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -451,8 +413,8 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
{
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
->json('POST', '/api/v1/twofaccounts', [
|
|
|
- 'uri' => self::INVALID_OTPAUTH_URI,
|
|
|
- ])
|
|
|
+ 'uri' => self::INVALID_OTPAUTH_URI,
|
|
|
+ ])
|
|
|
->assertStatus(422);
|
|
|
}
|
|
|
|
|
@@ -465,29 +427,9 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
$twofaccount = factory(TwoFAccount::class)->create();
|
|
|
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('PUT', '/api/v1/twofaccounts/' . $twofaccount->id, [
|
|
|
- '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,
|
|
|
- ])
|
|
|
+ ->json('PUT', '/api/v1/twofaccounts/' . $twofaccount->id, self::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_TOTP)
|
|
|
->assertOk()
|
|
|
- ->assertJsonFragment([
|
|
|
- '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,
|
|
|
- ]);
|
|
|
+ ->assertJsonFragment(self::JSON_FRAGMENTS_FOR_CUSTOM_TOTP);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -499,29 +441,9 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
$twofaccount = factory(TwoFAccount::class)->create();
|
|
|
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('PUT', '/api/v1/twofaccounts/' . $twofaccount->id, [
|
|
|
- '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,
|
|
|
- ])
|
|
|
+ ->json('PUT', '/api/v1/twofaccounts/' . $twofaccount->id, self::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_HOTP)
|
|
|
->assertOk()
|
|
|
- ->assertJsonFragment([
|
|
|
- '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,
|
|
|
- ]);
|
|
|
+ ->assertJsonFragment(self::JSON_FRAGMENTS_FOR_CUSTOM_HOTP);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -531,17 +453,7 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
public function test_update_missing_twofaccount_returns_not_found()
|
|
|
{
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('PUT', '/api/v1/twofaccounts/1000', [
|
|
|
- '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,
|
|
|
- ])
|
|
|
+ ->json('PUT', '/api/v1/twofaccounts/1000', self::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_TOTP)
|
|
|
->assertNotFound();
|
|
|
}
|
|
|
|
|
@@ -554,432 +466,393 @@ class TwoFAccountControllerTest extends FeatureTestCase
|
|
|
$twofaccount = factory(TwoFAccount::class)->create();
|
|
|
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('PUT', '/api/v1/twofaccounts/' . $twofaccount->id, [
|
|
|
- 'service' => self::SERVICE,
|
|
|
- 'account' => null,
|
|
|
- 'icon' => self::ICON,
|
|
|
- 'otp_type' => 'totp',
|
|
|
- 'secret' => self::SECRET,
|
|
|
- 'digits' => self::DIGITS_CUSTOM,
|
|
|
- 'algorithm' => self::ALGORITHM_CUSTOM,
|
|
|
- 'period' => self::PERIOD_CUSTOM,
|
|
|
- 'counter' => null,
|
|
|
- ])
|
|
|
+ ->json('PUT', '/api/v1/twofaccounts/' . $twofaccount->id, self::ARRAY_OF_INVALID_PARAMETERS)
|
|
|
->assertStatus(422);
|
|
|
}
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
+ * @test
|
|
|
+ */
|
|
|
+ public function test_reorder_returns_success()
|
|
|
+ {
|
|
|
+ factory(TwoFAccount::class, 3)->create();
|
|
|
|
|
|
+ $response = $this->actingAs($this->user, 'api')
|
|
|
+ ->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()
|
|
|
+ {
|
|
|
+ factory(TwoFAccount::class, 3)->create();
|
|
|
|
|
|
+ $response = $this->actingAs($this->user, 'api')
|
|
|
+ ->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')
|
|
|
+ ->json('POST', '/api/v1/twofaccounts/preview', [
|
|
|
+ 'uri' => self::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')
|
|
|
+ ->json('POST', '/api/v1/twofaccounts/preview', [
|
|
|
+ 'uri' => self::INVALID_OTPAUTH_URI,
|
|
|
+ ])
|
|
|
+ ->assertStatus(422);
|
|
|
+ }
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+ /**
|
|
|
+ * @test
|
|
|
+ */
|
|
|
+ public function test_preview_with_unreachable_image_returns_success()
|
|
|
+ {
|
|
|
+ $response = $this->actingAs($this->user, 'api')
|
|
|
+ ->json('POST', '/api/v1/twofaccounts/preview', [
|
|
|
+ 'uri' => self::TOTP_URI_WITH_UNREACHABLE_IMAGE,
|
|
|
+ ])
|
|
|
+ ->assertOk()
|
|
|
+ ->assertJsonFragment([
|
|
|
+ 'icon' => null
|
|
|
+ ]);
|
|
|
+ }
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * test Hotp TwoFAccount display via API
|
|
|
- *
|
|
|
* @test
|
|
|
*/
|
|
|
- public function testHotpTwofaccountDisplayWithCounterIncrement()
|
|
|
+ public function test_get_otp_using_totp_twofaccount_id_returns_consistent_resource()
|
|
|
{
|
|
|
$twofaccount = factory(TwoFAccount::class)->create([
|
|
|
- 'service' => 'testTOTP',
|
|
|
- 'account' => 'test@test.com',
|
|
|
- 'uri' => 'otpauth://hotp/test@test.com?secret=A4GRFHVVRBGY7UIW&issuer=test&counter=1',
|
|
|
+ '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')
|
|
|
- ->json('POST', '/api/v1/twofaccounts/otp', ['id' => $twofaccount->id])
|
|
|
- ->assertStatus(200);
|
|
|
+ ->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,
|
|
|
+ ]);
|
|
|
+ }
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @test
|
|
|
+ */
|
|
|
+ public function test_get_otp_by_posting_totp_uri_returns_consistent_resource()
|
|
|
+ {
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('GET', '/api/v1/twofaccounts/' . $twofaccount->id)
|
|
|
- ->assertStatus(200)
|
|
|
- ->assertJsonFragment([
|
|
|
- 'service' => 'testTOTP',
|
|
|
- 'account' => 'test@test.com',
|
|
|
- 'group_id' => null,
|
|
|
- 'isConsistent' => true,
|
|
|
- 'otpType' => 'hotp',
|
|
|
- 'digits' => 6,
|
|
|
- 'hotpCounter' => 2,
|
|
|
- 'imageLink' => null,
|
|
|
+ ->json('POST', '/api/v1/twofaccounts/otp', [
|
|
|
+ 'uri' => self::TOTP_FULL_CUSTOM_URI,
|
|
|
])
|
|
|
- ->assertJsonMissing([
|
|
|
- 'uri' => 'otpauth://hotp/test@test.com?secret=A4GRFHVVRBGY7UIW&issuer=test',
|
|
|
- 'secret' => 'A4GRFHVVRBGY7UIW',
|
|
|
- 'algorithm' => 'sha1',
|
|
|
+ ->assertOk()
|
|
|
+ ->assertJsonStructure(self::VALID_OTP_RESOURCE_STRUCTURE_FOR_TOTP)
|
|
|
+ ->assertJsonFragment([
|
|
|
+ 'otp_type' => 'totp',
|
|
|
+ 'period' => self::PERIOD_CUSTOM,
|
|
|
]);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * test TwoFAccount preview via API
|
|
|
- *
|
|
|
* @test
|
|
|
*/
|
|
|
- public function testTwofaccountPreview()
|
|
|
+ public function test_get_otp_by_posting_totp_parameters_returns_consistent_resource()
|
|
|
{
|
|
|
- Storage::put('test.png', 'emptied to prevent missing resource replaced by null by the model getter');
|
|
|
-
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('POST', '/api/v1/twofaccounts/preview', [
|
|
|
- 'uri' => 'otpauth://totp/service:account?secret=A4GRFHVVRBGY7UIW&issuer=service&image=https%3A%2F%2Fen.opensuse.org%2Fimages%2F4%2F44%2FButton-filled-colour.png',
|
|
|
- ])
|
|
|
- ->assertStatus(200)
|
|
|
+ ->json('POST', '/api/v1/twofaccounts/otp', self::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_TOTP)
|
|
|
+ ->assertOk()
|
|
|
+ ->assertJsonStructure(self::VALID_OTP_RESOURCE_STRUCTURE_FOR_TOTP)
|
|
|
->assertJsonFragment([
|
|
|
- 'service' => 'service',
|
|
|
- 'account' => 'account',
|
|
|
- 'uri' => 'otpauth://totp/service:account?secret=A4GRFHVVRBGY7UIW&issuer=service&image=https%3A%2F%2Fen.opensuse.org%2Fimages%2F4%2F44%2FButton-filled-colour.png',
|
|
|
- 'secret' => 'A4GRFHVVRBGY7UIW',
|
|
|
- 'algorithm' => 'sha1',
|
|
|
- 'otpType' => 'totp',
|
|
|
- 'digits' => 6,
|
|
|
- 'totpPeriod' => 30,
|
|
|
- 'hotpCounter' => null,
|
|
|
- 'imageLink' => 'https://en.opensuse.org/images/4/44/Button-filled-colour.png',
|
|
|
- ])
|
|
|
- ->assertJsonStructure([
|
|
|
- 'icon'
|
|
|
+ 'otp_type' => 'totp',
|
|
|
+ 'period' => self::PERIOD_CUSTOM,
|
|
|
]);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * test TwoFAccount preview with unreachable image parameter via API
|
|
|
- *
|
|
|
* @test
|
|
|
*/
|
|
|
- public function testTwofaccountPreviewWithUnreachableImage()
|
|
|
+ public function test_get_otp_using_hotp_twofaccount_id_returns_consistent_resource()
|
|
|
{
|
|
|
+ $twofaccount = factory(TwoFAccount::class)->create([
|
|
|
+ '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' => '',
|
|
|
+ ]);
|
|
|
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('POST', '/api/v1/twofaccounts/preview', [
|
|
|
- 'uri' => 'otpauth://totp/service:account?secret=A4GRFHVVRBGY7UIW&issuer=service&image=https%3A%2F%2Fen.opensuse.org%2Fimage.png',
|
|
|
- ])
|
|
|
- ->assertStatus(200)
|
|
|
- ->assertJsonMissing([
|
|
|
- 'icon'
|
|
|
+ ->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,
|
|
|
]);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * test show account when uri field remains encrypted via API
|
|
|
- *
|
|
|
* @test
|
|
|
*/
|
|
|
- public function testShowAccountWithUndecipheredUri()
|
|
|
+ public function test_get_otp_by_posting_hotp_uri_returns_consistent_resource()
|
|
|
{
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('POST', '/api/v1/twofaccounts', [
|
|
|
- 'service' => 'testCreation',
|
|
|
- 'account' => 'test@example.org',
|
|
|
- 'uri' => 'otpauth://totp/test@test.com?secret=A4GRFHZVRBGY7UIW&issuer=test',
|
|
|
- 'icon' => 'test.png',
|
|
|
- ])
|
|
|
- ->assertStatus(201);
|
|
|
-
|
|
|
- DB::table('twofaccounts')
|
|
|
- ->where('id', 1)
|
|
|
- ->update([
|
|
|
- 'uri' => '**encrypted**',
|
|
|
+ ->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,
|
|
|
]);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
+ /**
|
|
|
+ * @test
|
|
|
+ */
|
|
|
+ public function test_get_otp_by_posting_hotp_parameters_returns_consistent_resource()
|
|
|
+ {
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('GET', '/api/v1/twofaccounts/1')
|
|
|
- ->assertStatus(200)
|
|
|
+ ->json('POST', '/api/v1/twofaccounts/otp', self::ARRAY_OF_FULL_VALID_PARAMETERS_FOR_CUSTOM_HOTP)
|
|
|
+ ->assertOk()
|
|
|
+ ->assertJsonStructure(self::VALID_OTP_RESOURCE_STRUCTURE_FOR_HOTP)
|
|
|
->assertJsonFragment([
|
|
|
- 'isConsistent' => false,
|
|
|
+ 'otp_type' => 'hotp',
|
|
|
+ 'counter' => self::COUNTER_CUSTOM + 1,
|
|
|
]);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * test totp token generation for a given existing account via API
|
|
|
- *
|
|
|
* @test
|
|
|
*/
|
|
|
- public function testTotpTokenGenerationWithAccountId()
|
|
|
+ public function test_get_otp_by_posting_multiple_inputs_returns_bad_request()
|
|
|
{
|
|
|
- $twofaccount = factory(TwoFAccount::class)->create([
|
|
|
- 'service' => 'testService',
|
|
|
- 'account' => 'testAccount',
|
|
|
- 'uri' => 'otpauth://totp/testService:testAccount?secret=A4GRFHVVRBGY7UIW&issuer=testService'
|
|
|
- ]);
|
|
|
-
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('POST', '/api/v1/twofaccounts/otp', ['id' => $twofaccount->id])
|
|
|
- ->assertStatus(200)
|
|
|
+ ->json('POST', '/api/v1/twofaccounts/otp', [
|
|
|
+ 'uri' => self::HOTP_FULL_CUSTOM_URI,
|
|
|
+ 'key' => 'value',
|
|
|
+ ])
|
|
|
+ ->assertStatus(400)
|
|
|
->assertJsonStructure([
|
|
|
- 'token',
|
|
|
- 'totpTimestamp',
|
|
|
- 'totpPeriod',
|
|
|
+ 'message',
|
|
|
+ 'reason',
|
|
|
]);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * test hotp token generation for a given existing account via API
|
|
|
- *
|
|
|
* @test
|
|
|
*/
|
|
|
- public function testHotpTokenGenerationWithAccountId()
|
|
|
+ public function test_get_otp_using_indecipherable_twofaccount_id_returns_bad_request()
|
|
|
{
|
|
|
- $twofaccount = factory(TwoFAccount::class)->create([
|
|
|
- 'service' => 'testService',
|
|
|
- 'account' => 'testAccount',
|
|
|
- 'uri' => 'otpauth://hotp/testService:testAccount?secret=A4GRFHVVRBGY7UIW&issuer=testService&counter=1'
|
|
|
- ]);
|
|
|
+ $dbEncryptionService = resolve('App\Services\DbEncryptionService');
|
|
|
+ $dbEncryptionService->setTo(true);
|
|
|
+
|
|
|
+ $twofaccount = factory(TwoFAccount::class)->create();
|
|
|
+
|
|
|
+ DB::table('twofaccounts')
|
|
|
+ ->where('id', $twofaccount->id)
|
|
|
+ ->update([
|
|
|
+ 'secret' => '**encrypted**',
|
|
|
+ ]);
|
|
|
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('POST', '/api/v1/twofaccounts/otp', ['id' => $twofaccount->id])
|
|
|
- ->assertStatus(200)
|
|
|
+ ->json('GET', '/api/v1/twofaccounts/' . $twofaccount->id . '/otp')
|
|
|
+ ->assertStatus(400)
|
|
|
->assertJsonStructure([
|
|
|
- 'token',
|
|
|
+ 'message',
|
|
|
]);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * test token generation by providing an URI via API
|
|
|
- *
|
|
|
* @test
|
|
|
*/
|
|
|
- public function testTokenGenerationWithUri()
|
|
|
+ public function test_get_otp_using_missing_twofaccount_id_returns_not_found()
|
|
|
{
|
|
|
- $uri = 'otpauth://totp/service:account?secret=A4GRFHVVRBGY7UIW&issuer=service';
|
|
|
-
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('POST', '/api/v1/twofaccounts/otp', ['otp' => ['uri' => $uri]])
|
|
|
- ->assertStatus(200)
|
|
|
- ->assertJsonStructure([
|
|
|
- 'token',
|
|
|
- 'totpTimestamp',
|
|
|
- 'totpPeriod',
|
|
|
- ]);
|
|
|
+ ->json('GET', '/api/v1/twofaccounts/1000/otp')
|
|
|
+ ->assertNotFound();
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * test totp token generation by providing an array of otp attributes without URI via API
|
|
|
- *
|
|
|
* @test
|
|
|
*/
|
|
|
- public function testTotpTokenGenerationWithAttributesArray()
|
|
|
+ public function test_get_otp_by_posting_invalid_uri_returns_validation_error()
|
|
|
{
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('POST', '/api/v1/twofaccounts/otp', ['otp' => [
|
|
|
- 'service' => 'service',
|
|
|
- 'account' => 'account',
|
|
|
- 'otpType' => 'totp',
|
|
|
- 'secret' => 'A4GRFHVVRBGY7UIW',
|
|
|
- 'secretIsBase32Encoded' => 1,
|
|
|
- 'digits' => 6,
|
|
|
- 'totpPeriod' => 30,
|
|
|
- 'algorithm' => 'sha1',
|
|
|
- 'uri' => ''
|
|
|
- ]])
|
|
|
- ->assertStatus(200)
|
|
|
- ->assertJsonStructure([
|
|
|
- 'token',
|
|
|
- 'totpTimestamp',
|
|
|
- 'totpPeriod',
|
|
|
- ]);
|
|
|
+ ->json('POST', '/api/v1/twofaccounts/otp', [
|
|
|
+ 'uri' => self::INVALID_OTPAUTH_URI,
|
|
|
+ ])
|
|
|
+ ->assertStatus(422);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * test hotp token generation by providing an array of otp attributes without URI via API
|
|
|
- *
|
|
|
* @test
|
|
|
*/
|
|
|
- public function testHotpTokenGenerationWithAttributesArray()
|
|
|
+ public function test_get_otp_by_posting_invalid_parameters_returns_validation_error()
|
|
|
{
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('POST', '/api/v1/twofaccounts/otp', ['otp' => [
|
|
|
- 'service' => 'service',
|
|
|
- 'account' => 'account',
|
|
|
- 'otpType' => 'hotp',
|
|
|
- 'secret' => 'A4GRFHVVRBGY7UIW',
|
|
|
- 'secretIsBase32Encoded' => 1,
|
|
|
- 'digits' => 6,
|
|
|
- 'hotpCounter' => 1,
|
|
|
- 'algorithm' => 'sha1',
|
|
|
- 'uri' => ''
|
|
|
- ]])
|
|
|
- ->assertStatus(200)
|
|
|
- ->assertJsonStructure([
|
|
|
- 'token',
|
|
|
- 'hotpCounter',
|
|
|
- ]);
|
|
|
+ ->json('POST', '/api/v1/twofaccounts/otp', self::ARRAY_OF_INVALID_PARAMETERS)
|
|
|
+ ->assertStatus(422);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * test token generation by providing an array of otp attributes with a bad otp type via API
|
|
|
- *
|
|
|
* @test
|
|
|
*/
|
|
|
- public function testTokenGenerationWithBadOtptypeAttribute()
|
|
|
+ public function test_count_returns_right_number_of_twofaccount()
|
|
|
{
|
|
|
+ factory(TwoFAccount::class, 3)->create();
|
|
|
+
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('POST', '/api/v1/twofaccounts/otp', ['otp' => [
|
|
|
- 'service' => 'service',
|
|
|
- 'account' => 'account',
|
|
|
- 'otpType' => 'otp',
|
|
|
- 'secret' => 'A4GRFHVVRBGY7UIW',
|
|
|
- 'secretIsBase32Encoded' => 1,
|
|
|
- 'digits' => 6,
|
|
|
- 'totpPeriod' => 30,
|
|
|
- 'algorithm' => 'sha1',
|
|
|
- 'uri' => ''
|
|
|
- ]])
|
|
|
- ->assertStatus(422)
|
|
|
- ->assertJsonStructure([
|
|
|
- 'errors' => [
|
|
|
- 'otpType'
|
|
|
- ]
|
|
|
+ ->json('GET', '/api/v1/twofaccounts/count')
|
|
|
+ ->assertStatus(200)
|
|
|
+ ->assertExactJson([
|
|
|
+ 'count' => 3
|
|
|
]);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * test token generation by providing an array of otp attributes without secret via API
|
|
|
- *
|
|
|
* @test
|
|
|
*/
|
|
|
- public function testTokenGenerationWithMissingSecretAttribute()
|
|
|
+ public function test_withdraw_returns_success()
|
|
|
{
|
|
|
+ factory(TwoFAccount::class, 3)->create();
|
|
|
+ $ids = DB::table('twofaccounts')->pluck('id')->implode(',');
|
|
|
+
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('POST', '/api/v1/twofaccounts/otp', ['otp' => [
|
|
|
- 'service' => 'service',
|
|
|
- 'account' => 'account',
|
|
|
- 'otpType' => 'totp',
|
|
|
- 'secret' => 'A4GRFHVVRBGY7UIW',
|
|
|
- 'secretIsBase32Encoded' => 1,
|
|
|
- 'digits' => 'x',
|
|
|
- 'totpPeriod' => 'y',
|
|
|
- 'algorithm' => 'sha1',
|
|
|
- 'uri' => ''
|
|
|
- ]])
|
|
|
- ->assertStatus(422)
|
|
|
+ ->json('PATCH', '/api/v1/twofaccounts/withdraw?ids=1,2,3' . $ids)
|
|
|
+ ->assertOk()
|
|
|
->assertJsonStructure([
|
|
|
- 'errors' => [
|
|
|
- 'qrcode'
|
|
|
- ]
|
|
|
+ 'message',
|
|
|
]);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * test token generation by providing an array of bad attributes via API
|
|
|
- *
|
|
|
* @test
|
|
|
*/
|
|
|
- public function testTokenGenerationWithBadAttribute()
|
|
|
+ public function test_withdraw_too_many_ids_returns_bad_request()
|
|
|
{
|
|
|
+ factory(TwoFAccount::class, 102)->create();
|
|
|
+ $ids = DB::table('twofaccounts')->pluck('id')->implode(',');
|
|
|
+
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('POST', '/api/v1/twofaccounts/otp', ['otp' => [
|
|
|
- 'service' => 'service',
|
|
|
- 'account' => 'account',
|
|
|
- 'otpType' => 'totp',
|
|
|
- 'secret' => '',
|
|
|
- 'secretIsBase32Encoded' => 1,
|
|
|
- 'digits' => 6,
|
|
|
- 'totpPeriod' => 30,
|
|
|
- 'algorithm' => 'sha1',
|
|
|
- 'uri' => ''
|
|
|
- ]])
|
|
|
- ->assertStatus(422)
|
|
|
+ ->json('PATCH', '/api/v1/twofaccounts/withdraw?ids=' . $ids)
|
|
|
+ ->assertStatus(400)
|
|
|
->assertJsonStructure([
|
|
|
- 'errors' => [
|
|
|
- 'secret'
|
|
|
- ]
|
|
|
+ 'message',
|
|
|
+ 'reason',
|
|
|
]);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * test TwoFAccount index fetching via API
|
|
|
- *
|
|
|
* @test
|
|
|
*/
|
|
|
- public function testTwofaccountCount()
|
|
|
+ public function test_destroy_twofaccount_returns_success()
|
|
|
{
|
|
|
- $twofaccount = factory(TwoFAccount::class, 3)->create();
|
|
|
+ $twofaccount = factory(TwoFAccount::class)->create();
|
|
|
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('GET', '/api/v1/twofaccounts/count')
|
|
|
- ->assertStatus(200)
|
|
|
- ->assertJson([
|
|
|
- 'count' => 3
|
|
|
- ]
|
|
|
- );
|
|
|
+ ->json('DELETE', '/api/v1/twofaccounts/' . $twofaccount->id)
|
|
|
+ ->assertNoContent();
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * test TwoFAccount deletion via API
|
|
|
- *
|
|
|
* @test
|
|
|
*/
|
|
|
- public function testTwofaccountDeletion()
|
|
|
+ public function test_destroy_missing_twofaccount_returns_not_found()
|
|
|
{
|
|
|
$twofaccount = factory(TwoFAccount::class)->create();
|
|
|
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('DELETE', '/api/v1/twofaccounts/' . $twofaccount->id)
|
|
|
- ->assertStatus(204);
|
|
|
+ ->json('DELETE', '/api/v1/twofaccounts/1000')
|
|
|
+ ->assertNotFound();
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * test TwoFAccounts batch deletion via API
|
|
|
- *
|
|
|
* @test
|
|
|
*/
|
|
|
- public function testTwofaccountBatchDestroy()
|
|
|
+ public function test_batch_destroy_twofaccount_returns_success()
|
|
|
{
|
|
|
factory(TwoFAccount::class, 3)->create();
|
|
|
-
|
|
|
- $ids = \Illuminate\Support\Facades\DB::table('twofaccounts')->value('id');
|
|
|
+ $ids = DB::table('twofaccounts')->pluck('id')->implode(',');
|
|
|
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('DELETE', '/api/v1/twofaccounts/batch', [
|
|
|
- 'data' => $ids])
|
|
|
- ->assertStatus(204);
|
|
|
+ ->json('DELETE', '/api/v1/twofaccounts?ids=' . $ids)
|
|
|
+ ->assertNoContent();
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * test TwoFAccounts reorder
|
|
|
- *
|
|
|
* @test
|
|
|
*/
|
|
|
- public function testTwofaccountReorder()
|
|
|
+ public function test_batch_destroy_too_many_twofaccounts_returns_bad_request()
|
|
|
{
|
|
|
- factory(TwoFAccount::class, 3)->create();
|
|
|
+ factory(TwoFAccount::class, 102)->create();
|
|
|
+ $ids = DB::table('twofaccounts')->pluck('id')->implode(',');
|
|
|
|
|
|
$response = $this->actingAs($this->user, 'api')
|
|
|
- ->json('POST', '/api/v1/twofaccounts/reorder', [
|
|
|
- 'orderedIds' => [3,2,1]])
|
|
|
- ->assertStatus(200);
|
|
|
+ ->json('DELETE', '/api/v1/twofaccounts?ids=' . $ids)
|
|
|
+ ->assertStatus(400)
|
|
|
+ ->assertJsonStructure([
|
|
|
+ 'message',
|
|
|
+ 'reason',
|
|
|
+ ]);
|
|
|
}
|
|
|
|
|
|
-}
|
|
|
+}
|