koel/tests/Integration/Services/YouTubeServiceTest.php
2018-08-19 13:13:08 +02:00

38 lines
916 B
PHP

<?php
namespace Tests\Integration\Services;
use App\Services\YouTubeService;
use Exception;
use GuzzleHttp\Client;
use GuzzleHttp\Psr7\Response;
use Mockery as m;
use Tests\TestCase;
class YouTubeServiceTest extends TestCase
{
protected function tearDown()
{
m::close();
parent::tearDown();
}
/**
* @throws Exception
*/
public function testSearch()
{
$this->withoutEvents();
/** @var Client $client */
$client = m::mock(Client::class, [
'get' => new Response(200, [], file_get_contents(__DIR__.'../../../blobs/youtube/search.json')),
]);
$api = new YouTubeService($client);
$response = $api->search('Lorem Ipsum');
$this->assertEquals('Slipknot - Snuff [OFFICIAL VIDEO]', $response->items[0]->snippet->title);
$this->assertNotNull(cache('1492972ec5c8e6b3a9323ba719655ddb'));
}
}