2017-08-05 18:55:02 +00:00
|
|
|
<?php
|
|
|
|
|
2017-12-09 22:39:34 +00:00
|
|
|
namespace Tests\Integration\Services;
|
2017-08-05 18:55:02 +00:00
|
|
|
|
|
|
|
use App\Services\YouTube;
|
|
|
|
use GuzzleHttp\Client;
|
|
|
|
use GuzzleHttp\Psr7\Response;
|
|
|
|
use Mockery as m;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
class YouTubeTest extends TestCase
|
|
|
|
{
|
|
|
|
protected function tearDown()
|
|
|
|
{
|
|
|
|
m::close();
|
|
|
|
parent::tearDown();
|
|
|
|
}
|
|
|
|
|
2017-12-09 18:34:27 +00:00
|
|
|
/**
|
|
|
|
* @test
|
2017-12-09 20:10:55 +00:00
|
|
|
*
|
2017-12-09 18:34:27 +00:00
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2017-08-05 18:55:02 +00:00
|
|
|
public function videos_can_be_searched_from_youtube()
|
|
|
|
{
|
|
|
|
$this->withoutEvents();
|
|
|
|
|
|
|
|
$client = m::mock(Client::class, [
|
2017-12-09 22:39:34 +00:00
|
|
|
'get' => new Response(200, [], file_get_contents(__DIR__.'../../../blobs/youtube/search.json')),
|
2017-08-05 18:55:02 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
$api = new YouTube(null, $client);
|
|
|
|
$response = $api->search('Lorem Ipsum');
|
|
|
|
|
|
|
|
$this->assertEquals('Slipknot - Snuff [OFFICIAL VIDEO]', $response->items[0]->snippet->title);
|
|
|
|
|
|
|
|
// Is it cached?
|
|
|
|
$this->assertNotNull(cache('1492972ec5c8e6b3a9323ba719655ddb'));
|
|
|
|
}
|
|
|
|
}
|