2FAuth/tests/Api/v1/Requests/TwoFAccountUpdateRequestTest.php

225 lines
6.8 KiB
PHP
Raw Normal View History

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