Skip to content

Commit

Permalink
adding facebook test
Browse files Browse the repository at this point in the history
  • Loading branch information
gcmalloc committed Oct 12, 2012
1 parent b4e5de5 commit 6da7877
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion test/test_download.py
Expand Up @@ -4,7 +4,9 @@
import os import os


from youtube_dl.FileDownloader import FileDownloader from youtube_dl.FileDownloader import FileDownloader
from youtube_dl.InfoExtractors import YoutubeIE, DailymotionIE, MetacafeIE, PhotobucketIE from youtube_dl.InfoExtractors import YoutubeIE, DailymotionIE
from youtube_dl.InfoExtractors import MetacafeIE, PhotobucketIE
from youtube_dl.InfoExtractors import FacebookIE


class DownloadTest(unittest.TestCase): class DownloadTest(unittest.TestCase):
#calculated with md5sum: #calculated with md5sum:
Expand All @@ -13,6 +15,7 @@ class DownloadTest(unittest.TestCase):
YOUTUBE_URL = "http://www.youtube.com/watch?v=BaW_jenozKc" YOUTUBE_URL = "http://www.youtube.com/watch?v=BaW_jenozKc"
YOUTUBE_FILE = "BaW_jenozKc.flv" YOUTUBE_FILE = "BaW_jenozKc.flv"



DAILYMOTION_MD5 = "" DAILYMOTION_MD5 = ""
DAILYMOTION_URL = "http://www.dailymotion.com/video/x33vw9_tutoriel-de-youtubeur-dl-des-video_tech" DAILYMOTION_URL = "http://www.dailymotion.com/video/x33vw9_tutoriel-de-youtubeur-dl-des-video_tech"
DAILYMOTION_FILE = "" DAILYMOTION_FILE = ""
Expand All @@ -27,6 +30,12 @@ class DownloadTest(unittest.TestCase):
PHOTOBUCKET_URL = "http://www.metacafe.com/watch/yt-bV9L5Ht9LgY/download_youtube_playlist_with_youtube_dl/" PHOTOBUCKET_URL = "http://www.metacafe.com/watch/yt-bV9L5Ht9LgY/download_youtube_playlist_with_youtube_dl/"
PHOTOBUCKET_FILE = "" PHOTOBUCKET_FILE = ""



FACEBOOK_MD5 = ""
FACEBOOK_URL = "https://www.facebook.com/video/video.php?v=207446242657384"
FACEBOOK_FILE = ""


def test_youtube(self): def test_youtube(self):
#let's download a file from youtube #let's download a file from youtube
fd = FileDownloader({}) fd = FileDownloader({})
Expand Down Expand Up @@ -62,6 +71,14 @@ def test_photobucket(self):
self.assertEqual(md5_down_file, DownloadTest.PHOTOBUCKET_MD5) self.assertEqual(md5_down_file, DownloadTest.PHOTOBUCKET_MD5)




def test_facebook(self):
fd = FileDownloader({})
fd.add_info_extractor(FacebookIE())
fd.download([DownloadTest.FACEBOOK_URL])
self.assertTrue(os.path.exists(DownloadTest.FACEBOOK_FILE))
md5_down_file = md5_for_file(DownloadTest.FACEBOOK_FILE)
self.assertEqual(md5_down_file, DownloadTest.FACEBOOK_MD5)

def cleanUp(self): def cleanUp(self):
if os.path.exists(DownloadTest.YOUTUBE_FILE): if os.path.exists(DownloadTest.YOUTUBE_FILE):
os.remove(DownloadTest.YOUTUBE_FILE) os.remove(DownloadTest.YOUTUBE_FILE)
Expand All @@ -71,6 +88,8 @@ def cleanUp(self):
os.remove(DownloadTest.METACAFE_FILE) os.remove(DownloadTest.METACAFE_FILE)
if os.path.exists(DownloadTest.PHOTOBUCKET_FILE): if os.path.exists(DownloadTest.PHOTOBUCKET_FILE):
os.remove(DownloadTest.PHOTOBUCKET_FILE) os.remove(DownloadTest.PHOTOBUCKET_FILE)
if os.path.exists(DownloadTest.FACEBOOK_FILE):
os.remove(DownloadTest.FACEBOOK_FILE)


def md5_for_file(f, block_size=2**20): def md5_for_file(f, block_size=2**20):
md5 = hashlib.md5() md5 = hashlib.md5()
Expand Down

0 comments on commit 6da7877

Please sign in to comment.