mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-15 18:14:09 -08:00
50 lines
2 KiB
PHP
50 lines
2 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Feature\Companies\Api;
|
||
|
|
||
|
use App\Models\Asset;
|
||
|
use App\Models\Company;
|
||
|
use App\Models\User;
|
||
|
use Tests\Concerns\TestsPermissionsRequirement;
|
||
|
use Tests\TestCase;
|
||
|
|
||
|
class DeleteCompaniesTest extends TestCase implements TestsPermissionsRequirement
|
||
|
{
|
||
|
public function testRequiresPermission()
|
||
|
{
|
||
|
$company = Company::factory()->create();
|
||
|
|
||
|
$this->actingAsForApi(User::factory()->create())
|
||
|
->deleteJson(route('api.companies.destroy', $company))
|
||
|
->assertForbidden();
|
||
|
}
|
||
|
|
||
|
public function testCanDeleteCompany()
|
||
|
{
|
||
|
$company = Company::factory()->create();
|
||
|
|
||
|
$this->actingAsForApi(User::factory()->deleteCompanies()->create())
|
||
|
->deleteJson(route('api.companies.destroy', $company))
|
||
|
->assertStatusMessageIs('success');
|
||
|
|
||
|
$this->assertDatabaseMissing('companies', ['id' => $company->id]);
|
||
|
}
|
||
|
|
||
|
public function testCannotDeleteCompanyThatHasAssociatedItems()
|
||
|
{
|
||
|
$companyWithAssets = Company::factory()->hasAssets()->create();
|
||
|
$companyWithAccessories = Company::factory()->hasAccessories()->create();
|
||
|
$companyWithConsumables = Company::factory()->hasConsumables()->create();
|
||
|
$companyWithComponents = Company::factory()->hasComponents()->create();
|
||
|
$companyWithUsers = Company::factory()->hasUsers()->create();
|
||
|
|
||
|
$actor = $this->actingAsForApi(User::factory()->deleteCompanies()->create());
|
||
|
|
||
|
$actor->deleteJson(route('api.companies.destroy', $companyWithAssets))->assertStatusMessageIs('error');
|
||
|
$actor->deleteJson(route('api.companies.destroy', $companyWithAccessories))->assertStatusMessageIs('error');
|
||
|
$actor->deleteJson(route('api.companies.destroy', $companyWithConsumables))->assertStatusMessageIs('error');
|
||
|
$actor->deleteJson(route('api.companies.destroy', $companyWithComponents))->assertStatusMessageIs('error');
|
||
|
$actor->deleteJson(route('api.companies.destroy', $companyWithUsers))->assertStatusMessageIs('error');
|
||
|
}
|
||
|
}
|