koel/tests/Feature/FavoriteSongTest.php
2024-10-24 17:45:45 +07:00

23 lines
521 B
PHP

<?php
namespace Tests\Feature;
use App\Http\Resources\SongResource;
use App\Models\Interaction;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;
use function Tests\create_user;
class FavoriteSongTest extends TestCase
{
#[Test]
public function index(): void
{
$user = create_user();
Interaction::factory(5)->for($user)->create(['liked' => true]);
$this->getAs('api/songs/favorite', $user)
->assertJsonStructure(['*' => SongResource::JSON_STRUCTURE]);
}
}