aboutsummaryrefslogtreecommitdiff
path: root/test/test_download.py
diff options
context:
space:
mode:
authorgcmalloc <gcmalloc@gmail.com>2012-10-03 14:52:06 +0200
committergcmalloc <gcmalloc@gmail.com>2012-10-12 20:25:22 +0200
commitb4e5de51ec572ea086ebd392b7dac686ced15923 (patch)
treef3ebb13840e987f39839b02273b9c0f908cda0b6 /test/test_download.py
parenta4b5f2255436251b5e2d1a3ae1da369587f01f1f (diff)
downloadyoutube-dl-b4e5de51ec572ea086ebd392b7dac686ced15923.tar.xz
adding photobucket test
Diffstat (limited to 'test/test_download.py')
-rw-r--r--test/test_download.py20
1 files changed, 19 insertions, 1 deletions
diff --git a/test/test_download.py b/test/test_download.py
index 871591a53..7359b7999 100644
--- a/test/test_download.py
+++ b/test/test_download.py
@@ -4,7 +4,7 @@ import hashlib
import os
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):
#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_FILE = ""
+
+ PHOTOBUCKET_MD5 = ""
+ PHOTOBUCKET_URL = "http://www.metacafe.com/watch/yt-bV9L5Ht9LgY/download_youtube_playlist_with_youtube_dl/"
+ PHOTOBUCKET_FILE = ""
+
def test_youtube(self):
#let's download a file from youtube
fd = FileDownloader({})
@@ -48,11 +53,24 @@ class DownloadTest(unittest.TestCase):
md5_down_file = md5_for_file(DownloadTest.METACAFE_FILE)
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):
if os.path.exists(DownloadTest.YOUTUBE_FILE):
os.remove(DownloadTest.YOUTUBE_FILE)
if os.path.exists(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):
md5 = hashlib.md5()