mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-16 02:24:09 -08:00
45 lines
1.3 KiB
PHP
45 lines
1.3 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Feature\Categories\Api;
|
||
|
|
||
|
use App\Models\Asset;
|
||
|
use App\Models\Category;
|
||
|
use App\Models\User;
|
||
|
use Tests\Concerns\TestsPermissionsRequirement;
|
||
|
use Tests\TestCase;
|
||
|
|
||
|
class DeleteCategoriesTest extends TestCase implements TestsPermissionsRequirement
|
||
|
{
|
||
|
public function testRequiresPermission()
|
||
|
{
|
||
|
$category = Category::factory()->create();
|
||
|
|
||
|
$this->actingAsForApi(User::factory()->create())
|
||
|
->deleteJson(route('api.categories.destroy', $category))
|
||
|
->assertForbidden();
|
||
|
}
|
||
|
|
||
|
public function testCanDeleteCategory()
|
||
|
{
|
||
|
$category = Category::factory()->create();
|
||
|
|
||
|
$this->actingAsForApi(User::factory()->deleteCategories()->create())
|
||
|
->deleteJson(route('api.categories.destroy', $category))
|
||
|
->assertStatusMessageIs('success');
|
||
|
|
||
|
$this->assertTrue($category->fresh()->trashed());
|
||
|
}
|
||
|
|
||
|
public function testCannotDeleteCategoryThatStillHasAssociatedItems()
|
||
|
{
|
||
|
$asset = Asset::factory()->create();
|
||
|
$category = $asset->model->category;
|
||
|
|
||
|
$this->actingAsForApi(User::factory()->deleteCategories()->create())
|
||
|
->deleteJson(route('api.categories.destroy', $category))
|
||
|
->assertStatusMessageIs('error');
|
||
|
|
||
|
$this->assertFalse($category->fresh()->trashed());
|
||
|
}
|
||
|
}
|