mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-15 01:54:09 -08:00
9e9b07f10f
Signed-off-by: snipe <snipe@snipe.net>
71 lines
1.9 KiB
PHP
71 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature\Categories\Api;
|
|
|
|
use App\Models\Category;
|
|
use App\Models\User;
|
|
use Illuminate\Testing\Fluent\AssertableJson;
|
|
use Tests\TestCase;
|
|
|
|
class IndexCategoriesTest extends TestCase
|
|
{
|
|
|
|
public function testViewingCategoryIndexRequiresPermission()
|
|
{
|
|
$this->actingAsForApi(User::factory()->create())
|
|
->getJson(route('api.departments.index'))
|
|
->assertForbidden();
|
|
}
|
|
|
|
public function testCategoryIndexReturnsExpectedSearchResults()
|
|
{
|
|
Category::factory()->count(10)->create();
|
|
Category::factory()->count(1)->forAssets()->create(['name' => 'My Test Category']);
|
|
|
|
$this->actingAsForApi(User::factory()->superuser()->create())
|
|
->getJson(
|
|
route('api.categories.index', [
|
|
'search' => 'My Test Category',
|
|
'sort' => 'name',
|
|
'order' => 'asc',
|
|
'offset' => '0',
|
|
'limit' => '20',
|
|
]))
|
|
->assertOk()
|
|
->assertJsonStructure([
|
|
'total',
|
|
'rows',
|
|
])
|
|
->assertJson([
|
|
'total' => 1,
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
public function testCategoryIndexReturnsExpectedCategories()
|
|
{
|
|
$this->markTestIncomplete('Not sure why the category factory is generating one more than expected here.');
|
|
Category::factory()->count(3)->create();
|
|
|
|
$this->actingAsForApi(User::factory()->superuser()->create())
|
|
->getJson(
|
|
route('api.categories.index', [
|
|
'sort' => 'id',
|
|
'order' => 'asc',
|
|
'offset' => '0',
|
|
'limit' => '20',
|
|
]))
|
|
->assertOk()
|
|
->assertJsonStructure([
|
|
'total',
|
|
'rows',
|
|
])
|
|
->assertJson([
|
|
'total' => 3,
|
|
]);
|
|
|
|
}
|
|
|
|
}
|