mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
adding photobucket test
This commit is contained in:
parent
a4b5f22554
commit
b4e5de51ec
@ -4,7 +4,7 @@ import hashlib
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
from youtube_dl.FileDownloader import FileDownloader
|
from youtube_dl.FileDownloader import FileDownloader
|
||||||
from youtube_dl.InfoExtractors import YoutubeIE, DailymotionIE, MetacafeIE
|
from youtube_dl.InfoExtractors import YoutubeIE, DailymotionIE, MetacafeIE, PhotobucketIE
|
||||||
|
|
||||||
class DownloadTest(unittest.TestCase):
|
class DownloadTest(unittest.TestCase):
|
||||||
#calculated with md5sum:
|
#calculated with md5sum:
|
||||||
@ -22,6 +22,11 @@ class DownloadTest(unittest.TestCase):
|
|||||||
METACAFE_URL = "http://www.metacafe.com/watch/yt-bV9L5Ht9LgY/download_youtube_playlist_with_youtube_dl/"
|
METACAFE_URL = "http://www.metacafe.com/watch/yt-bV9L5Ht9LgY/download_youtube_playlist_with_youtube_dl/"
|
||||||
METACAFE_FILE = ""
|
METACAFE_FILE = ""
|
||||||
|
|
||||||
|
|
||||||
|
PHOTOBUCKET_MD5 = ""
|
||||||
|
PHOTOBUCKET_URL = "http://www.metacafe.com/watch/yt-bV9L5Ht9LgY/download_youtube_playlist_with_youtube_dl/"
|
||||||
|
PHOTOBUCKET_FILE = ""
|
||||||
|
|
||||||
def test_youtube(self):
|
def test_youtube(self):
|
||||||
#let's download a file from youtube
|
#let's download a file from youtube
|
||||||
fd = FileDownloader({})
|
fd = FileDownloader({})
|
||||||
@ -48,11 +53,24 @@ class DownloadTest(unittest.TestCase):
|
|||||||
md5_down_file = md5_for_file(DownloadTest.METACAFE_FILE)
|
md5_down_file = md5_for_file(DownloadTest.METACAFE_FILE)
|
||||||
self.assertEqual(md5_down_file, DownloadTest.METACAFE_MD5)
|
self.assertEqual(md5_down_file, DownloadTest.METACAFE_MD5)
|
||||||
|
|
||||||
|
def test_photobucket(self):
|
||||||
|
fd = FileDownloader({})
|
||||||
|
fd.add_info_extractor(PhotobucketIE())
|
||||||
|
fd.download([DownloadTest.PHOTOBUCKET_URL])
|
||||||
|
self.assertTrue(os.path.exists(DownloadTest.PHOTOBUCKET_FILE))
|
||||||
|
md5_down_file = md5_for_file(DownloadTest.PHOTOBUCKET_FILE)
|
||||||
|
self.assertEqual(md5_down_file, DownloadTest.PHOTOBUCKET_MD5)
|
||||||
|
|
||||||
|
|
||||||
def cleanUp(self):
|
def cleanUp(self):
|
||||||
if os.path.exists(DownloadTest.YOUTUBE_FILE):
|
if os.path.exists(DownloadTest.YOUTUBE_FILE):
|
||||||
os.remove(DownloadTest.YOUTUBE_FILE)
|
os.remove(DownloadTest.YOUTUBE_FILE)
|
||||||
if os.path.exists(DownloadTest.DAILYMOTION_FILE):
|
if os.path.exists(DownloadTest.DAILYMOTION_FILE):
|
||||||
os.remove(DownloadTest.DAILYMOTION_FILE)
|
os.remove(DownloadTest.DAILYMOTION_FILE)
|
||||||
|
if os.path.exists(DownloadTest.METACAFE_FILE):
|
||||||
|
os.remove(DownloadTest.METACAFE_FILE)
|
||||||
|
if os.path.exists(DownloadTest.PHOTOBUCKET_FILE):
|
||||||
|
os.remove(DownloadTest.PHOTOBUCKET_FILE)
|
||||||
|
|
||||||
def md5_for_file(f, block_size=2**20):
|
def md5_for_file(f, block_size=2**20):
|
||||||
md5 = hashlib.md5()
|
md5 = hashlib.md5()
|
||||||
|
Loading…
Reference in New Issue
Block a user