koel/tests/Feature/ArtistTest.php

54 lines
1 KiB
PHP
Raw Normal View History

2022-07-26 20:19:58 +00:00
<?php
2023-06-05 21:46:41 +00:00
namespace Tests\Feature;
2022-07-26 20:19:58 +00:00
use App\Models\Artist;
2024-01-09 18:34:40 +00:00
use Tests\TestCase;
2022-07-26 20:19:58 +00:00
class ArtistTest extends TestCase
{
public const JSON_STRUCTURE = [
2022-07-26 20:19:58 +00:00
'type',
'id',
'name',
'image',
'created_at',
];
private const JSON_COLLECTION_STRUCTURE = [
'data' => [
'*' => self::JSON_STRUCTURE,
],
'links' => [
'first',
'last',
'prev',
'next',
],
'meta' => [
'current_page',
'from',
'path',
'per_page',
'to',
],
];
public function testIndex(): void
{
Artist::factory(10)->create();
2022-07-27 08:49:33 +00:00
$this->getAs('api/artists')
2022-07-26 20:19:58 +00:00
->assertJsonStructure(self::JSON_COLLECTION_STRUCTURE);
}
public function testShow(): void
{
/** @var Artist $artist */
$artist = Artist::factory()->create();
2022-07-27 08:49:33 +00:00
$this->getAs('api/artists/' . $artist->id)
2022-07-26 20:19:58 +00:00
->assertJsonStructure(self::JSON_STRUCTURE);
}
}