123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- <?php
- namespace Tests\Feature\Http\Requests;
- use App\Http\Requests\UserUpdateRequest;
- use App\Models\User;
- use Illuminate\Foundation\Testing\WithoutMiddleware;
- use Illuminate\Support\Facades\Auth;
- use Illuminate\Support\Facades\Validator;
- use Mockery;
- use PHPUnit\Framework\Attributes\CoversClass;
- use PHPUnit\Framework\Attributes\DataProvider;
- use PHPUnit\Framework\Attributes\Test;
- use Tests\FeatureTestCase;
- /**
- * UserUpdateRequestTest test class
- */
- #[CoversClass(UserUpdateRequest::class)]
- class UserUpdateRequestTest extends FeatureTestCase
- {
- use WithoutMiddleware;
- #[Test]
- public function test_user_is_authorized()
- {
- Auth::shouldReceive('check')
- ->once()
- ->andReturn(true);
- $request = new UserUpdateRequest();
- $this->assertTrue($request->authorize());
- }
- #[Test]
- #[DataProvider('provideValidData')]
- public function test_valid_data(array $data) : void
- {
- /**
- * @var \App\Models\User|\Illuminate\Contracts\Auth\Authenticatable
- */
- $user = User::factory()->create([
- 'name' => 'Jane',
- 'email' => 'jane@example.com',
- ]);
- $request = Mockery::mock(UserUpdateRequest::class)->makePartial();
- $request->shouldReceive('user')
- ->andReturn($user);
- $validator = Validator::make($data, $request->rules());
- $this->assertFalse($validator->fails());
- }
- /**
- * Provide Valid data for validation test
- */
- public static function provideValidData() : array
- {
- return [
- [[
- 'name' => 'John',
- 'email' => 'john@example.com',
- 'password' => 'MyPassword',
- ]],
- [[
- 'name' => 'John',
- 'email' => 'jane@example.com',
- 'password' => 'MyPassword',
- ]],
- [[
- 'name' => 'Jane',
- 'email' => 'john@example.com',
- 'password' => 'MyPassword',
- ]],
- ];
- }
- #[Test]
- #[DataProvider('provideInvalidData')]
- public function test_invalid_data(array $data) : void
- {
- /**
- * @var \App\Models\User|\Illuminate\Contracts\Auth\Authenticatable
- */
- $user = User::factory()->create([
- 'name' => 'Jane',
- 'email' => 'jane@example.com',
- ]);
- User::factory()->create([
- 'name' => 'Bob',
- 'email' => 'bob@example.com',
- ]);
- $request = Mockery::mock(UserUpdateRequest::class)->makePartial();
- $request->shouldReceive('user')
- ->andReturn($user);
- $validator = Validator::make($data, $request->rules());
- $this->assertTrue($validator->fails());
- }
- /**
- * Provide invalid data for validation test
- */
- public static function provideInvalidData() : array
- {
- return [
- [[
- 'name' => 'Jane',
- 'email' => 'bob@example.com', // unique
- 'password' => 'MyPassword',
- ]],
- [[
- 'name' => 'Bob', // unique
- 'email' => 'jane@example.com',
- 'password' => 'MyPassword',
- ]],
- [[
- 'name' => '', // required
- 'email' => 'john@example.com',
- 'password' => 'MyPassword',
- ]],
- [[
- 'name' => 'abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz', // max:255
- 'email' => 'john@example.com',
- 'password' => 'MyPassword',
- ]],
- [[
- 'name' => true, // string
- 'email' => 'john@example.com',
- 'password' => 'MyPassword',
- ]],
- [[
- 'name' => 'John',
- 'email' => '', // required
- 'password' => 'MyPassword',
- ]],
- [[
- 'name' => 'John',
- 'email' => 0, // string
- 'password' => 'MyPassword',
- ]],
- [[
- 'name' => 'John',
- 'email' => 'johnexample.com', // email
- 'password' => 'MyPassword',
- ]],
- [[
- 'name' => 'John',
- 'email' => 'abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz@example.com', // max:255
- 'password' => 'MyPassword',
- ]],
- [[
- 'name' => 'John',
- 'email' => 'john@example.com',
- 'password' => '', // required
- ]],
- ];
- }
- }
|