koel/tests/Feature/AlbumTest.php

28 lines
596 B
PHP
Raw Normal View History

2022-07-26 20:08:31 +00:00
<?php
2023-06-05 21:46:41 +00:00
namespace Tests\Feature;
2022-07-26 20:08:31 +00:00
use App\Http\Resources\AlbumResource;
2022-07-26 20:08:31 +00:00
use App\Models\Album;
2024-01-09 18:34:40 +00:00
use Tests\TestCase;
2022-07-26 20:08:31 +00:00
class AlbumTest extends TestCase
{
public function testIndex(): void
{
Album::factory(10)->create();
2022-07-27 08:49:33 +00:00
$this->getAs('api/albums')
->assertJsonStructure(AlbumResource::PAGINATION_JSON_STRUCTURE);
2022-07-26 20:08:31 +00:00
}
public function testShow(): void
{
/** @var Album $album */
$album = Album::factory()->create();
2022-07-27 08:49:33 +00:00
$this->getAs('api/albums/' . $album->id)
->assertJsonStructure(AlbumResource::JSON_STRUCTURE);
2022-07-26 20:08:31 +00:00
}
}