2019-04-22 19:52:21 +00:00
|
|
|
<?php
|
2019-10-03 19:24:12 +00:00
|
|
|
|
2019-04-22 19:52:21 +00:00
|
|
|
/**
|
|
|
|
* YoutubeStreamTest class.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Alltube\Test;
|
|
|
|
|
2020-06-20 23:44:20 +00:00
|
|
|
use Alltube\Config;
|
|
|
|
use Alltube\Exception\ConfigException;
|
|
|
|
use Alltube\Library\Exception\AlltubeLibraryException;
|
2019-04-22 19:52:21 +00:00
|
|
|
use Alltube\Stream\YoutubeStream;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unit tests for the YoutubeStream class.
|
2019-10-26 14:13:08 +00:00
|
|
|
* @requires download
|
2019-04-22 19:52:21 +00:00
|
|
|
*/
|
|
|
|
class YoutubeStreamTest extends StreamTest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Prepare tests.
|
2020-06-20 23:44:20 +00:00
|
|
|
* @throws ConfigException|AlltubeLibraryException
|
2019-04-22 19:52:21 +00:00
|
|
|
*/
|
2019-11-30 13:08:18 +00:00
|
|
|
protected function setUp(): void
|
2019-04-22 19:52:21 +00:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
2020-06-20 23:44:20 +00:00
|
|
|
$config = Config::getInstance();
|
|
|
|
$downloader = $config->getDownloader();
|
|
|
|
$video = $downloader->getVideo('https://www.youtube.com/watch?v=dQw4w9WgXcQ', '135');
|
2019-04-22 19:52:21 +00:00
|
|
|
|
2020-06-20 23:44:20 +00:00
|
|
|
$this->stream = new YoutubeStream($downloader, $video);
|
2019-04-22 19:52:21 +00:00
|
|
|
}
|
2019-04-26 18:43:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test the getMetadata() function.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testGetMetadataWithKey()
|
|
|
|
{
|
|
|
|
$this->assertNull($this->stream->getMetadata('foo'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test the detach() function.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testDetach()
|
|
|
|
{
|
|
|
|
$this->assertNull($this->stream->detach());
|
|
|
|
}
|
2019-04-22 19:52:21 +00:00
|
|
|
}
|