koel/tests/Feature/V6/FavoriteSongTest.php

21 lines
448 B
PHP
Raw Normal View History

2022-07-26 20:41:26 +00:00
<?php
namespace Tests\Feature\V6;
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]);
}
}