
* fix css focuses * #90 - wip * #90 - fix to generate PDF * #90 - wip * #90 - wip * #90 - wip * #90 - wip * #90 - fix to calendar * #90 - wip * #90 - fix * #90 - fix lint * #90 - fix * Apply suggestions from code review Co-authored-by: Krzysztof Rewak <krzysztof.rewak@gmail.com> Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com> * #90 - cr fixes * #90 - fix Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl> Co-authored-by: Krzysztof Rewak <krzysztof.rewak@gmail.com> Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com>
200 lines
5.8 KiB
PHP
200 lines
5.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
use Illuminate\Support\Carbon;
|
|
use Inertia\Testing\AssertableInertia as Assert;
|
|
use Tests\FeatureTestCase;
|
|
use Toby\Domain\Enums\EmploymentForm;
|
|
use Toby\Domain\Enums\Role;
|
|
use Toby\Eloquent\Models\User;
|
|
|
|
class UserTest extends FeatureTestCase
|
|
{
|
|
use DatabaseMigrations;
|
|
|
|
public function testAdminCanSeeUsersList(): void
|
|
{
|
|
User::factory()->count(10)->create();
|
|
$admin = User::factory()->admin()->create();
|
|
|
|
$this->assertDatabaseCount("users", 11);
|
|
|
|
$this->actingAs($admin)
|
|
->get("/users")
|
|
->assertInertia(
|
|
fn(Assert $page) => $page
|
|
->component("Users/Index")
|
|
->has("users.data", 11),
|
|
);
|
|
}
|
|
|
|
public function testAdminCanSearchUsersList(): void
|
|
{
|
|
User::factory()
|
|
->hasprofile([
|
|
"first_name" => "Test",
|
|
"last_name" => "User1",
|
|
])
|
|
->create();
|
|
|
|
User::factory()
|
|
->hasProfile([
|
|
"first_name" => "Test",
|
|
"last_name" => "User2",
|
|
])->create();
|
|
|
|
User::factory()
|
|
->hasProfile([
|
|
"first_name" => "Test",
|
|
"last_name" => "User3",
|
|
])->create();
|
|
|
|
$admin = User::factory()
|
|
->hasProfile([
|
|
"first_name" => "John",
|
|
"last_name" => "Doe",
|
|
])->admin()->create();
|
|
|
|
$this->assertDatabaseCount("users", 4);
|
|
|
|
$this->actingAs($admin)
|
|
->get("/users?search=test")
|
|
->assertOk()
|
|
->assertInertia(
|
|
fn(Assert $page) => $page
|
|
->component("Users/Index")
|
|
->has("users.data", 3),
|
|
);
|
|
}
|
|
|
|
public function testUserListIsPaginated(): void
|
|
{
|
|
User::factory()->count(15)->create();
|
|
$admin = User::factory()->admin()->create();
|
|
|
|
$this->assertDatabaseCount("users", 16);
|
|
|
|
$this->actingAs($admin)
|
|
->get("/users?page=2")
|
|
->assertInertia(
|
|
fn(Assert $page) => $page
|
|
->component("Users/Index")
|
|
->has("users.data", 1),
|
|
);
|
|
}
|
|
|
|
public function testAdminCanCreateUser(): void
|
|
{
|
|
$admin = User::factory()->admin()->create();
|
|
Carbon::setTestNow(Carbon::now());
|
|
|
|
$this->actingAs($admin)
|
|
->post("/users", [
|
|
"firstName" => "John",
|
|
"lastName" => "Doe",
|
|
"role" => Role::Employee->value,
|
|
"position" => "Test position",
|
|
"email" => "john.doe@example.com",
|
|
"employmentForm" => EmploymentForm::B2bContract->value,
|
|
"employmentDate" => Carbon::now()->toDateString(),
|
|
])
|
|
->assertSessionHasNoErrors();
|
|
|
|
$user = User::query()
|
|
->where("email", "john.doe@example.com")
|
|
->first();
|
|
|
|
$this->assertDatabaseHas("users", [
|
|
"id" => $user->id,
|
|
"email" => "john.doe@example.com",
|
|
"role" => Role::Employee->value,
|
|
]);
|
|
|
|
$this->assertDatabaseHas("profiles", [
|
|
"user_id" => $user->id,
|
|
"first_name" => "John",
|
|
"last_name" => "Doe",
|
|
"position" => "Test position",
|
|
"employment_form" => EmploymentForm::B2bContract->value,
|
|
"employment_date" => Carbon::now()->toDateString(),
|
|
]);
|
|
}
|
|
|
|
public function testAdminCanEditUser(): void
|
|
{
|
|
$admin = User::factory()->admin()->create();
|
|
|
|
$user = User::factory()->create();
|
|
|
|
Carbon::setTestNow();
|
|
|
|
$this->assertDatabaseHas("profiles", [
|
|
"user_id" => $user->id,
|
|
"first_name" => $user->profile->first_name,
|
|
"last_name" => $user->profile->last_name,
|
|
"employment_form" => $user->profile->employment_form->value,
|
|
"employment_date" => $user->profile->employment_date->toDateString(),
|
|
]);
|
|
|
|
$this->actingAs($admin)
|
|
->put("/users/{$user->id}", [
|
|
"firstName" => "John",
|
|
"lastName" => "Doe",
|
|
"email" => "john.doe@example.com",
|
|
"role" => Role::Employee->value,
|
|
"position" => "Test position",
|
|
"employmentForm" => EmploymentForm::B2bContract->value,
|
|
"employmentDate" => Carbon::now()->toDateString(),
|
|
])
|
|
->assertSessionHasNoErrors();
|
|
|
|
$this->assertDatabaseHas("users", [
|
|
"id" => $user->id,
|
|
"email" => "john.doe@example.com",
|
|
"role" => Role::Employee->value,
|
|
]);
|
|
|
|
$this->assertDatabaseHas("profiles", [
|
|
"user_id" => $user->id,
|
|
"first_name" => "John",
|
|
"last_name" => "Doe",
|
|
"position" => "Test position",
|
|
"employment_form" => EmploymentForm::B2bContract->value,
|
|
"employment_date" => Carbon::now()->toDateString(),
|
|
]);
|
|
}
|
|
|
|
public function testAdminCanDeleteUser(): void
|
|
{
|
|
$admin = User::factory()->admin()->create();
|
|
|
|
$user = User::factory()->create();
|
|
|
|
$this->actingAs($admin)
|
|
->delete("/users/{$user->id}")
|
|
->assertSessionHasNoErrors();
|
|
|
|
$this->assertSoftDeleted($user);
|
|
}
|
|
|
|
public function testAdminCanRestoreUser(): void
|
|
{
|
|
$admin = User::factory()->admin()->create();
|
|
|
|
$user = User::factory()->create();
|
|
$user->delete();
|
|
|
|
$this->assertSoftDeleted($user);
|
|
|
|
$this->actingAs($admin)
|
|
->post("/users/{$user->id}/restore")
|
|
->assertSessionHasNoErrors();
|
|
|
|
$this->assertNotSoftDeleted($user);
|
|
}
|
|
}
|