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

87 lines
2.1 KiB
PHP
Raw Normal View History

<?php
namespace Tests\Api\v1\Requests;
use App\Api\v1\Requests\TwoFAccountImportRequest;
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Support\Facades\Auth;
2022-11-22 15:15:52 +01:00
use Illuminate\Support\Facades\Validator;
2023-08-01 11:28:27 +02:00
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;
2022-12-09 10:52:17 +01:00
/**
2023-08-01 11:28:27 +02:00
* TwoFAccountImportRequestTest test class
2022-12-09 10:52:17 +01:00
*/
2023-08-01 11:28:27 +02:00
#[CoversClass(TwoFAccountImportRequest::class)]
class TwoFAccountImportRequestTest extends TestCase
{
use WithoutMiddleware;
#[Test]
public function test_user_is_authorized()
2022-11-22 15:15:52 +01:00
{
Auth::shouldReceive('check')
2022-12-09 10:52:17 +01:00
->once()
->andReturn(true);
2024-09-26 23:50:01 +02:00
$request = new TwoFAccountImportRequest;
2022-11-22 15:15:52 +01:00
$this->assertTrue($request->authorize());
}
#[Test]
2023-08-01 11:28:27 +02:00
#[DataProvider('provideValidData')]
2022-12-13 12:07:29 +01:00
public function test_valid_data(array $data) : void
{
2024-09-26 23:50:01 +02:00
$request = new TwoFAccountImportRequest;
$validator = Validator::make($data, $request->rules());
$this->assertFalse($validator->fails());
}
/**
* Provide Valid data for validation test
*/
2023-08-01 11:28:27 +02:00
public static function provideValidData() : array
{
return [
[[
2022-11-22 15:15:52 +01:00
'payload' => 'otpauth-migration://offline?data=AEoATACEAEYASAA',
]],
];
}
#[Test]
2023-08-01 11:28:27 +02:00
#[DataProvider('provideInvalidData')]
2022-12-13 12:07:29 +01:00
public function test_invalid_data(array $data) : void
{
2024-09-26 23:50:01 +02:00
$request = new TwoFAccountImportRequest;
$validator = Validator::make($data, $request->rules());
$this->assertTrue($validator->fails());
}
/**
* Provide invalid data for validation test
*/
2023-08-01 11:28:27 +02:00
public static function provideInvalidData() : array
{
return [
[[
2022-11-22 15:15:52 +01:00
'payload' => null, // required
]],
[[
2022-11-22 15:15:52 +01:00
'payload' => '', // required
]],
[[
2022-11-22 15:15:52 +01:00
'payload' => true, // string
]],
[[
2022-11-22 15:15:52 +01:00
'payload' => 8, // string
]],
];
}
2022-11-22 15:15:52 +01:00
}