mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-25 17:54:57 +01:00
98 lines
2.2 KiB
PHP
98 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace Tests\Api\v1\Requests;
|
|
|
|
use App\Api\v1\Requests\TwoFAccountReorderRequest;
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\Validator;
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* TwoFAccountReorderRequestTest test class
|
|
*/
|
|
#[CoversClass(TwoFAccountReorderRequest::class)]
|
|
class TwoFAccountReorderRequestTest extends TestCase
|
|
{
|
|
use WithoutMiddleware;
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function test_user_is_authorized()
|
|
{
|
|
Auth::shouldReceive('check')
|
|
->once()
|
|
->andReturn(true);
|
|
|
|
$request = new TwoFAccountReorderRequest();
|
|
|
|
$this->assertTrue($request->authorize());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
#[DataProvider('provideValidData')]
|
|
public function test_valid_data(array $data) : void
|
|
{
|
|
$request = new TwoFAccountReorderRequest();
|
|
$validator = Validator::make($data, $request->rules());
|
|
|
|
$this->assertFalse($validator->fails());
|
|
}
|
|
|
|
/**
|
|
* Provide Valid data for validation test
|
|
*/
|
|
public static function provideValidData() : array
|
|
{
|
|
return [
|
|
[[
|
|
'orderedIds' => [1, 2, 5],
|
|
]],
|
|
[[
|
|
'orderedIds' => [5],
|
|
]],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
#[DataProvider('provideInvalidData')]
|
|
public function test_invalid_data(array $data) : void
|
|
{
|
|
$request = new TwoFAccountReorderRequest();
|
|
$validator = Validator::make($data, $request->rules());
|
|
|
|
$this->assertTrue($validator->fails());
|
|
}
|
|
|
|
/**
|
|
* Provide invalid data for validation test
|
|
*/
|
|
public static function provideInvalidData() : array
|
|
{
|
|
return [
|
|
[[
|
|
'orderedIds' => [], // required
|
|
]],
|
|
[[
|
|
'orderedIds' => null, // required
|
|
]],
|
|
[[
|
|
'orderedIds' => 0, // array
|
|
]],
|
|
[[
|
|
'orderedIds' => 'string', // array
|
|
]],
|
|
[[
|
|
'orderedIds' => true, // array
|
|
]],
|
|
];
|
|
}
|
|
}
|