mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
33 lines
929 B
PHP
33 lines
929 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Http\Resources\AlbumResource;
|
|
use App\Http\Resources\ArtistResource;
|
|
use App\Http\Resources\SongResource;
|
|
use App\Models\Album;
|
|
use App\Models\Artist;
|
|
use App\Models\Song;
|
|
use Tests\TestCase;
|
|
|
|
class ExcerptSearchTest extends TestCase
|
|
{
|
|
public function testSearch(): void
|
|
{
|
|
Song::factory()->create(['title' => 'A Foo Song']);
|
|
Song::factory(6)->create();
|
|
|
|
Artist::factory()->create(['name' => 'Foo Fighters']);
|
|
Artist::factory(3)->create();
|
|
|
|
Album::factory()->create(['name' => 'Foo Number Five']);
|
|
Album::factory(4)->create();
|
|
|
|
$this->getAs('api/search?q=foo')
|
|
->assertJsonStructure([
|
|
'songs' => ['*' => SongResource::JSON_STRUCTURE],
|
|
'artists' => ['*' => ArtistResource::JSON_STRUCTURE],
|
|
'albums' => ['*' => AlbumResource::JSON_STRUCTURE],
|
|
]);
|
|
}
|
|
}
|