koel/tests/Feature/ArtistSongTest.php

24 lines
503 B
PHP
Raw Normal View History

2022-07-26 20:23:34 +00:00
<?php
2023-06-05 21:46:41 +00:00
namespace Tests\Feature;
2022-07-26 20:23:34 +00:00
use App\Http\Resources\SongResource;
2022-07-26 20:23:34 +00:00
use App\Models\Artist;
use App\Models\Song;
use PHPUnit\Framework\Attributes\Test;
2024-01-09 18:34:40 +00:00
use Tests\TestCase;
2022-07-26 20:23:34 +00:00
class ArtistSongTest extends TestCase
{
#[Test]
public function index(): void
2022-07-26 20:23:34 +00:00
{
$artist = Artist::factory()->create();
2022-07-27 08:49:33 +00:00
Song::factory(5)->for($artist)->create();
2022-07-26 20:23:34 +00:00
$this->getAs("api/artists/{$artist->id}/songs")
->assertJsonStructure(['*' => SongResource::JSON_STRUCTURE]);
2022-07-26 20:23:34 +00:00
}
}