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

84 lines
1.9 KiB
PHP
Raw Normal View History

2022-03-31 08:38:35 +02:00
<?php
namespace Tests\Feature\Http\Requests;
use App\Http\Requests\WebauthnRenameRequest;
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;
use PHPUnit\Framework\Attributes\Test;
2022-03-31 08:38:35 +02:00
use Tests\TestCase;
/**
2023-08-01 11:28:27 +02:00
* WebauthnRenameRequestTest test class
2022-03-31 08:38:35 +02:00
*/
2023-08-01 11:28:27 +02:00
#[CoversClass(WebauthnRenameRequest::class)]
2022-03-31 08:38:35 +02:00
class WebauthnRenameRequestTest extends TestCase
{
use WithoutMiddleware;
#[Test]
2022-03-31 08:38:35 +02:00
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
2024-09-26 23:50:01 +02:00
$request = new WebauthnRenameRequest;
2022-11-22 15:15:52 +01:00
2022-03-31 08:38:35 +02:00
$this->assertTrue($request->authorize());
}
#[Test]
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
{
2024-09-26 23:50:01 +02:00
$request = new WebauthnRenameRequest;
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
'name' => 'Yubikey',
2022-03-31 08:38:35 +02:00
]],
];
}
#[Test]
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
{
2024-09-26 23:50:01 +02:00
$request = new WebauthnRenameRequest;
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
'name' => '', // required
2022-03-31 08:38:35 +02:00
]],
[[
2022-11-22 15:15:52 +01:00
'name' => true, // string
2022-03-31 08:38:35 +02:00
]],
[[
2022-11-22 15:15:52 +01:00
'name' => 0, // string
2022-03-31 08:38:35 +02:00
]],
];
}
2022-11-22 15:15:52 +01:00
}