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

174 lines
4.7 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\TwoFAccountStoreRequest;
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\TwoFAccountStoreRequest
* @covers \App\Rules\IsBase32Encoded
*/
2021-11-14 01:52:46 +01:00
class TwoFAccountStoreRequestTest 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 TwoFAccountStoreRequest();
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 TwoFAccountStoreRequest();
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' => null,
2021-11-14 01:52:46 +01:00
'algorithm' => null,
2022-11-22 15:15:52 +01:00
'counter' => null,
2021-11-14 01:52:46 +01:00
]],
[[
2022-11-22 15:15:52 +01:00
'account' => 'MyAccount',
2021-11-14 01:52:46 +01:00
'otp_type' => 'totp',
]],
[[
2022-11-22 15:15:52 +01:00
'account' => 'MyAccount',
'otp_type' => 'totp',
2021-11-14 01:52:46 +01:00
'algorithm' => 'sha256',
]],
[[
2022-11-22 15:15:52 +01:00
'account' => 'MyAccount',
'otp_type' => 'totp',
2021-11-14 01:52:46 +01:00
'algorithm' => 'sha512',
]],
[[
2022-11-22 15:15:52 +01:00
'account' => 'MyAccount',
'otp_type' => 'totp',
2021-11-14 01:52:46 +01:00
'algorithm' => 'md5',
]],
];
}
/**
* @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 TwoFAccountStoreRequest();
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
'account' => 'My:Account',
2021-11-14 01:52:46 +01:00
'otp_type' => 'totp',
]],
[[
2022-11-22 15:15:52 +01:00
'account' => 'MyAccount',
2021-11-14 01:52:46 +01:00
'otp_type' => 'Xotp',
]],
[[
2022-11-22 15:15:52 +01:00
'account' => 'MyAccount',
2021-11-14 01:52:46 +01:00
'otp_type' => null,
]],
[[
2022-11-22 15:15:52 +01:00
'account' => 'MyAccount',
2021-11-14 01:52:46 +01:00
'otp_type' => 'totp',
2022-11-22 15:15:52 +01:00
'service' => 'My:Service',
2021-11-14 01:52:46 +01:00
]],
[[
2022-11-22 15:15:52 +01:00
'account' => 'MyAccount',
2021-11-14 01:52:46 +01:00
'otp_type' => 'totp',
2022-11-22 15:15:52 +01:00
'secret' => 'notaBase32String',
2021-11-14 01:52:46 +01:00
]],
[[
2022-11-22 15:15:52 +01:00
'account' => 'MyAccount',
2021-11-14 01:52:46 +01:00
'otp_type' => 'totp',
2022-11-22 15:15:52 +01:00
'secret' => 123456,
2021-11-14 01:52:46 +01:00
]],
[[
2022-11-22 15:15:52 +01:00
'account' => 'MyAccount',
2021-11-14 01:52:46 +01:00
'otp_type' => 'totp',
2022-11-22 15:15:52 +01:00
'digits' => 4,
2021-11-14 01:52:46 +01:00
]],
[[
2022-11-22 15:15:52 +01:00
'account' => 'MyAccount',
2021-11-14 01:52:46 +01:00
'otp_type' => 'totp',
2022-11-22 15:15:52 +01:00
'digits' => 11,
2021-11-14 01:52:46 +01:00
]],
[[
2022-11-22 15:15:52 +01:00
'account' => 'MyAccount',
2021-11-14 01:52:46 +01:00
'otp_type' => 'totp',
2022-11-22 15:15:52 +01:00
'period' => 0,
2021-11-14 01:52:46 +01:00
]],
[[
2022-11-22 15:15:52 +01:00
'account' => 'MyAccount',
2021-11-14 01:52:46 +01:00
'otp_type' => 'hotp',
2022-11-22 15:15:52 +01:00
'counter' => -1,
2021-11-14 01:52:46 +01:00
]],
[[
2022-11-22 15:15:52 +01:00
'account' => 'MyAccount',
'otp_type' => 'totp',
2021-11-14 01:52:46 +01:00
'algorithm' => 'shaX',
]],
];
}
2022-11-22 15:15:52 +01:00
}