123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- <?php
- namespace Tests\Api\v1\Requests;
- use App\Api\v1\Requests\TwoFAccountUpdateRequest;
- use Illuminate\Foundation\Testing\WithoutMiddleware;
- use Illuminate\Support\Facades\Auth;
- use Illuminate\Support\Facades\Validator;
- use Tests\TestCase;
- /**
- * @covers \App\Api\v1\Requests\TwoFAccountUpdateRequest
- * @covers \App\Rules\IsBase32Encoded
- */
- class TwoFAccountUpdateRequestTest extends TestCase
- {
- use WithoutMiddleware;
- /**
- * @test
- */
- public function test_user_is_authorized()
- {
- Auth::shouldReceive('check')
- ->once()
- ->andReturn(true);
- $request = new TwoFAccountUpdateRequest();
- $this->assertTrue($request->authorize());
- }
- /**
- * @dataProvider provideValidData
- */
- public function test_valid_data(array $data): void
- {
- $request = new TwoFAccountUpdateRequest();
- $validator = Validator::make($data, $request->rules());
- $this->assertFalse($validator->fails());
- }
- /**
- * Provide Valid data for validation test
- */
- public function provideValidData(): array
- {
- return [
- [[
- 'service' => 'MyService',
- 'account' => 'MyAccount',
- 'icon' => 'icon.png',
- 'otp_type' => 'totp',
- 'secret' => 'A4GRFHZVRBGY7UIW',
- 'digits' => 6,
- 'algorithm' => 'sha1',
- 'period' => 30,
- ]],
- [[
- 'service' => 'MyService',
- 'account' => 'MyAccount',
- 'icon' => 'icon.png',
- 'otp_type' => 'hotp',
- 'secret' => 'A4GRFHZVRBGY7UIW',
- 'digits' => 8,
- 'algorithm' => 'sha1',
- 'counter' => 10,
- ]],
- [[
- 'service' => null,
- 'account' => 'MyAccount',
- 'icon' => null,
- 'otp_type' => 'hotp',
- 'secret' => 'A4GRFHZVRBGY7UIW',
- 'digits' => 10,
- 'algorithm' => 'sha1',
- 'period' => null,
- 'counter' => 15,
- ]],
- ];
- }
- /**
- * @dataProvider provideInvalidData
- */
- public function test_invalid_data(array $data): void
- {
- $request = new TwoFAccountUpdateRequest();
- $validator = Validator::make($data, $request->rules());
- $this->assertTrue($validator->fails());
- }
- /**
- * Provide invalid data for validation test
- */
- public function provideInvalidData(): array
- {
- return [
- [[
- 'service' => null,
- 'account' => 'My:Account',
- 'icon' => null,
- 'otp_type' => 'hotp',
- 'secret' => 'A4GRFHZVRBGY7UIW',
- 'digits' => 6,
- 'algorithm' => 'sha1',
- 'period' => null,
- 'counter' => 15,
- ]],
- [[
- 'service' => 'My:Service',
- 'account' => 'MyAccount',
- 'icon' => null,
- 'otp_type' => 'hotp',
- 'secret' => 'A4GRFHZVRBGY7UIW',
- 'digits' => 6,
- 'algorithm' => 'sha1',
- 'period' => null,
- 'counter' => 15,
- ]],
- [[
- 'service' => null,
- 'account' => 'My:Account',
- 'icon' => null,
- 'otp_type' => 'Xotp',
- 'secret' => 'A4GRFHZVRBGY7UIW',
- 'digits' => 6,
- 'algorithm' => 'sha1',
- 'period' => null,
- 'counter' => 15,
- ]],
- [[
- 'service' => null,
- 'account' => 'MyAccount',
- 'icon' => null,
- 'otp_type' => 'hotp',
- 'secret' => 'notaBase32String',
- 'digits' => 6,
- 'algorithm' => 'sha1',
- 'period' => null,
- 'counter' => 15,
- ]],
- [[
- 'service' => 'MyService',
- 'account' => 'MyAccount',
- 'icon' => null,
- 'otp_type' => 'totp',
- 'secret' => 'A4GRFHZVRBGY7UIW',
- 'digits' => 4,
- 'algorithm' => 'sha1',
- 'period' => null,
- 'counter' => 15,
- ]],
- [[
- 'service' => 'MyService',
- 'account' => 'MyAccount',
- 'icon' => null,
- 'otp_type' => 'totp',
- 'secret' => 'A4GRFHZVRBGY7UIW',
- 'digits' => 11,
- 'algorithm' => 'sha1',
- 'period' => null,
- 'counter' => 15,
- ]],
- [[
- 'service' => 'MyService',
- 'account' => 'MyAccount',
- 'icon' => null,
- 'otp_type' => 'totp',
- 'secret' => 'A4GRFHZVRBGY7UIW',
- 'digits' => 6,
- 'algorithm' => 'Xsha1',
- 'period' => null,
- 'counter' => 15,
- ]],
- [[
- 'service' => 'MyService',
- 'account' => 'MyAccount',
- 'icon' => null,
- 'otp_type' => 'totp',
- 'secret' => 'A4GRFHZVRBGY7UIW',
- 'digits' => 6,
- 'algorithm' => 'sha1',
- 'period' => 0,
- 'counter' => 15,
- ]],
- [[
- 'service' => 'MyService',
- 'account' => 'MyAccount',
- 'icon' => null,
- 'otp_type' => 'totp',
- 'secret' => 'A4GRFHZVRBGY7UIW',
- 'digits' => 4,
- 'algorithm' => 'sha1',
- 'period' => null,
- 'counter' => -1,
- ]],
- [[
- 'service' => 'MyService',
- 'account' => 'MyAccount',
- 'icon' => null,
- 'otp_type' => 'totp',
- 'secret' => 'A4GRFHZVRBGY7UIW',
- 'digits' => null,
- 'algorithm' => 'sha1',
- 'period' => null,
- 'counter' => 15,
- ]],
- [[
- 'service' => 'MyService',
- 'account' => 'MyAccount',
- 'icon' => null,
- 'otp_type' => 'totp',
- 'secret' => 'A4GRFHZVRBGY7UIW',
- 'digits' => 6,
- 'algorithm' => null,
- 'period' => null,
- 'counter' => 15,
- ]],
- ];
- }
- }
|