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->taskRequest = array_merge($this->task->toArray(), [ 'users' => [UserFactory::create()->id], ]); $this->taskRequestWithMultipleUsers = array_merge($this->task->toArray(), [ 'users' => [ UserFactory::create()->id, UserFactory::create()->id, UserFactory::create()->id, ], ]); $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_edit_without_user(): void { $this->task->users = $this->taskRequest['users'] = []; $response = $this->actingAs($this->admin)->postJson(self::URI, $this->taskRequest); $response->assertSuccess(); $response->assertJson(['res' => $this->task->toArray()]); $this->assertDatabaseHas('tasks', ['id' => $this->task->id]); } public function test_edit_as_admin(): void { $this->task->description = $this->taskRequest['description'] = $this->faker->text; $response = $this->actingAs($this->admin)->postJson(self::URI, $this->taskRequest); $response->assertOk(); $response->assertJson(['res' => $this->task->toArray()]); $this->assertDatabaseHas('tasks', ['id' => $this->task->id, 'description' => $this->taskRequest['description']]); foreach ($this->taskRequest['users'] as $user) { $this->assertDatabaseHas('tasks_users', [ 'task_id' => $response->json()['res']['id'], 'user_id' => $user, ]); } } public function test_edit_with_multiple_users_as_admin(): void { $this->task->description = $this->taskRequestWithMultipleUsers['description'] = $this->faker->text; $response = $this->actingAs($this->admin)->postJson(self::URI, $this->taskRequestWithMultipleUsers); $response->assertOk(); $response->assertJson(['res' => $this->task->toArray()]); $this->assertDatabaseHas('tasks', ['id' => $this->task->id, 'description' => $this->taskRequestWithMultipleUsers['description']]); foreach ($this->taskRequestWithMultipleUsers['users'] as $user) { $this->assertDatabaseHas('tasks_users', [ 'task_id' => $response->json()['res']['id'], 'user_id' => $user, ]); } } public function test_edit_as_manager(): void { $this->task->description = $this->taskRequest['description'] = $this->faker->text; $response = $this->actingAs($this->manager)->postJson(self::URI, $this->taskRequest); $response->assertOk(); $response->assertJson(['res' => $this->task->toArray()]); $this->assertDatabaseHas('tasks', ['id' => $this->task->id, 'description' => $this->taskRequest['description']]); foreach ($this->taskRequest['users'] as $user) { $this->assertDatabaseHas('tasks_users', [ 'task_id' => $response->json()['res']['id'], 'user_id' => $user, ]); } } public function test_edit_with_multiple_users_as_manager(): void { $this->task->description = $this->taskRequestWithMultipleUsers['description'] = $this->faker->text; $response = $this->actingAs($this->manager)->postJson(self::URI, $this->taskRequestWithMultipleUsers); $response->assertOk(); $response->assertJson(['res' => $this->task->toArray()]); $this->assertDatabaseHas('tasks', ['id' => $this->task->id, 'description' => $this->taskRequestWithMultipleUsers['description']]); foreach ($this->taskRequestWithMultipleUsers['users'] as $user) { $this->assertDatabaseHas('tasks_users', [ 'task_id' => $response->json()['res']['id'], 'user_id' => $user, ]); } } public function test_edit_as_auditor(): void { $this->task->description = $this->taskRequest['description'] = $this->faker->text; $response = $this->actingAs($this->auditor)->postJson(self::URI, $this->taskRequest); $response->assertForbidden(); } public function test_edit_as_user(): void { $this->task->description = $this->taskRequest['description'] = $this->faker->text; $response = $this->actingAs($this->user)->postJson(self::URI, $this->taskRequest); $response->assertForbidden(); } public function test_edit_as_project_manager(): void { $this->task->description = $this->taskRequest['description'] = $this->faker->text; $response = $this->actingAs($this->projectManager)->postJson(self::URI, $this->taskRequest); $response->assertOk(); $response->assertJson(['res' => $this->task->toArray()]); $this->assertDatabaseHas('tasks', ['id' => $this->task->id, 'description' => $this->taskRequest['description']]); foreach ($this->taskRequest['users'] as $user) { $this->assertDatabaseHas('tasks_users', [ 'task_id' => $response->json()['res']['id'], 'user_id' => $user, ]); } } public function test_edit_with_multiple_users_as_project_manager(): void { $this->task->description = $this->taskRequestWithMultipleUsers['description'] = $this->faker->text; $response = $this->actingAs($this->projectManager)->postJson(self::URI, $this->taskRequestWithMultipleUsers); $response->assertOk(); $response->assertJson(['res' => $this->task->toArray()]); $this->assertDatabaseHas('tasks', ['id' => $this->task->id, 'description' => $this->taskRequestWithMultipleUsers['description']]); foreach ($this->taskRequestWithMultipleUsers['users'] as $user) { $this->assertDatabaseHas('tasks_users', [ 'task_id' => $response->json()['res']['id'], 'user_id' => $user, ]); } } public function test_edit_as_project_auditor(): void { $this->task->description = $this->taskRequest['description'] = $this->faker->text; $response = $this->actingAs($this->projectAuditor)->postJson(self::URI, $this->taskRequest); $response->assertForbidden(); } public function test_edit_as_project_project_user(): void { $this->task->description = $this->taskRequest['description'] = $this->faker->text; $response = $this->actingAs($this->projectUser)->postJson(self::URI, $this->taskRequest); $response->assertForbidden(); } public function test_edit_not_existing(): void { $this->taskRequest['id'] = Task::withoutGlobalScopes()->count() + 20; $response = $this->actingAs($this->admin)->postJson(self::URI, $this->taskRequest); $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(); } }