2FAuth/tests/Feature/Http/Requests/UserDeleteRequestTest.php

89 lines
2.0 KiB
PHP
Raw Normal View History

2022-03-31 08:38:35 +02:00
<?php
namespace Tests\Feature\Http\Requests;
use App\Http\Requests\UserDeleteRequest;
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Validator;
2023-08-01 11:28:27 +02:00
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\DataProvider;
2022-03-31 08:38:35 +02:00
use Tests\FeatureTestCase;
/**
2023-08-01 11:28:27 +02:00
* UserDeleteRequestTest test class
2022-03-31 08:38:35 +02:00
*/
2023-08-01 11:28:27 +02:00
#[CoversClass(UserDeleteRequest::class)]
2022-03-31 08:38:35 +02:00
class UserDeleteRequestTest extends FeatureTestCase
{
use WithoutMiddleware;
/**
* @test
*/
public function test_user_is_authorized()
{
Auth::shouldReceive('check')
2023-12-20 16:55:58 +01:00
->once()
->andReturn(true);
2022-03-31 08:38:35 +02:00
$request = new UserDeleteRequest();
2022-11-22 15:15:52 +01:00
2022-03-31 08:38:35 +02:00
$this->assertTrue($request->authorize());
}
/**
2023-08-01 11:28:27 +02:00
* @test
2022-03-31 08:38:35 +02:00
*/
2023-08-01 11:28:27 +02:00
#[DataProvider('provideValidData')]
2022-03-31 08:38:35 +02:00
public function test_valid_data(array $data) : void
{
2022-11-22 15:15:52 +01:00
$request = new UserDeleteRequest();
2022-03-31 08:38:35 +02:00
$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
2022-03-31 08:38:35 +02:00
{
return [
[[
2022-11-22 15:15:52 +01:00
'password' => 'Yubikey',
2022-03-31 08:38:35 +02:00
]],
];
}
/**
2023-08-01 11:28:27 +02:00
* @test
2022-03-31 08:38:35 +02:00
*/
2023-08-01 11:28:27 +02:00
#[DataProvider('provideInvalidData')]
2022-03-31 08:38:35 +02:00
public function test_invalid_data(array $data) : void
2022-11-22 15:15:52 +01:00
{
$request = new UserDeleteRequest();
2022-03-31 08:38:35 +02:00
$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
2022-03-31 08:38:35 +02:00
{
return [
[[
2022-11-22 15:15:52 +01:00
'password' => '', // required
2022-03-31 08:38:35 +02:00
]],
[[
2022-11-22 15:15:52 +01:00
'password' => true, // string
2022-03-31 08:38:35 +02:00
]],
[[
2022-11-22 15:15:52 +01:00
'password' => 0, // string
2022-03-31 08:38:35 +02:00
]],
];
}
2022-11-22 15:15:52 +01:00
}