Files
cattr/tests/Feature/Tasks/RemoveTest.php
Noor E Ilahi 7ccf44f7da first commit
2026-01-09 12:54:53 +05:30

133 lines
4.0 KiB
PHP

<?php
namespace Tests\Feature\Tasks;
use App\Models\Task;
use App\Models\User;
use Tests\Facades\TaskFactory;
use Tests\Facades\UserFactory;
use Tests\TestCase;
class RemoveTest extends TestCase
{
private const URI = 'tasks/remove';
/** @var User $admin */
private User $admin;
/** @var User $manager */
private User $manager;
/** @var User $auditor */
private User $auditor;
/** @var User $user */
private User $user;
/** @var User $projectManager */
private User $projectManager;
/** @var User $projectAuditor */
private User $projectAuditor;
/** @var User $projectUser */
private User $projectUser;
/** @var Task $task */
private Task $task;
protected function setUp(): void
{
parent::setUp();
$this->admin = UserFactory::refresh()->asAdmin()->withTokens()->create();
$this->manager = UserFactory::refresh()->asManager()->withTokens()->create();
$this->auditor = UserFactory::refresh()->asAuditor()->withTokens()->create();
$this->user = UserFactory::refresh()->asUser()->withTokens()->create();
$this->task = TaskFactory::create();
$this->projectManager = UserFactory::refresh()->asUser()->withTokens()->create();
$this->projectManager->projects()->attach($this->task->project_id, ['role_id' => 1]);
$this->projectAuditor = UserFactory::refresh()->asUser()->withTokens()->create();
$this->projectAuditor->projects()->attach($this->task->project_id, ['role_id' => 3]);
$this->projectUser = UserFactory::refresh()->asUser()->withTokens()->create();
$this->projectUser->projects()->attach($this->task->project_id, ['role_id' => 2]);
}
public function test_remove_as_admin(): void
{
$this->assertDatabaseHas('tasks', ['id' => $this->task->id]);
$response = $this->actingAs($this->admin)->postJson(self::URI, $this->task->only('id'));
$response->assertOk();
$this->assertSoftDeleted('tasks', $this->task->only('id'));
}
public function test_remove_as_manager(): void
{
$this->assertDatabaseHas('tasks', ['id' => $this->task->id]);
$response = $this->actingAs($this->manager)->postJson(self::URI, $this->task->only('id'));
$response->assertOk();
$this->assertSoftDeleted('tasks', $this->task->only('id'));
}
public function test_remove_as_auditor(): void
{
$this->assertDatabaseHas('tasks', ['id' => $this->task->id]);
$response = $this->actingAs($this->auditor)->postJson(self::URI, $this->task->only('id'));
$response->assertForbidden();
}
public function test_remove_as_project_manager(): void
{
$this->assertDatabaseHas('tasks', ['id' => $this->task->id]);
$response = $this->actingAs($this->projectManager)->postJson(self::URI, $this->task->only('id'));
$response->assertOk();
$this->assertSoftDeleted('tasks', $this->task->only('id'));
}
public function test_remove_as_project_auditor(): void
{
$this->assertDatabaseHas('tasks', ['id' => $this->task->id]);
$response = $this->actingAs($this->projectAuditor)->postJson(self::URI, $this->task->only('id'));
$response->assertForbidden();
}
public function test_remove_as_project_user(): void
{
$this->assertDatabaseHas('tasks', ['id' => $this->task->id]);
$response = $this->actingAs($this->projectUser)->postJson(self::URI, $this->task->only('id'));
$response->assertForbidden();
}
public function test_remove_not_existing(): void
{
$response = $this->actingAs($this->admin)->postJson(self::URI);
$response->assertValidationError();
}
public function test_unauthorized(): void
{
$response = $this->postJson(self::URI);
$response->assertUnauthorized();
}
public function test_without_params(): void
{
$response = $this->actingAs($this->admin)->postJson(self::URI);
$response->assertValidationError();
}
}