mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
28 lines
852 B
PHP
28 lines
852 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Models\Interaction;
|
|
use Tests\TestCase;
|
|
|
|
use function Tests\create_user;
|
|
|
|
class OverviewTest extends TestCase
|
|
{
|
|
public function testIndex(): void
|
|
{
|
|
$user = create_user();
|
|
|
|
Interaction::factory(20)->for($user)->create();
|
|
|
|
$this->getAs('api/overview', $user)
|
|
->assertJsonStructure([
|
|
'most_played_songs' => ['*' => SongTest::JSON_STRUCTURE],
|
|
'recently_played_songs' => ['*' => SongTest::JSON_STRUCTURE],
|
|
'recently_added_albums' => ['*' => AlbumTest::JSON_STRUCTURE],
|
|
'recently_added_songs' => ['*' => SongTest::JSON_STRUCTURE],
|
|
'most_played_artists' => ['*' => ArtistTest::JSON_STRUCTURE],
|
|
'most_played_albums' => ['*' => AlbumTest::JSON_STRUCTURE],
|
|
]);
|
|
}
|
|
}
|