Skip to content

Commit

Permalink
adding second vimeo url
Browse files Browse the repository at this point in the history
  • Loading branch information
gcmalloc committed Oct 24, 2012
1 parent fb0e99b commit a8ac2f8
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions test/test_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -105,8 +108,8 @@ def test_xvideo(self):
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())
Expand All @@ -115,6 +118,17 @@ def test_vimeo(self):
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))
Expand Down

0 comments on commit a8ac2f8

Please sign in to comment.