2024-09-12 16:00:02 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Feature\Consumables\Api;
|
|
|
|
|
|
|
|
use App\Models\Company;
|
|
|
|
use App\Models\Consumable;
|
|
|
|
use App\Models\User;
|
|
|
|
use Tests\Concerns\TestsMultipleFullCompanySupport;
|
|
|
|
use Tests\Concerns\TestsPermissionsRequirement;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
class DeleteConsumablesTest extends TestCase implements TestsMultipleFullCompanySupport, TestsPermissionsRequirement
|
|
|
|
{
|
|
|
|
public function testRequiresPermission()
|
|
|
|
{
|
|
|
|
$consumable = Consumable::factory()->create();
|
|
|
|
|
|
|
|
$this->actingAsForApi(User::factory()->create())
|
|
|
|
->deleteJson(route('api.consumables.destroy', $consumable))
|
|
|
|
->assertForbidden();
|
2024-09-16 14:32:38 -07:00
|
|
|
|
|
|
|
$this->assertNotSoftDeleted($consumable);
|
2024-09-12 16:00:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testAdheresToMultipleFullCompanySupportScoping()
|
|
|
|
{
|
|
|
|
[$companyA, $companyB] = Company::factory()->count(2)->create();
|
|
|
|
|
|
|
|
$consumableA = Consumable::factory()->for($companyA)->create();
|
|
|
|
$consumableB = Consumable::factory()->for($companyB)->create();
|
|
|
|
$consumableC = Consumable::factory()->for($companyB)->create();
|
|
|
|
|
|
|
|
$superUser = $companyA->users()->save(User::factory()->superuser()->make());
|
|
|
|
$userInCompanyA = $companyA->users()->save(User::factory()->deleteConsumables()->make());
|
|
|
|
$userInCompanyB = $companyB->users()->save(User::factory()->deleteConsumables()->make());
|
|
|
|
|
|
|
|
$this->settings->enableMultipleFullCompanySupport();
|
|
|
|
|
|
|
|
$this->actingAsForApi($userInCompanyA)
|
|
|
|
->deleteJson(route('api.consumables.destroy', $consumableB))
|
|
|
|
->assertStatusMessageIs('error');
|
|
|
|
|
|
|
|
$this->actingAsForApi($userInCompanyB)
|
|
|
|
->deleteJson(route('api.consumables.destroy', $consumableA))
|
|
|
|
->assertStatusMessageIs('error');
|
|
|
|
|
|
|
|
$this->actingAsForApi($superUser)
|
|
|
|
->deleteJson(route('api.consumables.destroy', $consumableC))
|
|
|
|
->assertStatusMessageIs('success');
|
|
|
|
|
2024-09-16 14:20:24 -07:00
|
|
|
$this->assertNotSoftDeleted($consumableA);
|
|
|
|
$this->assertNotSoftDeleted($consumableB);
|
|
|
|
$this->assertSoftDeleted($consumableC);
|
2024-09-12 16:00:02 -07:00
|
|
|
}
|
2024-09-16 14:25:11 -07:00
|
|
|
|
|
|
|
public function testCanDeleteConsumables()
|
|
|
|
{
|
|
|
|
$consumable = Consumable::factory()->create();
|
|
|
|
|
|
|
|
$this->actingAsForApi(User::factory()->deleteConsumables()->create())
|
|
|
|
->deleteJson(route('api.consumables.destroy', $consumable))
|
|
|
|
->assertStatusMessageIs('success');
|
|
|
|
|
|
|
|
$this->assertSoftDeleted($consumable);
|
|
|
|
}
|
2024-09-12 16:00:02 -07:00
|
|
|
}
|