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

114 lines
2.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\GroupStoreRequest;
2022-11-22 15:15:52 +01:00
use App\Models\Group;
use App\Models\User;
2021-11-14 01:52:46 +01:00
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Support\Facades\Auth;
2022-11-22 15:15:52 +01:00
use Illuminate\Support\Facades\Validator;
use Mockery;
2023-08-01 11:28:27 +02:00
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\Test;
2021-11-14 01:52:46 +01:00
use Tests\FeatureTestCase;
2022-12-09 10:52:17 +01:00
/**
2023-08-01 11:28:27 +02:00
* GroupStoreRequestTest test class
2022-12-09 10:52:17 +01:00
*/
2023-08-01 11:28:27 +02:00
#[CoversClass(GroupStoreRequest::class)]
2021-11-14 01:52:46 +01:00
class GroupStoreRequestTest extends FeatureTestCase
{
use WithoutMiddleware;
2023-03-10 22:59:46 +01:00
/**
* @var \App\Models\User|\Illuminate\Contracts\Auth\Authenticatable
*/
protected $user;
2021-11-14 01:52:46 +01:00
2023-08-01 11:28:27 +02:00
const UNIQUE_GROUP_NAME = 'MyGroup';
2021-11-14 01:52:46 +01:00
public function setUp() : void
{
parent::setUp();
$this->user = User::factory()->create();
}
#[Test]
2021-11-14 01:52:46 +01:00
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 GroupStoreRequest();
2022-11-22 15:15:52 +01:00
2021-11-14 01:52:46 +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
2021-11-14 01:52:46 +01:00
{
$request = Mockery::mock(GroupStoreRequest::class)->makePartial();
$request->shouldReceive('user')
->andReturn($this->user);
2021-11-14 01:52:46 +01: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
2021-11-14 01:52:46 +01:00
{
return [
[[
2022-11-22 15:15:52 +01:00
'name' => 'validWord',
2021-11-14 01:52:46 +01:00
]],
];
}
#[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
2021-11-14 01:52:46 +01:00
{
$group = Group::factory()->for($this->user)->create([
2023-08-01 11:28:27 +02:00
'name' => self::UNIQUE_GROUP_NAME,
2021-11-14 01:52:46 +01:00
]);
$request = Mockery::mock(GroupStoreRequest::class)->makePartial();
$request->shouldReceive('user')
->andReturn($this->user);
2021-11-14 01:52:46 +01: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
2021-11-14 01:52:46 +01:00
{
return [
[[
2022-11-22 15:15:52 +01:00
'name' => '', // required
2021-11-14 01:52:46 +01:00
]],
[[
2022-11-22 15:15:52 +01:00
'name' => true, // string
2021-11-14 01:52:46 +01:00
]],
[[
2022-11-22 15:15:52 +01:00
'name' => 'mmmmmmoooooorrrrrreeeeeeettttttthhhhhhaaaaaaannnnnn32cccccchhhhhaaaaaarrrrrrsssssss', // max:32
2021-11-14 01:52:46 +01:00
]],
[[
2023-08-01 11:28:27 +02:00
'name' => self::UNIQUE_GROUP_NAME, // unique
2021-11-14 01:52:46 +01:00
]],
];
}
2022-11-22 15:15:52 +01:00
}