2023-03-20 15:47:57 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Feature\Api\Assets;
|
|
|
|
|
|
|
|
use App\Models\Asset;
|
|
|
|
use App\Models\User;
|
|
|
|
use Illuminate\Testing\Fluent\AssertableJson;
|
|
|
|
use Laravel\Passport\Passport;
|
2023-04-12 17:28:47 -07:00
|
|
|
use Tests\Support\InteractsWithSettings;
|
2023-03-20 15:47:57 -07:00
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
class AssetIndexTest extends TestCase
|
|
|
|
{
|
2023-04-12 17:28:47 -07:00
|
|
|
use InteractsWithSettings;
|
|
|
|
|
2023-03-20 15:47:57 -07:00
|
|
|
public function testAssetIndexReturnsExpectedAssets()
|
|
|
|
{
|
|
|
|
Asset::factory()->count(3)->create();
|
|
|
|
|
|
|
|
Passport::actingAs(User::factory()->superuser()->create());
|
|
|
|
$this->getJson(
|
|
|
|
route('api.assets.index', [
|
|
|
|
'sort' => 'name',
|
|
|
|
'order' => 'asc',
|
|
|
|
'offset' => '0',
|
|
|
|
'limit' => '20',
|
|
|
|
]))
|
|
|
|
->assertOk()
|
|
|
|
->assertJsonStructure([
|
|
|
|
'total',
|
|
|
|
'rows',
|
|
|
|
])
|
|
|
|
->assertJson(fn(AssertableJson $json) => $json->has('rows', 3)->etc());
|
|
|
|
}
|
|
|
|
}
|