Skip to content

Commit

Permalink
Add tests for delete category endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusmoore committed Sep 12, 2024
1 parent 0ec415d commit 8ce2512
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
5 changes: 5 additions & 0 deletions database/factories/UserFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,11 @@ public function deleteUsers()
return $this->appendPermission(['users.delete' => '1']);
}

public function deleteCategories()
{
return $this->appendPermission(['categories.delete' => '1']);
}

public function canEditOwnLocation()
{
return $this->appendPermission(['self.edit_location' => '1']);
Expand Down
44 changes: 44 additions & 0 deletions tests/Feature/Categories/Api/DeleteCategoriesTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?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());
}
}

0 comments on commit 8ce2512

Please sign in to comment.