1
0
mirror of https://github.com/Rudloff/alltube.git synced 2024-06-28 07:40:53 +02:00
alltube/tests/VideoDownloadTest.php

174 lines
4.2 KiB
PHP
Raw Normal View History

2015-08-29 21:46:57 +02:00
<?php
/**
* VideoDownloadTest class
*
* PHP Version 5.3.10
*
* @category Youtube-dl
* @package Youtubedl
* @author Pierre Rudloff <contact@rudloff.pro>
* @license GNU General Public License http://www.gnu.org/licenses/gpl.html
* @link http://rudloff.pro
* */
2016-03-30 01:49:08 +02:00
namespace Alltube\Test;
2015-10-29 20:43:43 +01:00
use Alltube\VideoDownload;
2015-08-29 21:46:57 +02:00
/**
* Unit tests for the VideoDownload class
*
* PHP Version 5.3.10
*
* @category Youtube-dl
* @package Youtubedl
* @author Pierre Rudloff <contact@rudloff.pro>
* @license GNU General Public License http://www.gnu.org/licenses/gpl.html
* @link http://rudloff.pro
* */
2016-03-30 01:49:08 +02:00
class VideoDownloadTest extends \PHPUnit_Framework_TestCase
2015-08-29 21:46:57 +02:00
{
2016-04-08 19:06:41 +02:00
protected function setUp()
{
$this->download = new VideoDownload();
}
2015-08-29 21:46:57 +02:00
/**
* Test getUA function
2015-10-29 18:40:22 +01:00
*
2015-08-29 21:46:57 +02:00
* @return void
*/
public function testGetUA()
{
2016-04-08 19:06:41 +02:00
$this->assertStringStartsWith('Mozilla/', $this->download->getUA());
2015-08-29 21:46:57 +02:00
}
/**
* Test listExtractors funtion
2015-10-29 18:40:22 +01:00
*
2015-08-29 21:46:57 +02:00
* @return void
*/
public function testListExtractors()
{
2016-04-08 19:06:41 +02:00
$extractors = $this->download->listExtractors();
$this->assertContains('youtube', $extractors);
2015-08-29 21:46:57 +02:00
}
/**
* Test getURL 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
*
2015-10-29 21:23:02 +01:00
* @return void
2015-10-29 18:40:22 +01:00
* @dataProvider urlProvider
*/
2016-04-08 20:08:04 +02:00
public function testGetURL($url, $format, $filename, $domain)
{
2016-04-08 19:06:41 +02:00
$videoURL = $this->download->getURL($url, $format);
2016-04-08 20:08:04 +02:00
$this->assertContains($domain, $videoURL);
}
/**
* Test getURL function errors
2015-10-29 18:40:22 +01:00
*
* @param string $url URL
2015-10-29 18:40:22 +01:00
*
2015-10-29 21:23:02 +01:00
* @return void
* @expectedException Exception
2015-10-29 21:23:02 +01:00
* @dataProvider ErrorUrlProvider
*/
public function testGetURLError($url)
{
2016-04-08 20:08:04 +02:00
$this->download->getURL($url);
}
/**
* Provides URLs for tests
2015-10-29 18:40:22 +01:00
*
2015-10-31 11:23:58 +01:00
* @return array
*/
2015-10-29 18:40:22 +01:00
public function urlProvider()
{
return array(
array(
'https://www.youtube.com/watch?v=M7IpKCZ47pU', null,
2016-04-08 20:08:04 +02:00
"It's Not Me, It's You - Hearts Under Fire-M7IpKCZ47pU.mp4",
'googlevideo.com'
),
array(
'https://www.youtube.com/watch?v=RJJ6FCAXvKg', 22,
"'Heart Attack' - Demi Lovato ".
2016-04-08 20:08:04 +02:00
"(Sam Tsui & Against The Current)-RJJ6FCAXvKg.mp4",
'googlevideo.com'
),
array(
'https://vimeo.com/24195442', null,
2016-04-08 20:08:04 +02:00
"Carving the Mountains-24195442.mp4",
'vimeocdn.com'
),
);
}
/**
* Provides incorrect URLs for tests
2015-10-29 18:40:22 +01:00
*
2015-10-31 11:23:58 +01:00
* @return array
*/
2015-10-29 18:40:22 +01:00
public function errorUrlProvider()
{
return array(
array('http://example.com/video')
);
}
/**
* Test getFilename function
2015-10-29 18:40:22 +01:00
*
* @param string $url URL
* @param string $format Format
* @param string $result Expected filename
2015-10-29 18:40:22 +01:00
*
2015-10-29 21:23:02 +01:00
* @return void
* @dataProvider URLProvider
*/
public function testGetFilename($url, $format, $result)
{
2016-04-08 19:06:41 +02:00
$filename = $this->download->getFilename($url, $format);
$this->assertEquals($filename, $result);
}
/**
* 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
*
2015-10-29 21:23:02 +01:00
* @return void
* @dataProvider URLProvider
*/
public function testGetJSON($url, $format)
{
2016-04-08 19:06:41 +02:00
$info = $this->download->getJSON($url, $format);
$this->assertObjectHasAttribute('webpage_url', $info);
$this->assertObjectHasAttribute('url', $info);
$this->assertObjectHasAttribute('ext', $info);
$this->assertObjectHasAttribute('title', $info);
$this->assertObjectHasAttribute('formats', $info);
$this->assertObjectHasAttribute('_filename', $info);
}
/**
* Test getJSON function errors
2015-10-29 18:40:22 +01:00
*
* @param string $url URL
2015-10-29 18:40:22 +01:00
*
2015-10-29 21:23:02 +01: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
{
2016-04-08 19:06:41 +02:00
$videoURL = $this->download->getJSON($url);
2015-08-29 21:46:57 +02:00
}
}