mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-15 01:54:09 -08:00
76 lines
2.7 KiB
PHP
76 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature\Accessories\Api;
|
|
|
|
use App\Models\Accessory;
|
|
use App\Models\Company;
|
|
use App\Models\User;
|
|
use Tests\Concerns\TestsMultipleFullCompanySupport;
|
|
use Tests\Concerns\TestsPermissionsRequirement;
|
|
use Tests\TestCase;
|
|
|
|
class DeleteAccessoriesTest extends TestCase implements TestsMultipleFullCompanySupport, TestsPermissionsRequirement
|
|
{
|
|
public function testRequiresPermission()
|
|
{
|
|
$accessory = Accessory::factory()->create();
|
|
|
|
$this->actingAsForApi(User::factory()->create())
|
|
->deleteJson(route('api.accessories.destroy', $accessory))
|
|
->assertForbidden();
|
|
}
|
|
|
|
public function testCanDeleteAccessory()
|
|
{
|
|
$accessory = Accessory::factory()->create();
|
|
|
|
$this->actingAsForApi(User::factory()->deleteAccessories()->create())
|
|
->deleteJson(route('api.accessories.destroy', $accessory))
|
|
->assertStatusMessageIs('success');
|
|
|
|
$this->assertSoftDeleted($accessory);
|
|
}
|
|
|
|
public function testCannotDeleteAccessoryThatHasCheckouts()
|
|
{
|
|
$accessory = Accessory::factory()->checkedOutToUser()->create();
|
|
|
|
$this->actingAsForApi(User::factory()->deleteAccessories()->create())
|
|
->deleteJson(route('api.accessories.destroy', $accessory))
|
|
->assertStatusMessageIs('error');
|
|
|
|
$this->assertNotSoftDeleted($accessory);
|
|
}
|
|
|
|
public function testAdheresToMultipleFullCompanySupportScoping()
|
|
{
|
|
[$companyA, $companyB] = Company::factory()->count(2)->create();
|
|
|
|
$accessoryA = Accessory::factory()->for($companyA)->create();
|
|
$accessoryB = Accessory::factory()->for($companyB)->create();
|
|
$accessoryC = Accessory::factory()->for($companyB)->create();
|
|
|
|
$superUser = $companyA->users()->save(User::factory()->superuser()->make());
|
|
$userInCompanyA = $companyA->users()->save(User::factory()->deleteAccessories()->make());
|
|
$userInCompanyB = $companyB->users()->save(User::factory()->deleteAccessories()->make());
|
|
|
|
$this->settings->enableMultipleFullCompanySupport();
|
|
|
|
$this->actingAsForApi($userInCompanyA)
|
|
->deleteJson(route('api.accessories.destroy', $accessoryB))
|
|
->assertStatusMessageIs('error');
|
|
|
|
$this->actingAsForApi($userInCompanyB)
|
|
->deleteJson(route('api.accessories.destroy', $accessoryA))
|
|
->assertStatusMessageIs('error');
|
|
|
|
$this->actingAsForApi($superUser)
|
|
->deleteJson(route('api.accessories.destroy', $accessoryC))
|
|
->assertStatusMessageIs('success');
|
|
|
|
$this->assertNotSoftDeleted($accessoryA);
|
|
$this->assertNotSoftDeleted($accessoryB);
|
|
$this->assertSoftDeleted($accessoryC);
|
|
}
|
|
}
|