mirror of
https://github.com/koel/koel
synced 2024-12-18 08:33:15 +00:00
54 lines
1.6 KiB
PHP
54 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Tests\Integration\Services;
|
|
|
|
use App\Http\Integrations\YouTube\Requests\SearchVideosRequest;
|
|
use App\Models\Artist;
|
|
use App\Models\Song;
|
|
use App\Services\YouTubeService;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Illuminate\Support\Facades\File;
|
|
use Saloon\Http\Faking\MockResponse;
|
|
use Saloon\Laravel\Saloon;
|
|
use Tests\TestCase;
|
|
|
|
use function Tests\test_path;
|
|
|
|
class YouTubeServiceTest extends TestCase
|
|
{
|
|
private YouTubeService $service;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->service = app(YouTubeService::class);
|
|
}
|
|
|
|
public function testSearchVideosRelatedToSong(): void
|
|
{
|
|
/** @var Song $song */
|
|
$song = Song::factory()->for(Artist::factory()->create(['name' => 'Slipknot']))->create(['title' => 'Snuff']);
|
|
|
|
Saloon::fake([
|
|
SearchVideosRequest::class => MockResponse::make(body: File::get(test_path('blobs/youtube/search.json'))),
|
|
]);
|
|
|
|
$response = $this->service->searchVideosRelatedToSong($song, 'my-token');
|
|
|
|
self::assertSame('Slipknot - Snuff [OFFICIAL VIDEO]', $response->items[0]->snippet->title);
|
|
self::assertNotNull(Cache::get('youtube.cce909a3df066c88c2666d4283697867'));
|
|
|
|
Saloon::assertSent(static function (SearchVideosRequest $request): bool {
|
|
self::assertSame([
|
|
'part' => 'snippet',
|
|
'type' => 'video',
|
|
'maxResults' => 10,
|
|
'pageToken' => 'my-token',
|
|
'q' => 'Snuff Slipknot',
|
|
], $request->query()->all());
|
|
|
|
return true;
|
|
});
|
|
}
|
|
}
|