mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-15 01:54:09 -08:00
45 lines
1.3 KiB
PHP
45 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature\Locations\Api;
|
|
|
|
use App\Models\Location;
|
|
use App\Models\Asset;
|
|
use App\Models\User;
|
|
use Tests\TestCase;
|
|
|
|
class LocationsViewTest extends TestCase
|
|
{
|
|
public function testViewingLocationRequiresPermission()
|
|
{
|
|
$location = Location::factory()->create();
|
|
$this->actingAsForApi(User::factory()->create())
|
|
->getJson(route('api.locations.show', $location->id))
|
|
->assertForbidden();
|
|
}
|
|
|
|
public function testViewingLocationAssetIndexRequiresPermission()
|
|
{
|
|
$location = Location::factory()->create();
|
|
$this->actingAsForApi(User::factory()->create())
|
|
->getJson(route('api.locations.viewassets', $location->id))
|
|
->assertForbidden();
|
|
}
|
|
|
|
public function testViewingLocationAssetIndex()
|
|
{
|
|
$location = Location::factory()->create();
|
|
Asset::factory()->count(3)->assignedToLocation($location)->create();
|
|
|
|
$this->actingAsForApi(User::factory()->superuser()->create())
|
|
->getJson(route('api.locations.viewassets', $location->id))
|
|
->assertOk()
|
|
->assertJsonStructure([
|
|
'total',
|
|
'rows',
|
|
])
|
|
->assertJson([
|
|
'total' => 3,
|
|
]);
|
|
}
|
|
}
|