mirror of
https://github.com/snipe/snipe-it.git
synced 2026-02-18 15:55:25 +00:00
101 lines
3.5 KiB
PHP
101 lines
3.5 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature\Users\Api;
|
|
|
|
use App\Models\Location;
|
|
use App\Models\User;
|
|
use Illuminate\Testing\Fluent\AssertableJson;
|
|
use Tests\TestCase;
|
|
|
|
class IndexUsersTest extends TestCase
|
|
{
|
|
public function testRequiresPermission()
|
|
{
|
|
$this->actingAsForApi(User::factory()->create())
|
|
->getJson(route('api.users.index'))
|
|
->assertForbidden();
|
|
}
|
|
|
|
public function testReturnsManagedUsersCountCorrectly()
|
|
{
|
|
$manager = User::factory()->create(['first_name' => 'Manages Users']);
|
|
User::factory()->create(['first_name' => 'Does Not Manage Users']);
|
|
|
|
User::factory()->create(['manager_id' => $manager->id]);
|
|
User::factory()->create(['manager_id' => $manager->id]);
|
|
|
|
$response = $this->actingAsForApi(User::factory()->viewUsers()->create())
|
|
->getJson(route('api.users.index', [
|
|
'manages_users_count' => 2,
|
|
]))
|
|
->assertOk();
|
|
|
|
$response->assertJson(function (AssertableJson $json) {
|
|
$json->has('rows', 1)
|
|
->where('rows.0.first_name', 'Manages Users')
|
|
->etc();
|
|
});
|
|
}
|
|
|
|
public function testReturnsManagedLocationsCountCorrectly()
|
|
{
|
|
$manager = User::factory()->create(['first_name' => 'Manages Locations']);
|
|
User::factory()->create(['first_name' => 'Does Not Manage Locations']);
|
|
|
|
Location::factory()->create(['manager_id' => $manager->id]);
|
|
Location::factory()->create(['manager_id' => $manager->id]);
|
|
|
|
$response = $this->actingAsForApi(User::factory()->viewUsers()->create())
|
|
->getJson(route('api.users.index', [
|
|
'manages_locations_count' => 2,
|
|
]))
|
|
->assertOk();
|
|
|
|
$response->assertJson(function (AssertableJson $json) {
|
|
$json->has('rows', 1)
|
|
->where('rows.0.first_name', 'Manages Locations')
|
|
->etc();
|
|
});
|
|
}
|
|
|
|
public function test_gracefully_handles_malformed_filter()
|
|
{
|
|
$this->actingAsForApi(User::factory()->viewUsers()->create())
|
|
->getJson(route('api.users.index', [
|
|
// filter should be a json encoded array and not a string
|
|
'filter' => 'email:an-email-address@example.com',
|
|
]))
|
|
->assertStatusMessageIs('error')
|
|
->assertJson(function (AssertableJson $json) {
|
|
$json->has('messages.filter')->etc();
|
|
});
|
|
}
|
|
|
|
public function testReturnsResultViaFilter()
|
|
{
|
|
|
|
User::factory()->count(3)->create(['first_name' => 'Awesome', 'last_name' => 'Admin', 'email' => 'awesome@example.org']);
|
|
$this->actingAsForApi(User::factory()->viewUsers()->create())
|
|
->getJson(route('api.users.index', [
|
|
'filter' => '{"first_name":"Awesome","last_name":"Admin","email":"awesome@example.org"}',
|
|
]))
|
|
->assertOk()
|
|
->assertJsonStructure([
|
|
'total',
|
|
'rows',
|
|
])
|
|
->assertJson(fn(AssertableJson $json) => $json->has('rows', 3)->etc());
|
|
|
|
$this->actingAsForApi(User::factory()->viewUsers()->create())
|
|
->getJson(route('api.users.index', [
|
|
'filter' => '{"first_name":"Not Awesome"}',
|
|
]))
|
|
->assertOk()
|
|
->assertJsonStructure([
|
|
'total',
|
|
'rows',
|
|
])
|
|
->assertJson(fn(AssertableJson $json) => $json->has('rows', 0)->etc());
|
|
}
|
|
}
|