Files
backend/tests/Feature/V3/Profile/ChangePasswordTest.php

181 lines
5.2 KiB
PHP

<?php
namespace Tests\Feature\V3\Profile;
use App\Models\User;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\WithFaker;
use Tests\TestCase;
class ChangePasswordTest extends TestCase
{
use RefreshDatabase, WithFaker;
public function test_current_password_is_required()
{
$user = User::factory()->create();
$this->actingAs($user);
$response = $this->postJson(route('v3.profile.changePassword'));
$response->assertUnprocessable()
->assertInvalid([
'current_password' => __('validation.required', ['attribute' => 'رمز عبور فعلی'])
]);
}
public function test_current_password_should_be_string()
{
$user = User::factory()->create();
$this->actingAs($user);
$response = $this->postJson(route('v3.profile.changePassword'), [
'current_password' => $this->faker->numberBetween(1, 10)
]);
$response->assertUnprocessable()
->assertInvalid([
'current_password' => __('validation.string', ['attribute' => 'رمز عبور فعلی'])
]);
}
public function test_current_password_should_match_the_regex()
{
$user = User::factory()->create();
$this->actingAs($user);
$response = $this->postJson(route('v3.profile.changePassword'), [
'current_password' => $this->faker->numberBetween(10000000, 99999999)
]);
$response->assertUnprocessable()
->assertInvalid([
'current_password' => __('validation.regex', ['attribute' => 'رمز عبور فعلی'])
]);
}
public function test_current_password_should_have_at_least_8_characters()
{
$user = User::factory()->create();
$this->actingAs($user);
$response = $this->postJson(route('v3.profile.changePassword'), [
'current_password' => $this->faker->numerify()
]);
$response->assertUnprocessable()
->assertInvalid([
'current_password' => __('validation.min.string', ['attribute' => 'رمز عبور فعلی', 'min' => 8])
]);
}
public function test_new_password_is_required()
{
$user = User::factory()->create();
$this->actingAs($user);
$response = $this->postJson(route('v3.profile.changePassword'));
$response->assertUnprocessable()
->assertInvalid([
'new_password' => __('validation.required', ['attribute' => 'رمز عبور جدید'])
]);
}
public function test_new_password_should_be_string()
{
$user = User::factory()->create();
$this->actingAs($user);
$response = $this->postJson(route('v3.profile.changePassword'), [
'new_password' => $this->faker->numberBetween(1, 10)
]);
$response->assertUnprocessable()
->assertInvalid([
'new_password' => __('validation.string', ['attribute' => 'رمز عبور جدید'])
]);
}
public function test_new_password_should_match_the_regex()
{
$user = User::factory()->create();
$this->actingAs($user);
$response = $this->postJson(route('v3.profile.changePassword'), [
'new_password' => $this->faker->numberBetween(10000000, 99999999)
]);
$response->assertUnprocessable()
->assertInvalid([
'new_password' => __('validation.regex', ['attribute' => 'رمز عبور جدید'])
]);
}
public function test_new_password_should_have_at_least_8_characters()
{
$user = User::factory()->create();
$this->actingAs($user);
$response = $this->postJson(route('v3.profile.changePassword'), [
'new_password' => $this->faker->numerify()
]);
$response->assertUnprocessable()
->assertInvalid([
'new_password' => __('validation.min.string', ['attribute' => 'رمز عبور جدید', 'min' => 8])
]);
}
public function test_can_not_change_the_password_of_the_user_with_wrong_current_password(): void
{
$this->withoutExceptionHandling();
$user = User::factory()->create();
$this->actingAs($user);
$password = $this->faker->numerify('#a######');
$response = $this->post(route('v3.profile.changePassword'), [
'current_password' => 'fake1234',
'new_password' => $password,
]);
$response->assertStatus(422);
$response->assertExactJson([
'message' => __('messages.incorrect_current_password'),
"type" => "logical_exception"
]);
}
public function test_user_can_change_the_password(): void
{
$this->withoutExceptionHandling();
$user = User::factory()->create();
$this->actingAs($user);
$response = $this->post(route('v3.profile.changePassword'), [
'current_password' => 'password1234',
'new_password' => $this->faker->numerify('#a######'),
]);
$response->assertStatus(200);
$response->assertExactJson([
'message' => __('messages.successful')
]);
}
}