-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests for delete departments endpoint
- Loading branch information
1 parent
3105f53
commit 38b9f4a
Showing
3 changed files
with
70 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<?php | ||
|
||
namespace Tests\Feature\Departments\Api; | ||
|
||
use App\Models\Company; | ||
use App\Models\Department; | ||
use App\Models\User; | ||
use Tests\Concerns\TestsMultipleFullCompanySupport; | ||
use Tests\Concerns\TestsPermissionsRequirement; | ||
use Tests\TestCase; | ||
|
||
class DeleteDepartmentTest extends TestCase implements TestsMultipleFullCompanySupport, TestsPermissionsRequirement | ||
{ | ||
|
||
public function testRequiresPermission() | ||
{ | ||
$department = Department::factory()->create(); | ||
|
||
$this->actingAsForApi(User::factory()->create()) | ||
->deleteJson(route('api.departments.destroy', $department)) | ||
->assertForbidden(); | ||
} | ||
|
||
public function testCanDeleteDepartment() | ||
{ | ||
$department = Department::factory()->create(); | ||
|
||
$this->actingAsForApi(User::factory()->deleteDepartments()->create()) | ||
->deleteJson(route('api.departments.destroy', $department)) | ||
->assertStatusMessageIs('success'); | ||
|
||
$this->assertDatabaseMissing('departments', ['id' => $department->id]); | ||
} | ||
|
||
public function testAdheresToMultipleFullCompanySupportScoping() | ||
{ | ||
[$companyA, $companyB] = Company::factory()->count(2)->create(); | ||
|
||
$departmentA = Department::factory()->for($companyA)->create(); | ||
$departmentB = Department::factory()->for($companyB)->create(); | ||
$departmentC = Department::factory()->for($companyB)->create(); | ||
|
||
$superUser = $companyA->users()->save(User::factory()->superuser()->make()); | ||
$userInCompanyA = $companyA->users()->save(User::factory()->deleteDepartments()->make()); | ||
$userInCompanyB = $companyB->users()->save(User::factory()->deleteDepartments()->make()); | ||
|
||
$this->settings->enableMultipleFullCompanySupport(); | ||
|
||
$this->actingAsForApi($userInCompanyA) | ||
->deleteJson(route('api.departments.destroy', $departmentB)) | ||
->assertStatusMessageIs('error'); | ||
|
||
$this->actingAsForApi($userInCompanyB) | ||
->deleteJson(route('api.departments.destroy', $departmentA)) | ||
->assertStatusMessageIs('error'); | ||
|
||
$this->actingAsForApi($superUser) | ||
->deleteJson(route('api.departments.destroy', $departmentC)) | ||
->assertStatusMessageIs('success'); | ||
|
||
$this->assertNotNull($departmentA->fresh(), 'Department unexpectedly deleted'); | ||
$this->assertNotNull($departmentB->fresh(), 'Department unexpectedly deleted'); | ||
$this->assertNull($departmentC->fresh(), 'Department was not deleted'); | ||
} | ||
} |