mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	some changes to keep the same standard
This commit is contained in:
		| @@ -7,31 +7,30 @@ from youtube_dl.FileDownloader import FileDownloader | ||||
| from youtube_dl.InfoExtractors  import YoutubeIE | ||||
|  | ||||
| class DownloadTest(unittest.TestCase): | ||||
|     #calculated with the md5sum utility | ||||
|     #md5sum (GNU coreutils) 8.19 | ||||
|     YOUTUBE_MD5 = "8547978241cb87dd6782b10b8e90acc3" | ||||
|     YOUTUBE_URL = "http://www.youtube.com/watch?v=BaW_jenozKc" | ||||
|     YOUTUBE_FILE = "BaW_jenozKc.flv" | ||||
| 	#calculated with md5sum: | ||||
| 	#	md5sum (GNU coreutils) 8.19 | ||||
| 	YOUTUBE_MD5 = "8547978241cb87dd6782b10b8e90acc3" | ||||
| 	YOUTUBE_URL = "http://www.youtube.com/watch?v=BaW_jenozKc" | ||||
| 	YOUTUBE_FILE = "BaW_jenozKc.flv" | ||||
|  | ||||
|     def test_youtube(self): | ||||
|         #let's download a file from youtube | ||||
|         global YOUTUBE_URL | ||||
|         fd = FileDownloader({}) | ||||
|         fd.add_info_extractor(YoutubeIE()) | ||||
|         fd.download([DownloadTest.YOUTUBE_URL]) | ||||
|         self.assertTrue(os.path.exists(DownloadTest.YOUTUBE_FILE)) | ||||
|         md5_down_file = md5_for_file(DownloadTest.YOUTUBE_FILE) | ||||
|         self.assertEqual(md5_down_file, DownloadTest.YOUTUBE_MD5) | ||||
| 	def test_youtube(self): | ||||
| 		#let's download a file from youtube | ||||
| 		fd = FileDownloader({}) | ||||
| 		fd.add_info_extractor(YoutubeIE()) | ||||
| 		fd.download([DownloadTest.YOUTUBE_URL]) | ||||
| 		self.assertTrue(os.path.exists(DownloadTest.YOUTUBE_FILE)) | ||||
| 		md5_down_file = md5_for_file(DownloadTest.YOUTUBE_FILE) | ||||
| 		self.assertEqual(md5_down_file, DownloadTest.YOUTUBE_MD5) | ||||
|  | ||||
|     def cleanUp(self): | ||||
|         if os.path.exists(DownloadTest.YOUTUBE_FILE): | ||||
|             os.remove(DownloadTest.YOUTUBE_FILE) | ||||
| 	def cleanUp(self): | ||||
| 		if os.path.exists(DownloadTest.YOUTUBE_FILE): | ||||
| 			os.remove(DownloadTest.YOUTUBE_FILE) | ||||
|  | ||||
| def md5_for_file(f, block_size=2**20): | ||||
|     md5 = hashlib.md5() | ||||
|     while True: | ||||
|         data = f.read(block_size) | ||||
|         if not data: | ||||
|             break | ||||
|         md5.update(data) | ||||
|         return md5.digest() | ||||
| 	md5 = hashlib.md5() | ||||
| 	while True: | ||||
| 		data = f.read(block_size) | ||||
| 		if not data: | ||||
| 			break | ||||
| 		md5.update(data) | ||||
| 		return md5.digest() | ||||
|   | ||||
		Reference in New Issue
	
	Block a user