adding dailymotion test
This commit is contained in:
parent
137c5803c3
commit
ff08984246
1 changed files with 16 additions and 1 deletions
|
@ -4,7 +4,7 @@ import hashlib
|
|||
import os
|
||||
|
||||
from youtube_dl.FileDownloader import FileDownloader
|
||||
from youtube_dl.InfoExtractors import YoutubeIE
|
||||
from youtube_dl.InfoExtractors import YoutubeIE, DailymotionIE
|
||||
|
||||
class DownloadTest(unittest.TestCase):
|
||||
#calculated with md5sum:
|
||||
|
@ -13,6 +13,10 @@ class DownloadTest(unittest.TestCase):
|
|||
YOUTUBE_URL = "http://www.youtube.com/watch?v=BaW_jenozKc"
|
||||
YOUTUBE_FILE = "BaW_jenozKc.flv"
|
||||
|
||||
DAILYMOTION_MD5 = ""
|
||||
DAILYMOTION_URL = "http://www.dailymotion.com/video/x33vw9_tutoriel-de-youtubeur-dl-des-video_tech"
|
||||
DAILYMOTION_FILE = ""
|
||||
|
||||
def test_youtube(self):
|
||||
#let's download a file from youtube
|
||||
fd = FileDownloader({})
|
||||
|
@ -22,9 +26,20 @@ class DownloadTest(unittest.TestCase):
|
|||
md5_down_file = md5_for_file(DownloadTest.YOUTUBE_FILE)
|
||||
self.assertEqual(md5_down_file, DownloadTest.YOUTUBE_MD5)
|
||||
|
||||
def test_dailymotion(self):
|
||||
fd = FileDownloader({})
|
||||
fd.add_info_extractor(DailymotionIE())
|
||||
fd.download([DownloadTest.DAILYMOTION_URL])
|
||||
self.assertTrue(os.path.exists(DownloadTest.DAILYMOTION_FILE))
|
||||
md5_down_file = md5_for_file(DownloadTest.DAILYMOTION_FILE)
|
||||
self.assertEqual(md5_down_file, DownloadTest.DAILYMOTION_MD5)
|
||||
|
||||
|
||||
def cleanUp(self):
|
||||
if os.path.exists(DownloadTest.YOUTUBE_FILE):
|
||||
os.remove(DownloadTest.YOUTUBE_FILE)
|
||||
if os.path.exists(DownloadTest.DAILYMOTION_FILE):
|
||||
os.remove(DownloadTest.DAILYMOTION_FILE)
|
||||
|
||||
def md5_for_file(f, block_size=2**20):
|
||||
md5 = hashlib.md5()
|
||||
|
|
Loading…
Reference in a new issue