mirror of
https://github.com/koel/koel
synced 2024-12-19 09:03:07 +00:00
30 lines
893 B
PHP
30 lines
893 B
PHP
<?php
|
|
|
|
namespace Tests\Integration\Services;
|
|
|
|
use App\Services\YouTubeService;
|
|
use GuzzleHttp\Client;
|
|
use GuzzleHttp\Psr7\Response;
|
|
use Illuminate\Contracts\Cache\Repository;
|
|
use Illuminate\Log\Logger;
|
|
use Mockery;
|
|
use Tests\TestCase;
|
|
|
|
class YouTubeServiceTest extends TestCase
|
|
{
|
|
public function testSearch(): void
|
|
{
|
|
$this->withoutEvents();
|
|
|
|
/** @var Client $client */
|
|
$client = Mockery::mock(Client::class, [
|
|
'get' => new Response(200, [], file_get_contents(__DIR__ . '../../../blobs/youtube/search.json')),
|
|
]);
|
|
|
|
$api = new YouTubeService($client, app(Repository::class), app(Logger::class));
|
|
$response = $api->search('Lorem Ipsum');
|
|
|
|
self::assertEquals('Slipknot - Snuff [OFFICIAL VIDEO]', $response->items[0]->snippet->title);
|
|
self::assertNotNull(cache()->get('1492972ec5c8e6b3a9323ba719655ddb'));
|
|
}
|
|
}
|