mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[test_InfoExtractor] Add test for unquoted attribute
This commit is contained in:
		| @@ -36,11 +36,13 @@ class TestInfoExtractor(unittest.TestCase): | |||||||
|             <meta content="Some video's description " name="og:description"/> |             <meta content="Some video's description " name="og:description"/> | ||||||
|             <meta property='og:image' content='http://domain.com/pic.jpg?key1=val1&key2=val2'/> |             <meta property='og:image' content='http://domain.com/pic.jpg?key1=val1&key2=val2'/> | ||||||
|             <meta content='application/x-shockwave-flash' property='og:video:type'> |             <meta content='application/x-shockwave-flash' property='og:video:type'> | ||||||
|  |             <meta content='Foo' property=og:foobar> | ||||||
|             ''' |             ''' | ||||||
|         self.assertEqual(ie._og_search_title(html), 'Foo') |         self.assertEqual(ie._og_search_title(html), 'Foo') | ||||||
|         self.assertEqual(ie._og_search_description(html), 'Some video\'s description ') |         self.assertEqual(ie._og_search_description(html), 'Some video\'s description ') | ||||||
|         self.assertEqual(ie._og_search_thumbnail(html), 'http://domain.com/pic.jpg?key1=val1&key2=val2') |         self.assertEqual(ie._og_search_thumbnail(html), 'http://domain.com/pic.jpg?key1=val1&key2=val2') | ||||||
|         self.assertEqual(ie._og_search_video_url(html, default=None), None) |         self.assertEqual(ie._og_search_video_url(html, default=None), None) | ||||||
|  |         self.assertEqual(ie._og_search_property('foobar', html), 'Foo') | ||||||
|  |  | ||||||
|     def test_html_search_meta(self): |     def test_html_search_meta(self): | ||||||
|         ie = self.ie |         ie = self.ie | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․