koel/tests/Feature/FavoriteSongTest.php

21 lines
445 B
PHP
Raw Normal View History

2022-07-26 20:41:26 +00:00
<?php
2023-06-05 21:46:41 +00:00
namespace Tests\Feature;
2022-07-26 20:41:26 +00:00
use App\Models\Interaction;
use App\Models\User;
2022-07-27 09:30:04 +00:00
class FavoriteSongTest extends TestCase
2022-07-26 20:41:26 +00:00
{
public function testIndex(): void
{
/** @var User $user */
$user = User::factory()->create();
2022-07-27 09:30:04 +00:00
Interaction::factory(5)->for($user)->create(['liked' => true]);
2022-07-26 20:41:26 +00:00
2022-07-27 09:30:04 +00:00
$this->getAs('api/songs/favorite', $user)
2022-07-26 20:41:26 +00:00
->assertJsonStructure(['*' => SongTest::JSON_STRUCTURE]);
}
}