aboutsummaryrefslogtreecommitdiff
path: root/test/test_download.py
diff options
context:
space:
mode:
authorgcmalloc <gcmalloc@gmail.com>2012-10-03 14:42:05 +0200
committergcmalloc <gcmalloc@gmail.com>2012-10-12 20:25:22 +0200
commitff08984246ee635dc2cf89ff105f92b1098e5011 (patch)
treed8ddfce1f601d9887374762034e803bd661bf33a /test/test_download.py
parent137c5803c35f3e06d821ede1ef69733c3b8d338c (diff)
downloadyoutube-dl-ff08984246ee635dc2cf89ff105f92b1098e5011.tar.xz
adding dailymotion test
Diffstat (limited to 'test/test_download.py')
-rw-r--r--test/test_download.py17
1 files changed, 16 insertions, 1 deletions
diff --git a/test/test_download.py b/test/test_download.py
index 50d3a12aa..b90ce6323 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
+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()