koel/tests/Feature/FavoriteSongTest.php

22 lines
474 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\Http\Resources\SongResource;
2022-07-26 20:41:26 +00:00
use App\Models\Interaction;
2024-01-09 18:34:40 +00:00
use Tests\TestCase;
2022-07-26 20:41:26 +00:00
2024-01-11 12:41:33 +00:00
use function Tests\create_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
{
2024-01-11 12:41:33 +00:00
$user = create_user();
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)
->assertJsonStructure(['*' => SongResource::JSON_STRUCTURE]);
2022-07-26 20:41:26 +00:00
}
}