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

166 lines
4.9 KiB
PHP
Raw Normal View History

2021-11-14 01:52:46 +01:00
<?php
2022-03-31 08:38:35 +02:00
namespace Tests\Feature\Http\Requests;
2021-11-14 01:52:46 +01:00
2022-03-31 08:38:35 +02:00
use App\Http\Requests\UserUpdateRequest;
2023-03-10 16:03:42 +01:00
use App\Models\User;
2021-11-14 01:52:46 +01:00
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Validator;
use Mockery;
2023-03-10 16:03:42 +01:00
use Tests\FeatureTestCase;
2021-11-14 01:52:46 +01:00
2022-03-31 08:38:35 +02:00
/**
* @covers \App\Http\Requests\UserUpdateRequest
*/
2023-03-10 16:03:42 +01:00
class UserUpdateRequestTest extends FeatureTestCase
2021-11-14 01:52:46 +01:00
{
use WithoutMiddleware;
/**
* @test
*/
public function test_user_is_authorized()
{
Auth::shouldReceive('check')
->once()
->andReturn(true);
$request = new UserUpdateRequest();
2022-11-22 15:15:52 +01:00
2021-11-14 01:52:46 +01:00
$this->assertTrue($request->authorize());
}
/**
* @dataProvider provideValidData
*/
public function test_valid_data(array $data) : void
{
/**
* @var \App\Models\User|\Illuminate\Contracts\Auth\Authenticatable
*/
$user = User::factory()->create([
2023-03-10 16:03:42 +01:00
'name' => 'Jane',
'email' => 'jane@example.com',
]);
2023-03-10 22:59:46 +01:00
$request = Mockery::mock(UserUpdateRequest::class)->makePartial();
$request->shouldReceive('user')
->andReturn($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
*/
public function provideValidData() : array
{
return [
[[
2022-11-22 15:15:52 +01:00
'name' => 'John',
'email' => 'john@example.com',
'password' => 'MyPassword',
2021-11-14 01:52:46 +01:00
]],
[[
'name' => 'John',
'email' => 'jane@example.com',
'password' => 'MyPassword',
]],
[[
'name' => 'Jane',
'email' => 'john@example.com',
'password' => 'MyPassword',
]],
2021-11-14 01:52:46 +01:00
];
}
/**
* @dataProvider provideInvalidData
*/
public function test_invalid_data(array $data) : void
2022-11-22 15:15:52 +01:00
{
/**
* @var \App\Models\User|\Illuminate\Contracts\Auth\Authenticatable
*/
$user = User::factory()->create([
2023-03-10 16:03:42 +01:00
'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);
2021-11-14 01:52:46 +01:00
$validator = Validator::make($data, $request->rules());
$this->assertTrue($validator->fails());
}
/**
* Provide invalid data for validation test
*/
public function provideInvalidData() : array
{
return [
2023-03-10 16:03:42 +01:00
[[
'name' => 'Jane',
'email' => 'bob@example.com', // unique
'password' => 'MyPassword',
]],
[[
'name' => 'Bob', // unique
'email' => 'jane@example.com',
2023-03-10 16:03:42 +01:00
'password' => 'MyPassword',
]],
2021-11-14 01:52:46 +01:00
[[
2022-11-22 15:15:52 +01:00
'name' => '', // required
'email' => 'john@example.com',
'password' => 'MyPassword',
2021-11-14 01:52:46 +01:00
]],
[[
2022-11-22 15:15:52 +01:00
'name' => 'abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz', // max:255
'email' => 'john@example.com',
'password' => 'MyPassword',
2021-11-14 01:52:46 +01:00
]],
[[
2022-11-22 15:15:52 +01:00
'name' => true, // string
'email' => 'john@example.com',
'password' => 'MyPassword',
2021-11-14 01:52:46 +01:00
]],
[[
2022-11-22 15:15:52 +01:00
'name' => 'John',
'email' => '', // required
'password' => 'MyPassword',
2021-11-14 01:52:46 +01:00
]],
[[
2022-11-22 15:15:52 +01:00
'name' => 'John',
'email' => 0, // string
'password' => 'MyPassword',
2021-11-14 01:52:46 +01:00
]],
[[
2022-11-22 15:15:52 +01:00
'name' => 'John',
'email' => 'johnexample.com', // email
'password' => 'MyPassword',
2021-11-14 01:52:46 +01:00
]],
[[
2022-11-22 15:15:52 +01:00
'name' => 'John',
'email' => 'abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz@example.com', // max:255
'password' => 'MyPassword',
2021-11-14 01:52:46 +01:00
]],
[[
2022-11-22 15:15:52 +01:00
'name' => 'John',
'email' => 'john@example.com',
'password' => '', // required
2021-11-14 01:52:46 +01:00
]],
];
}
2022-11-22 15:15:52 +01:00
}