koel/tests/Feature/AlbumTest.php

55 lines
1 KiB
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\Models\Album;
class AlbumTest extends TestCase
{
public const JSON_STRUCTURE = [
2022-07-26 20:08:31 +00:00
'type',
'id',
'name',
'artist_id',
'artist_name',
'cover',
'created_at',
];
private const JSON_COLLECTION_STRUCTURE = [
'data' => [
'*' => self::JSON_STRUCTURE,
],
2022-07-26 20:19:58 +00:00
'links' => [
'first',
'last',
'prev',
'next',
],
'meta' => [
'current_page',
'from',
'path',
'per_page',
'to',
],
2022-07-26 20:08:31 +00:00
];
public function testIndex(): void
{
Album::factory(10)->create();
2022-07-27 08:49:33 +00:00
$this->getAs('api/albums')
2022-07-26 20:08:31 +00:00
->assertJsonStructure(self::JSON_COLLECTION_STRUCTURE);
}
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)
2022-07-26 20:08:31 +00:00
->assertJsonStructure(self::JSON_STRUCTURE);
}
}