Skip to content

Commit

Permalink
adding photobucket test
Browse files Browse the repository at this point in the history
  • Loading branch information
gcmalloc committed Oct 12, 2012
1 parent a4b5f22 commit b4e5de5
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion test/test_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
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:
Expand All @@ -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({})
Expand All @@ -48,11 +53,24 @@ def test_metacafe(self):
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()
Expand Down

0 comments on commit b4e5de5

Please sign in to comment.