aboutsummaryrefslogtreecommitdiff
path: root/test/test_download.py
diff options
context:
space:
mode:
authorgcmalloc <gcmalloc@gmail.com>2012-10-24 15:57:19 +0200
committergcmalloc <gcmalloc@gmail.com>2012-10-24 15:57:19 +0200
commita8ac2f866456b1dcf6fde8fd8e889688da67538f (patch)
tree7eedcb12b097e4e8510528218a02db92c3cfa38e /test/test_download.py
parentfb0e99b8845a44f10df2592d6d8f8e227b2209fd (diff)
downloadyoutube-dl-a8ac2f866456b1dcf6fde8fd8e889688da67538f.tar.xz
adding second vimeo url
Diffstat (limited to 'test/test_download.py')
-rw-r--r--test/test_download.py20
1 files changed, 17 insertions, 3 deletions
diff --git a/test/test_download.py b/test/test_download.py
index 983454236..d1d6b119b 100644
--- a/test/test_download.py
+++ b/test/test_download.py
@@ -41,11 +41,14 @@ class DownloadTest(unittest.TestCase):
VIMEO_URL = "http://vimeo.com/14160053"
VIMEO_FILE = ""
+ VIMEO2_MD5 = ""
+ VIMEO2_URL = "http://player.vimeo.com/video/47019590"
+ VIMEO2_FILE = ""
+
SOUNDCLOUD_MD5 = "ce3775768ebb6432fa8495d446a078ed"
SOUNDCLOUD_URL = "http://soundcloud.com/ethmusic/lostin-powers-she-so-heavy"
SOUNDCLOUD_FILE = "n6FLbx6ZzMiu.mp3"
-
STANDFORD_MD5 = "22c8206291368c4e2c9c1a307f0ea0f4"
STANDFORD_URL = "http://openclassroom.stanford.edu/MainFolder/VideoPage.php?course=PracticalUnix&video=intro-environment&speed=100"
STANDFORD_FILE = "PracticalUnix_intro-environment.mp4"
@@ -105,8 +108,8 @@ class DownloadTest(unittest.TestCase):
self.assertEqual(md5_down_file, DownloadTest.XVIDEO_MD5)
def test_vimeo(self):
- #skipped for the moment produce an error
- return
+ #skipped for the moment produce an error
+ return
with open(DownloadTest.PARAMETERS_FILE) as f:
fd = FileDownloader(json.load(f))
fd.add_info_extractor(VimeoIE())
@@ -115,6 +118,17 @@ class DownloadTest(unittest.TestCase):
md5_down_file = md5_for_file(DownloadTest.VIMEO_FILE)
self.assertEqual(md5_down_file, DownloadTest.VIMEO_MD5)
+ def test_vimeo2(self):
+ #skipped for the moment produce an error
+ return
+ with open(DownloadTest.PARAMETERS_FILE) as f:
+ fd = FileDownloader(json.load(f))
+ fd.add_info_extractor(VimeoIE())
+ fd.download([DownloadTest.VIMEO2_URL])
+ self.assertTrue(os.path.exists(DownloadTest.VIMEO2_FILE))
+ md5_down_file = md5_for_file(DownloadTest.VIMEO2_FILE)
+ self.assertEqual(md5_down_file, DownloadTest.VIMEO2_MD5)
+
def test_soundcloud(self):
with open(DownloadTest.PARAMETERS_FILE) as f:
fd = FileDownloader(json.load(f))