alltube/tests/VideoTest.php

517 lines
13 KiB
PHP
Raw Normal View History

2015-08-29 21:46:57 +02:00
<?php
2015-08-29 21:46:57 +02:00
/**
* VideoTest class.
2016-08-01 13:29:13 +02:00
*/
2016-12-05 13:12:27 +01:00
2016-03-30 01:49:08 +02:00
namespace Alltube\Test;
use Alltube\Config;
use Alltube\Video;
2015-08-29 21:46:57 +02:00
/**
* Unit tests for the Video class.
2016-08-01 13:29:13 +02:00
*/
class VideoTest extends BaseTest
2015-08-29 21:46:57 +02:00
{
/**
* Test getExtractors function.
*
* @return void
*/
public function testGetExtractors()
{
$this->assertContains('youtube', Video::getExtractors());
}
/**
* Test getUrl function.
2015-10-29 18:40:22 +01:00
*
2017-01-02 23:08:51 +01:00
* @param string $url URL
* @param string $format Format
* @param string $filename Filename
* @param string $extension File extension
* @param string $domain Domain
2015-10-29 18:40:22 +01:00
*
2016-09-08 00:28:28 +02:00
* @return void
2015-10-29 18:40:22 +01:00
* @dataProvider urlProvider
* @dataProvider m3uUrlProvider
* @dataProvider remuxUrlProvider
*/
public function testgetUrl(
2017-12-05 14:52:20 +01:00
$url,
$format,
/* @scrutinizer ignore-unused */ $filename,
/* @scrutinizer ignore-unused */ $extension,
$domain
) {
$video = new Video($url, $format);
foreach ($video->getUrl() as $videoURL) {
$this->assertContains($domain, $videoURL);
}
}
/**
* Test getUrl function with a protected video.
*
* @return void
*/
public function testgetUrlWithPassword()
{
if (getenv('CI')) {
$this->markTestSkipped('Travis is blacklisted by Vimeo.');
}
$video = new Video('http://vimeo.com/68375962', 'best', 'youtube-dl');
foreach ($video->getUrl() as $videoURL) {
$this->assertContains('vimeocdn.com', $videoURL);
}
}
/**
* Test getUrl function with a protected video and no password.
*
* @return void
* @expectedException Alltube\Exception\PasswordException
*/
public function testgetUrlWithMissingPassword()
{
if (getenv('CI')) {
$this->markTestSkipped('Travis is blacklisted by Vimeo.');
}
$video = new Video('http://vimeo.com/68375962');
$video->getUrl();
}
/**
* Test getUrl function with a protected video and a wrong password.
*
* @return void
* @expectedException Exception
*/
public function testgetUrlWithWrongPassword()
{
if (getenv('CI')) {
$this->markTestSkipped('Travis is blacklisted by Vimeo.');
}
$video = new Video('http://vimeo.com/68375962', 'best', 'foo');
$video->getUrl();
}
/**
* Test getUrl function errors.
2015-10-29 18:40:22 +01:00
*
* @param string $url URL
2015-10-29 18:40:22 +01:00
*
2016-09-08 00:28:28 +02:00
* @return void
* @expectedException Exception
2015-10-29 21:23:02 +01:00
* @dataProvider ErrorUrlProvider
*/
public function testgetUrlError($url)
{
$video = new Video($url);
$video->getUrl();
}
/**
2016-09-08 00:28:28 +02:00
* Provides URLs for tests.
2015-10-29 18:40:22 +01:00
*
2016-08-01 13:29:13 +02:00
* @return array[]
*/
2015-10-29 18:40:22 +01:00
public function urlProvider()
{
$videos = [
2016-09-08 00:28:28 +02:00
[
'https://www.youtube.com/watch?v=M7IpKCZ47pU', 'best[protocol^=http]',
2017-05-31 00:57:39 +02:00
'It_s_Not_Me_It_s_You_-_Hearts_Under_Fire-M7IpKCZ47pU',
2017-01-02 23:08:51 +01:00
'mp4',
2016-07-30 00:47:46 +02:00
'googlevideo.com',
2016-09-08 00:28:28 +02:00
],
[
'https://www.youtube.com/watch?v=RJJ6FCAXvKg', 18,
'Heart_Attack_-_Demi_Lovato_' .
'Sam_Tsui_Against_The_Current-RJJ6FCAXvKg',
2017-01-02 23:08:51 +01:00
'mp4',
2016-07-30 00:47:46 +02:00
'googlevideo.com',
2016-09-08 00:28:28 +02:00
],
[
2016-07-30 14:01:00 +02:00
'http://www.bbc.co.uk/programmes/b039g8p7', 'bestaudio/best',
2018-09-03 10:42:20 +02:00
'Kaleidoscope_Leonard_Cohen-b039d07m',
2017-01-02 23:08:51 +01:00
'flv',
2016-07-30 14:01:00 +02:00
'bbcodspdns.fcod.llnwd.net',
2016-09-08 00:28:28 +02:00
],
[
2016-07-30 14:01:00 +02:00
'http://www.rtl2.de/sendung/grip-das-motormagazin/folge/folge-203-0', 'bestaudio/best',
'GRIP_sucht_den_Sommerkonig-folge-203-0',
2017-01-02 23:08:51 +01:00
'f4v',
2016-07-30 14:01:00 +02:00
'edgefcs.net',
2016-09-08 00:28:28 +02:00
],
[
'https://openload.co/f/kUEfGclsU9o', 'best[protocol^=http]',
'skyrim_no-audio_1080.mp4-kUEfGclsU9o',
'mp4',
'openload.co',
],
2016-12-27 00:10:18 +01:00
];
if (!getenv('CI')) {
// Travis is blacklisted by Vimeo.
$videos[] = [
'https://vimeo.com/24195442', 'best[protocol^=http]',
'Carving_the_Mountains-24195442',
'mp4',
'vimeocdn.com',
];
}
return $videos;
2016-12-27 00:10:18 +01:00
}
/**
* Provides URLs for remux tests.
2016-12-27 00:10:18 +01:00
*
* @return array[]
*/
2017-04-25 00:40:24 +02:00
public function remuxUrlProvider()
{
return [
[
'https://www.youtube.com/watch?v=M7IpKCZ47pU', 'bestvideo+bestaudio',
2017-05-31 00:57:39 +02:00
'It_s_Not_Me_It_s_You_-_Hearts_Under_Fire-M7IpKCZ47pU',
2017-04-25 00:40:24 +02:00
'mp4',
'googlevideo.com',
],
];
}
/**
* Provides M3U8 URLs for tests.
2017-04-25 00:40:24 +02:00
*
* @return array[]
*/
2017-01-16 13:47:29 +01:00
public function m3uUrlProvider()
2016-12-27 00:10:18 +01:00
{
2019-04-20 11:30:16 +02:00
$videos = [];
if (!getenv('CI')) {
// Twitter returns a 429 error when the test is ran too many times.
$videos[] = [
2017-12-10 18:47:42 +01:00
'https://twitter.com/verge/status/813055465324056576/video/1', 'hls-2176',
'The_Verge_-_This_tiny_origami_robot_can_self-fold_and_complete_tasks-813055465324056576',
2017-01-16 11:23:47 +01:00
'mp4',
2016-12-26 15:50:26 +01:00
'video.twimg.com',
2019-04-20 11:30:16 +02:00
];
}
return $videos;
}
/**
* Provides RTMP URLs for tests.
*
* @return array[]
*/
public function rtmpUrlProvider()
{
return [
[
'http://www.rtvnh.nl/video/131946', 'rtmp-264',
'Ketting_van_strandgasten-131946',
2017-05-04 23:28:29 +02:00
'flv',
'lb-nh-vod.cdn.streamgate.nl',
],
];
}
/**
2016-09-08 00:28:28 +02:00
* Provides incorrect URLs for tests.
2015-10-29 18:40:22 +01:00
*
2016-08-01 13:29:13 +02:00
* @return array[]
*/
2015-10-29 18:40:22 +01:00
public function errorUrlProvider()
{
2016-09-08 00:28:28 +02:00
return [
['http://example.com/video'],
];
}
/**
2016-09-08 00:28:28 +02:00
* Test getJSON function.
2015-10-29 18:40:22 +01:00
*
* @param string $url URL
* @param string $format Format
2015-10-29 18:40:22 +01:00
*
2016-09-08 00:28:28 +02:00
* @return void
* @dataProvider urlProvider
2017-01-16 13:47:29 +01:00
* @dataProvider m3uUrlProvider
*/
public function testGetJson($url, $format)
{
$video = new Video($url, $format);
$info = $video->getJson();
$this->assertObjectHasAttribute('webpage_url', $info);
$this->assertObjectHasAttribute('url', $info);
$this->assertObjectHasAttribute('ext', $info);
$this->assertObjectHasAttribute('title', $info);
$this->assertObjectHasAttribute('extractor_key', $info);
$this->assertObjectHasAttribute('format', $info);
}
/**
2016-09-08 00:28:28 +02:00
* Test getJSON function errors.
2015-10-29 18:40:22 +01:00
*
* @param string $url URL
2015-10-29 18:40:22 +01:00
*
2016-09-08 00:28:28 +02:00
* @return void
* @expectedException Exception
2015-10-29 21:23:02 +01:00
* @dataProvider ErrorURLProvider
2015-08-29 21:46:57 +02:00
*/
public function testGetJsonError($url)
2015-08-29 21:46:57 +02:00
{
$video = new Video($url);
$video->getJson();
2015-08-29 21:46:57 +02:00
}
2016-07-30 00:47:46 +02:00
/**
2016-09-08 00:28:28 +02:00
* Test getFilename function.
2016-07-30 00:47:46 +02:00
*
2017-01-02 23:08:51 +01:00
* @param string $url URL
* @param string $format Format
* @param string $filename Filename
* @param string $extension File extension
2016-07-30 00:47:46 +02:00
*
2016-09-08 00:28:28 +02:00
* @return void
2016-07-30 00:47:46 +02:00
* @dataProvider urlProvider
2017-01-16 13:47:29 +01:00
* @dataProvider m3uUrlProvider
* @dataProvider remuxUrlProvider
2016-07-30 00:47:46 +02:00
*/
2017-01-02 23:08:51 +01:00
public function testGetFilename($url, $format, $filename, $extension)
2016-07-30 00:47:46 +02:00
{
$video = new Video($url, $format);
$this->assertEquals($video->getFilename(), $filename . '.' . $extension);
2016-07-30 00:47:46 +02:00
}
/**
2016-09-08 00:28:28 +02:00
* Test getFilename function errors.
2016-07-30 00:47:46 +02:00
*
* @param string $url URL
*
2016-09-08 00:28:28 +02:00
* @return void
2016-07-30 00:47:46 +02:00
* @expectedException Exception
* @dataProvider ErrorUrlProvider
*/
public function testGetFilenameError($url)
{
$video = new Video($url);
$video->getFilename();
2016-07-30 00:47:46 +02:00
}
/**
2016-09-08 00:28:28 +02:00
* Test getAudioStream function.
2016-07-30 00:47:46 +02:00
*
* @param string $url URL
* @param string $format Format
*
2016-09-08 00:28:28 +02:00
* @return void
2016-07-30 00:47:46 +02:00
* @dataProvider urlProvider
*/
public function testGetAudioStream($url, $format)
{
$video = new Video($url, $format);
$this->assertStream($video->getAudioStream());
2016-07-30 00:47:46 +02:00
}
/**
2016-09-08 00:28:28 +02:00
* Test getAudioStream function without avconv.
2016-07-30 00:47:46 +02:00
*
* @param string $url URL
* @param string $format Format
*
2016-09-08 00:28:28 +02:00
* @return void
2016-07-30 00:47:46 +02:00
* @expectedException Exception
* @dataProvider urlProvider
*/
public function testGetAudioStreamAvconvError($url, $format)
{
Config::setOptions(['avconv' => 'foobar']);
$video = new Video($url, $format);
$video->getAudioStream();
2016-07-30 00:47:46 +02:00
}
2016-07-30 14:01:00 +02:00
/**
* Test getAudioStream function with a M3U8 file.
*
2016-12-27 00:36:30 +01:00
* @param string $url URL
* @param string $format Format
*
* @return void
* @expectedException Exception
2017-01-16 13:47:29 +01:00
* @dataProvider m3uUrlProvider
2016-12-27 00:36:30 +01:00
*/
public function testGetAudioStreamM3uError($url, $format)
{
$video = new Video($url, $format);
$video->getAudioStream();
2016-12-27 00:36:30 +01:00
}
/**
* Test getAudioStream function with a DASH URL.
*
* @return void
* @expectedException Exception
*/
public function testGetAudioStreamDashError()
{
if (getenv('CI')) {
$this->markTestSkipped('Travis is blacklisted by Vimeo.');
}
$video = new Video('https://vimeo.com/251997032', 'bestaudio/best');
$video->getAudioStream();
}
/**
* Test getAudioStream function with a playlist.
*
* @return void
* @expectedException Exception
*/
public function testGetAudioStreamPlaylistError()
{
$video = new Video(
2018-05-26 14:38:42 +02:00
'https://www.youtube.com/playlist?list=PLgdySZU6KUXL_8Jq5aUkyNV7wCa-4wZsC',
'best'
);
$video->getAudioStream();
}
2017-04-26 00:08:35 +02:00
/**
2017-04-26 00:10:00 +02:00
* Assert that a stream is valid.
2017-04-26 00:08:35 +02:00
*
* @param resource $stream Stream
*
* @return void
*/
private function assertStream($stream)
{
$this->assertInternalType('resource', $stream);
$this->assertFalse(feof($stream));
}
2016-12-27 00:36:30 +01:00
/**
* Test getM3uStream function.
*
* @param string $url URL
* @param string $format Format
*
* @return void
2017-01-16 13:47:29 +01:00
* @dataProvider m3uUrlProvider
2016-12-27 00:36:30 +01:00
*/
public function testGetM3uStream($url, $format)
{
$video = new Video($url, $format);
$this->assertStream($video->getM3uStream());
2016-12-27 00:36:30 +01:00
}
2017-04-25 00:40:24 +02:00
/**
* Test getRemuxStream function.
*
* @param string $url URL
* @param string $format Format
*
* @return void
* @dataProvider remuxUrlProvider
*/
public function testGetRemuxStream($url, $format)
{
$video = new Video($url, $format);
$this->assertStream($video->getRemuxStream());
}
/**
* Test getRemuxStream function with a video with only one URL.
*
* @param string $url URL
* @param string $format Format
*
* @return void
* @dataProvider urlProvider
* @expectedException Exception
*/
public function testGetRemuxStreamWithWrongVideo($url, $format)
{
$video = new Video($url, $format);
$video->getRemuxStream();
2017-04-25 00:40:24 +02:00
}
/**
* Test getRtmpStream function.
*
* @param string $url URL
* @param string $format Format
*
* @return void
* @dataProvider rtmpUrlProvider
*/
public function testGetRtmpStream($url, $format)
{
$this->markTestIncomplete('We need to find another RTMP video.');
$video = new Video($url, $format);
$this->assertStream($video->getRtmpStream());
}
2016-12-27 00:36:30 +01:00
/**
* Test getM3uStream function without avconv.
*
* @param string $url URL
* @param string $format Format
*
* @return void
* @expectedException Exception
2017-01-16 13:47:29 +01:00
* @dataProvider m3uUrlProvider
*/
2016-12-27 00:36:30 +01:00
public function testGetM3uStreamAvconvError($url, $format)
{
Config::setOptions(['avconv' => 'foobar']);
$video = new Video($url, $format);
$video->getM3uStream();
}
2017-05-02 17:04:55 +02:00
/**
* Test getConvertedStream function without avconv.
*
* @param string $url URL
* @param string $format Format
*
* @return void
* @dataProvider urlProvider
*/
public function testGetConvertedStream($url, $format)
{
$video = new Video($url, $format);
$this->assertStream($video->getConvertedStream(32, 'flv'));
}
/**
* Test getConvertedStream function with a M3U8 file.
*
* @param string $url URL
* @param string $format Format
*
* @return void
* @expectedException Exception
* @dataProvider m3uUrlProvider
*/
public function testGetConvertedStreamM3uError($url, $format)
{
$video = new Video($url, $format);
$video->getConvertedStream(32, 'flv');
}
2015-08-29 21:46:57 +02:00
}