123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <?php
- namespace Tests\Feature\Http\Requests;
- use App\Http\Requests\UserPatchPwdRequest;
- use Illuminate\Foundation\Testing\WithoutMiddleware;
- use Illuminate\Support\Facades\Validator;
- use Illuminate\Support\Facades\Auth;
- use Tests\TestCase;
- /**
- * @covers \App\Http\Requests\UserPatchPwdRequest
- */
- class UserPatchPwdRequestTest extends TestCase
- {
- use WithoutMiddleware;
- /**
- * @test
- */
- public function test_user_is_authorized()
- {
- Auth::shouldReceive('check')
- ->once()
- ->andReturn(true);
- $request = new UserPatchPwdRequest();
-
- $this->assertTrue($request->authorize());
- }
- /**
- * @dataProvider provideValidData
- */
- public function test_valid_data(array $data) : void
- {
- $request = new UserPatchPwdRequest();
- $validator = Validator::make($data, $request->rules());
- $this->assertFalse($validator->fails());
- }
- /**
- * Provide Valid data for validation test
- */
- public function provideValidData() : array
- {
- return [
- [[
- 'currentPassword' => 'newPassword',
- 'password' => 'newPassword',
- 'password_confirmation' => 'newPassword',
- ]],
- ];
- }
- /**
- * @dataProvider provideInvalidData
- */
- public function test_invalid_data(array $data) : void
- {
- $request = new UserPatchPwdRequest();
- $validator = Validator::make($data, $request->rules());
- $this->assertTrue($validator->fails());
- }
- /**
- * Provide invalid data for validation test
- */
- public function provideInvalidData() : array
- {
- return [
- [[
- 'currentPassword' => '', // required
- 'password' => 'newPassword',
- 'password_confirmation' => 'newPassword',
- ]],
- [[
- 'currentPassword' => 'currentPassword',
- 'password' => '', // required
- 'password_confirmation' => 'newPassword',
- ]],
- [[
- 'currentPassword' => 'newPassword',
- 'password' => 'anotherPassword', // confirmed
- 'password_confirmation' => 'newPassword',
- ]],
- [[
- 'currentPassword' => 'pwd',
- 'password' => 'pwd', // min:8
- 'password_confirmation' => 'newPassword',
- ]],
- [[
- 'currentPassword' => 'pwd',
- 'password' => true, // string
- 'password_confirmation' => 'newPassword',
- ]],
- [[
- 'currentPassword' => 'pwd',
- 'password' => 10, // string
- 'password_confirmation' => 'newPassword',
- ]],
- ];
- }
- }
|