2022-07-26 20:36:48 +00:00
|
|
|
<?php
|
|
|
|
|
2023-06-05 21:46:41 +00:00
|
|
|
namespace Tests\Feature;
|
2022-07-26 20:36:48 +00:00
|
|
|
|
|
|
|
use App\Models\Album;
|
|
|
|
use App\Models\Artist;
|
|
|
|
use App\Models\Song;
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
2022-07-27 08:49:33 +00:00
|
|
|
$this->getAs('api/search?q=foo')
|
2022-07-26 20:36:48 +00:00
|
|
|
->assertJsonStructure([
|
|
|
|
'songs' => ['*' => SongTest::JSON_STRUCTURE],
|
|
|
|
'artists' => ['*' => ArtistTest::JSON_STRUCTURE],
|
|
|
|
'albums' => ['*' => AlbumTest::JSON_STRUCTURE],
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|