You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

846 lines
45KB

  1. #!/usr/bin/env python
  2. from __future__ import unicode_literals
  3. # Allow direct execution
  4. import io
  5. import os
  6. import sys
  7. import unittest
  8. sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
  9. from test.helper import FakeYDL, expect_dict, expect_value, http_server_port
  10. from youtube_dl.compat import compat_etree_fromstring, compat_http_server
  11. from youtube_dl.extractor.common import InfoExtractor
  12. from youtube_dl.extractor import YoutubeIE, get_info_extractor
  13. from youtube_dl.utils import encode_data_uri, strip_jsonp, ExtractorError, RegexNotFoundError
  14. import threading
  15. TEAPOT_RESPONSE_STATUS = 418
  16. TEAPOT_RESPONSE_BODY = "<h1>418 I'm a teapot</h1>"
  17. class InfoExtractorTestRequestHandler(compat_http_server.BaseHTTPRequestHandler):
  18. def log_message(self, format, *args):
  19. pass
  20. def do_GET(self):
  21. if self.path == '/teapot':
  22. self.send_response(TEAPOT_RESPONSE_STATUS)
  23. self.send_header('Content-Type', 'text/html; charset=utf-8')
  24. self.end_headers()
  25. self.wfile.write(TEAPOT_RESPONSE_BODY.encode())
  26. else:
  27. assert False
  28. class TestIE(InfoExtractor):
  29. pass
  30. class TestInfoExtractor(unittest.TestCase):
  31. def setUp(self):
  32. self.ie = TestIE(FakeYDL())
  33. def test_ie_key(self):
  34. self.assertEqual(get_info_extractor(YoutubeIE.ie_key()), YoutubeIE)
  35. def test_html_search_regex(self):
  36. html = '<p id="foo">Watch this <a href="http://www.youtube.com/watch?v=BaW_jenozKc">video</a></p>'
  37. search = lambda re, *args: self.ie._html_search_regex(re, html, *args)
  38. self.assertEqual(search(r'<p id="foo">(.+?)</p>', 'foo'), 'Watch this video')
  39. def test_opengraph(self):
  40. ie = self.ie
  41. html = '''
  42. <meta name="og:title" content='Foo'/>
  43. <meta content="Some video's description " name="og:description"/>
  44. <meta property='og:image' content='http://domain.com/pic.jpg?key1=val1&amp;key2=val2'/>
  45. <meta content='application/x-shockwave-flash' property='og:video:type'>
  46. <meta content='Foo' property=og:foobar>
  47. <meta name="og:test1" content='foo > < bar'/>
  48. <meta name="og:test2" content="foo >//< bar"/>
  49. <meta property=og-test3 content='Ill-formatted opengraph'/>
  50. '''
  51. self.assertEqual(ie._og_search_title(html), 'Foo')
  52. self.assertEqual(ie._og_search_description(html), 'Some video\'s description ')
  53. self.assertEqual(ie._og_search_thumbnail(html), 'http://domain.com/pic.jpg?key1=val1&key2=val2')
  54. self.assertEqual(ie._og_search_video_url(html, default=None), None)
  55. self.assertEqual(ie._og_search_property('foobar', html), 'Foo')
  56. self.assertEqual(ie._og_search_property('test1', html), 'foo > < bar')
  57. self.assertEqual(ie._og_search_property('test2', html), 'foo >//< bar')
  58. self.assertEqual(ie._og_search_property('test3', html), 'Ill-formatted opengraph')
  59. self.assertEqual(ie._og_search_property(('test0', 'test1'), html), 'foo > < bar')
  60. self.assertRaises(RegexNotFoundError, ie._og_search_property, 'test0', html, None, fatal=True)
  61. self.assertRaises(RegexNotFoundError, ie._og_search_property, ('test0', 'test00'), html, None, fatal=True)
  62. def test_html_search_meta(self):
  63. ie = self.ie
  64. html = '''
  65. <meta name="a" content="1" />
  66. <meta name='b' content='2'>
  67. <meta name="c" content='3'>
  68. <meta name=d content='4'>
  69. <meta property="e" content='5' >
  70. <meta content="6" name="f">
  71. '''
  72. self.assertEqual(ie._html_search_meta('a', html), '1')
  73. self.assertEqual(ie._html_search_meta('b', html), '2')
  74. self.assertEqual(ie._html_search_meta('c', html), '3')
  75. self.assertEqual(ie._html_search_meta('d', html), '4')
  76. self.assertEqual(ie._html_search_meta('e', html), '5')
  77. self.assertEqual(ie._html_search_meta('f', html), '6')
  78. self.assertEqual(ie._html_search_meta(('a', 'b', 'c'), html), '1')
  79. self.assertEqual(ie._html_search_meta(('c', 'b', 'a'), html), '3')
  80. self.assertEqual(ie._html_search_meta(('z', 'x', 'c'), html), '3')
  81. self.assertRaises(RegexNotFoundError, ie._html_search_meta, 'z', html, None, fatal=True)
  82. self.assertRaises(RegexNotFoundError, ie._html_search_meta, ('z', 'x'), html, None, fatal=True)
  83. def test_download_json(self):
  84. uri = encode_data_uri(b'{"foo": "blah"}', 'application/json')
  85. self.assertEqual(self.ie._download_json(uri, None), {'foo': 'blah'})
  86. uri = encode_data_uri(b'callback({"foo": "blah"})', 'application/javascript')
  87. self.assertEqual(self.ie._download_json(uri, None, transform_source=strip_jsonp), {'foo': 'blah'})
  88. uri = encode_data_uri(b'{"foo": invalid}', 'application/json')
  89. self.assertRaises(ExtractorError, self.ie._download_json, uri, None)
  90. self.assertEqual(self.ie._download_json(uri, None, fatal=False), None)
  91. def test_extract_jwplayer_data_realworld(self):
  92. # from http://www.suffolk.edu/sjc/
  93. expect_dict(
  94. self,
  95. self.ie._extract_jwplayer_data(r'''
  96. <script type='text/javascript'>
  97. jwplayer('my-video').setup({
  98. file: 'rtmp://192.138.214.154/live/sjclive',
  99. fallback: 'true',
  100. width: '95%',
  101. aspectratio: '16:9',
  102. primary: 'flash',
  103. mediaid:'XEgvuql4'
  104. });
  105. </script>
  106. ''', None, require_title=False),
  107. {
  108. 'id': 'XEgvuql4',
  109. 'formats': [{
  110. 'url': 'rtmp://192.138.214.154/live/sjclive',
  111. 'ext': 'flv'
  112. }]
  113. })
  114. # from https://www.pornoxo.com/videos/7564/striptease-from-sexy-secretary/
  115. expect_dict(
  116. self,
  117. self.ie._extract_jwplayer_data(r'''
  118. <script type="text/javascript">
  119. jwplayer("mediaplayer").setup({
  120. 'videoid': "7564",
  121. 'width': "100%",
  122. 'aspectratio': "16:9",
  123. 'stretching': "exactfit",
  124. 'autostart': 'false',
  125. 'flashplayer': "https://t04.vipstreamservice.com/jwplayer/v5.10/player.swf",
  126. 'file': "https://cdn.pornoxo.com/key=MF+oEbaxqTKb50P-w9G3nA,end=1489689259,ip=104.199.146.27/ip=104.199.146.27/speed=6573765/buffer=3.0/2009-12/4b2157147afe5efa93ce1978e0265289c193874e02597.flv",
  127. 'image': "https://t03.vipstreamservice.com/thumbs/pxo-full/2009-12/14/a4b2157147afe5efa93ce1978e0265289c193874e02597.flv-full-13.jpg",
  128. 'filefallback': "https://cdn.pornoxo.com/key=9ZPsTR5EvPLQrBaak2MUGA,end=1489689259,ip=104.199.146.27/ip=104.199.146.27/speed=6573765/buffer=3.0/2009-12/m_4b2157147afe5efa93ce1978e0265289c193874e02597.mp4",
  129. 'logo.hide': true,
  130. 'skin': "https://t04.vipstreamservice.com/jwplayer/skin/modieus-blk.zip",
  131. 'plugins': "https://t04.vipstreamservice.com/jwplayer/dock/dockableskinnableplugin.swf",
  132. 'dockableskinnableplugin.piclink': "/index.php?key=ajax-videothumbsn&vid=7564&data=2009-12--14--4b2157147afe5efa93ce1978e0265289c193874e02597.flv--17370",
  133. 'controlbar': 'bottom',
  134. 'modes': [
  135. {type: 'flash', src: 'https://t04.vipstreamservice.com/jwplayer/v5.10/player.swf'}
  136. ],
  137. 'provider': 'http'
  138. });
  139. //noinspection JSAnnotator
  140. invideo.setup({
  141. adsUrl: "/banner-iframe/?zoneId=32",
  142. adsUrl2: "",
  143. autostart: false
  144. });
  145. </script>
  146. ''', 'dummy', require_title=False),
  147. {
  148. 'thumbnail': 'https://t03.vipstreamservice.com/thumbs/pxo-full/2009-12/14/a4b2157147afe5efa93ce1978e0265289c193874e02597.flv-full-13.jpg',
  149. 'formats': [{
  150. 'url': 'https://cdn.pornoxo.com/key=MF+oEbaxqTKb50P-w9G3nA,end=1489689259,ip=104.199.146.27/ip=104.199.146.27/speed=6573765/buffer=3.0/2009-12/4b2157147afe5efa93ce1978e0265289c193874e02597.flv',
  151. 'ext': 'flv'
  152. }]
  153. })
  154. # from http://www.indiedb.com/games/king-machine/videos
  155. expect_dict(
  156. self,
  157. self.ie._extract_jwplayer_data(r'''
  158. <script>
  159. jwplayer("mediaplayer").setup({"abouttext":"Visit Indie DB","aboutlink":"http:\/\/www.indiedb.com\/","displaytitle":false,"autostart":false,"repeat":false,"title":"king machine trailer 1","sharing":{"link":"http:\/\/www.indiedb.com\/games\/king-machine\/videos\/king-machine-trailer-1","code":"<iframe width=\"560\" height=\"315\" src=\"http:\/\/www.indiedb.com\/media\/iframe\/1522983\" frameborder=\"0\" allowfullscreen><\/iframe><br><a href=\"http:\/\/www.indiedb.com\/games\/king-machine\/videos\/king-machine-trailer-1\">king machine trailer 1 - Indie DB<\/a>"},"related":{"file":"http:\/\/rss.indiedb.com\/media\/recommended\/1522983\/feed\/rss.xml","dimensions":"160x120","onclick":"link"},"sources":[{"file":"http:\/\/cdn.dbolical.com\/cache\/videos\/games\/1\/50\/49678\/encode_mp4\/king-machine-trailer.mp4","label":"360p SD","default":"true"},{"file":"http:\/\/cdn.dbolical.com\/cache\/videos\/games\/1\/50\/49678\/encode720p_mp4\/king-machine-trailer.mp4","label":"720p HD"}],"image":"http:\/\/media.indiedb.com\/cache\/images\/games\/1\/50\/49678\/thumb_620x2000\/king-machine-trailer.mp4.jpg","advertising":{"client":"vast","tag":"http:\/\/ads.intergi.com\/adrawdata\/3.0\/5205\/4251742\/0\/1013\/ADTECH;cors=yes;width=560;height=315;referring_url=http:\/\/www.indiedb.com\/games\/king-machine\/videos\/king-machine-trailer-1;content_url=http:\/\/www.indiedb.com\/games\/king-machine\/videos\/king-machine-trailer-1;media_id=1522983;title=king+machine+trailer+1;device=__DEVICE__;model=__MODEL__;os=Windows+OS;osversion=__OSVERSION__;ua=__UA__;ip=109.171.17.81;uniqueid=1522983;tags=__TAGS__;number=58cac25928151;time=1489683033"},"width":620,"height":349}).once("play", function(event) {
  160. videoAnalytics("play");
  161. }).once("complete", function(event) {
  162. videoAnalytics("completed");
  163. });
  164. </script>
  165. ''', 'dummy'),
  166. {
  167. 'title': 'king machine trailer 1',
  168. 'thumbnail': 'http://media.indiedb.com/cache/images/games/1/50/49678/thumb_620x2000/king-machine-trailer.mp4.jpg',
  169. 'formats': [{
  170. 'url': 'http://cdn.dbolical.com/cache/videos/games/1/50/49678/encode_mp4/king-machine-trailer.mp4',
  171. 'height': 360,
  172. 'ext': 'mp4'
  173. }, {
  174. 'url': 'http://cdn.dbolical.com/cache/videos/games/1/50/49678/encode720p_mp4/king-machine-trailer.mp4',
  175. 'height': 720,
  176. 'ext': 'mp4'
  177. }]
  178. })
  179. def test_parse_m3u8_formats(self):
  180. _TEST_CASES = [
  181. (
  182. # https://github.com/ytdl-org/youtube-dl/issues/11507
  183. # http://pluzz.francetv.fr/videos/le_ministere.html
  184. 'pluzz_francetv_11507',
  185. 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/master.m3u8?caption=2017%2F16%2F156589847-1492488987.m3u8%3Afra%3AFrancais&audiotrack=0%3Afra%3AFrancais',
  186. [{
  187. 'url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/index_0_av.m3u8?null=0',
  188. 'manifest_url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/master.m3u8?caption=2017%2F16%2F156589847-1492488987.m3u8%3Afra%3AFrancais&audiotrack=0%3Afra%3AFrancais',
  189. 'ext': 'mp4',
  190. 'format_id': '180',
  191. 'protocol': 'm3u8',
  192. 'acodec': 'mp4a.40.2',
  193. 'vcodec': 'avc1.66.30',
  194. 'tbr': 180,
  195. 'width': 256,
  196. 'height': 144,
  197. }, {
  198. 'url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/index_1_av.m3u8?null=0',
  199. 'manifest_url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/master.m3u8?caption=2017%2F16%2F156589847-1492488987.m3u8%3Afra%3AFrancais&audiotrack=0%3Afra%3AFrancais',
  200. 'ext': 'mp4',
  201. 'format_id': '303',
  202. 'protocol': 'm3u8',
  203. 'acodec': 'mp4a.40.2',
  204. 'vcodec': 'avc1.66.30',
  205. 'tbr': 303,
  206. 'width': 320,
  207. 'height': 180,
  208. }, {
  209. 'url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/index_2_av.m3u8?null=0',
  210. 'manifest_url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/master.m3u8?caption=2017%2F16%2F156589847-1492488987.m3u8%3Afra%3AFrancais&audiotrack=0%3Afra%3AFrancais',
  211. 'ext': 'mp4',
  212. 'format_id': '575',
  213. 'protocol': 'm3u8',
  214. 'acodec': 'mp4a.40.2',
  215. 'vcodec': 'avc1.66.30',
  216. 'tbr': 575,
  217. 'width': 512,
  218. 'height': 288,
  219. }, {
  220. 'url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/index_3_av.m3u8?null=0',
  221. 'manifest_url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/master.m3u8?caption=2017%2F16%2F156589847-1492488987.m3u8%3Afra%3AFrancais&audiotrack=0%3Afra%3AFrancais',
  222. 'ext': 'mp4',
  223. 'format_id': '831',
  224. 'protocol': 'm3u8',
  225. 'acodec': 'mp4a.40.2',
  226. 'vcodec': 'avc1.77.30',
  227. 'tbr': 831,
  228. 'width': 704,
  229. 'height': 396,
  230. }, {
  231. 'url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/index_4_av.m3u8?null=0',
  232. 'manifest_url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/master.m3u8?caption=2017%2F16%2F156589847-1492488987.m3u8%3Afra%3AFrancais&audiotrack=0%3Afra%3AFrancais',
  233. 'ext': 'mp4',
  234. 'protocol': 'm3u8',
  235. 'format_id': '1467',
  236. 'acodec': 'mp4a.40.2',
  237. 'vcodec': 'avc1.77.30',
  238. 'tbr': 1467,
  239. 'width': 1024,
  240. 'height': 576,
  241. }]
  242. ),
  243. (
  244. # https://github.com/ytdl-org/youtube-dl/issues/11995
  245. # http://teamcoco.com/video/clueless-gamer-super-bowl-for-honor
  246. 'teamcoco_11995',
  247. 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/main.m3u8',
  248. [{
  249. 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-audio-160k_v4.m3u8',
  250. 'manifest_url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/main.m3u8',
  251. 'ext': 'mp4',
  252. 'format_id': 'audio-0-Default',
  253. 'protocol': 'm3u8',
  254. 'vcodec': 'none',
  255. }, {
  256. 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-audio-64k_v4.m3u8',
  257. 'manifest_url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/main.m3u8',
  258. 'ext': 'mp4',
  259. 'format_id': 'audio-1-Default',
  260. 'protocol': 'm3u8',
  261. 'vcodec': 'none',
  262. }, {
  263. 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-audio-64k_v4.m3u8',
  264. 'manifest_url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/main.m3u8',
  265. 'ext': 'mp4',
  266. 'format_id': '71',
  267. 'protocol': 'm3u8',
  268. 'acodec': 'mp4a.40.5',
  269. 'vcodec': 'none',
  270. 'tbr': 71,
  271. }, {
  272. 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-400k_v4.m3u8',
  273. 'manifest_url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/main.m3u8',
  274. 'ext': 'mp4',
  275. 'format_id': '413',
  276. 'protocol': 'm3u8',
  277. 'acodec': 'none',
  278. 'vcodec': 'avc1.42001e',
  279. 'tbr': 413,
  280. 'width': 400,
  281. 'height': 224,
  282. }, {
  283. 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-400k_v4.m3u8',
  284. 'manifest_url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/main.m3u8',
  285. 'ext': 'mp4',
  286. 'format_id': '522',
  287. 'protocol': 'm3u8',
  288. 'acodec': 'none',
  289. 'vcodec': 'avc1.42001e',
  290. 'tbr': 522,
  291. 'width': 400,
  292. 'height': 224,
  293. }, {
  294. 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-1m_v4.m3u8',
  295. 'manifest_url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/main.m3u8',
  296. 'ext': 'mp4',
  297. 'format_id': '1205',
  298. 'protocol': 'm3u8',
  299. 'acodec': 'none',
  300. 'vcodec': 'avc1.4d001e',
  301. 'tbr': 1205,
  302. 'width': 640,
  303. 'height': 360,
  304. }, {
  305. 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-2m_v4.m3u8',
  306. 'manifest_url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/main.m3u8',
  307. 'ext': 'mp4',
  308. 'format_id': '2374',
  309. 'protocol': 'm3u8',
  310. 'acodec': 'none',
  311. 'vcodec': 'avc1.4d001f',
  312. 'tbr': 2374,
  313. 'width': 1024,
  314. 'height': 576,
  315. }]
  316. ),
  317. (
  318. # https://github.com/ytdl-org/youtube-dl/issues/12211
  319. # http://video.toggle.sg/en/series/whoopie-s-world/ep3/478601
  320. 'toggle_mobile_12211',
  321. 'http://cdnapi.kaltura.com/p/2082311/sp/208231100/playManifest/protocol/http/entryId/0_89q6e8ku/format/applehttp/tags/mobile_sd/f/a.m3u8',
  322. [{
  323. 'url': 'http://k.toggle.sg/fhls/p/2082311/sp/208231100/serveFlavor/entryId/0_89q6e8ku/v/2/pv/1/flavorId/0_sa2ntrdg/name/a.mp4/index.m3u8',
  324. 'manifest_url': 'http://cdnapi.kaltura.com/p/2082311/sp/208231100/playManifest/protocol/http/entryId/0_89q6e8ku/format/applehttp/tags/mobile_sd/f/a.m3u8',
  325. 'ext': 'mp4',
  326. 'format_id': 'audio-English',
  327. 'protocol': 'm3u8',
  328. 'language': 'eng',
  329. 'vcodec': 'none',
  330. }, {
  331. 'url': 'http://k.toggle.sg/fhls/p/2082311/sp/208231100/serveFlavor/entryId/0_89q6e8ku/v/2/pv/1/flavorId/0_r7y0nitg/name/a.mp4/index.m3u8',
  332. 'manifest_url': 'http://cdnapi.kaltura.com/p/2082311/sp/208231100/playManifest/protocol/http/entryId/0_89q6e8ku/format/applehttp/tags/mobile_sd/f/a.m3u8',
  333. 'ext': 'mp4',
  334. 'format_id': 'audio-Undefined',
  335. 'protocol': 'm3u8',
  336. 'language': 'und',
  337. 'vcodec': 'none',
  338. }, {
  339. 'url': 'http://k.toggle.sg/fhls/p/2082311/sp/208231100/serveFlavor/entryId/0_89q6e8ku/v/2/pv/1/flavorId/0_qlk9hlzr/name/a.mp4/index.m3u8',
  340. 'manifest_url': 'http://cdnapi.kaltura.com/p/2082311/sp/208231100/playManifest/protocol/http/entryId/0_89q6e8ku/format/applehttp/tags/mobile_sd/f/a.m3u8',
  341. 'ext': 'mp4',
  342. 'format_id': '155',
  343. 'protocol': 'm3u8',
  344. 'tbr': 155.648,
  345. 'width': 320,
  346. 'height': 180,
  347. }, {
  348. 'url': 'http://k.toggle.sg/fhls/p/2082311/sp/208231100/serveFlavor/entryId/0_89q6e8ku/v/2/pv/1/flavorId/0_oefackmi/name/a.mp4/index.m3u8',
  349. 'manifest_url': 'http://cdnapi.kaltura.com/p/2082311/sp/208231100/playManifest/protocol/http/entryId/0_89q6e8ku/format/applehttp/tags/mobile_sd/f/a.m3u8',
  350. 'ext': 'mp4',
  351. 'format_id': '502',
  352. 'protocol': 'm3u8',
  353. 'tbr': 502.784,
  354. 'width': 480,
  355. 'height': 270,
  356. }, {
  357. 'url': 'http://k.toggle.sg/fhls/p/2082311/sp/208231100/serveFlavor/entryId/0_89q6e8ku/v/12/pv/1/flavorId/0_vyg9pj7k/name/a.mp4/index.m3u8',
  358. 'manifest_url': 'http://cdnapi.kaltura.com/p/2082311/sp/208231100/playManifest/protocol/http/entryId/0_89q6e8ku/format/applehttp/tags/mobile_sd/f/a.m3u8',
  359. 'ext': 'mp4',
  360. 'format_id': '827',
  361. 'protocol': 'm3u8',
  362. 'tbr': 827.392,
  363. 'width': 640,
  364. 'height': 360,
  365. }, {
  366. 'url': 'http://k.toggle.sg/fhls/p/2082311/sp/208231100/serveFlavor/entryId/0_89q6e8ku/v/12/pv/1/flavorId/0_50n4psvx/name/a.mp4/index.m3u8',
  367. 'manifest_url': 'http://cdnapi.kaltura.com/p/2082311/sp/208231100/playManifest/protocol/http/entryId/0_89q6e8ku/format/applehttp/tags/mobile_sd/f/a.m3u8',
  368. 'ext': 'mp4',
  369. 'format_id': '1396',
  370. 'protocol': 'm3u8',
  371. 'tbr': 1396.736,
  372. 'width': 854,
  373. 'height': 480,
  374. }]
  375. ),
  376. (
  377. # http://www.twitch.tv/riotgames/v/6528877
  378. 'twitch_vod',
  379. 'https://usher.ttvnw.net/vod/6528877?allow_source=true&allow_audio_only=true&allow_spectre=true&player=twitchweb&nauth=%7B%22user_id%22%3Anull%2C%22vod_id%22%3A6528877%2C%22expires%22%3A1492887874%2C%22chansub%22%3A%7B%22restricted_bitrates%22%3A%5B%5D%7D%2C%22privileged%22%3Afalse%2C%22https_required%22%3Afalse%7D&nauthsig=3e29296a6824a0f48f9e731383f77a614fc79bee',
  380. [{
  381. 'url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/audio_only/index-muted-HM49I092CC.m3u8',
  382. 'manifest_url': 'https://usher.ttvnw.net/vod/6528877?allow_source=true&allow_audio_only=true&allow_spectre=true&player=twitchweb&nauth=%7B%22user_id%22%3Anull%2C%22vod_id%22%3A6528877%2C%22expires%22%3A1492887874%2C%22chansub%22%3A%7B%22restricted_bitrates%22%3A%5B%5D%7D%2C%22privileged%22%3Afalse%2C%22https_required%22%3Afalse%7D&nauthsig=3e29296a6824a0f48f9e731383f77a614fc79bee',
  383. 'ext': 'mp4',
  384. 'format_id': 'Audio Only',
  385. 'protocol': 'm3u8',
  386. 'acodec': 'mp4a.40.2',
  387. 'vcodec': 'none',
  388. 'tbr': 182.725,
  389. }, {
  390. 'url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/mobile/index-muted-HM49I092CC.m3u8',
  391. 'manifest_url': 'https://usher.ttvnw.net/vod/6528877?allow_source=true&allow_audio_only=true&allow_spectre=true&player=twitchweb&nauth=%7B%22user_id%22%3Anull%2C%22vod_id%22%3A6528877%2C%22expires%22%3A1492887874%2C%22chansub%22%3A%7B%22restricted_bitrates%22%3A%5B%5D%7D%2C%22privileged%22%3Afalse%2C%22https_required%22%3Afalse%7D&nauthsig=3e29296a6824a0f48f9e731383f77a614fc79bee',
  392. 'ext': 'mp4',
  393. 'format_id': 'Mobile',
  394. 'protocol': 'm3u8',
  395. 'acodec': 'mp4a.40.2',
  396. 'vcodec': 'avc1.42C00D',
  397. 'tbr': 280.474,
  398. 'width': 400,
  399. 'height': 226,
  400. }, {
  401. 'url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/low/index-muted-HM49I092CC.m3u8',
  402. 'manifest_url': 'https://usher.ttvnw.net/vod/6528877?allow_source=true&allow_audio_only=true&allow_spectre=true&player=twitchweb&nauth=%7B%22user_id%22%3Anull%2C%22vod_id%22%3A6528877%2C%22expires%22%3A1492887874%2C%22chansub%22%3A%7B%22restricted_bitrates%22%3A%5B%5D%7D%2C%22privileged%22%3Afalse%2C%22https_required%22%3Afalse%7D&nauthsig=3e29296a6824a0f48f9e731383f77a614fc79bee',
  403. 'ext': 'mp4',
  404. 'format_id': 'Low',
  405. 'protocol': 'm3u8',
  406. 'acodec': 'mp4a.40.2',
  407. 'vcodec': 'avc1.42C01E',
  408. 'tbr': 628.347,
  409. 'width': 640,
  410. 'height': 360,
  411. }, {
  412. 'url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/medium/index-muted-HM49I092CC.m3u8',
  413. 'manifest_url': 'https://usher.ttvnw.net/vod/6528877?allow_source=true&allow_audio_only=true&allow_spectre=true&player=twitchweb&nauth=%7B%22user_id%22%3Anull%2C%22vod_id%22%3A6528877%2C%22expires%22%3A1492887874%2C%22chansub%22%3A%7B%22restricted_bitrates%22%3A%5B%5D%7D%2C%22privileged%22%3Afalse%2C%22https_required%22%3Afalse%7D&nauthsig=3e29296a6824a0f48f9e731383f77a614fc79bee',
  414. 'ext': 'mp4',
  415. 'format_id': 'Medium',
  416. 'protocol': 'm3u8',
  417. 'acodec': 'mp4a.40.2',
  418. 'vcodec': 'avc1.42C01E',
  419. 'tbr': 893.387,
  420. 'width': 852,
  421. 'height': 480,
  422. }, {
  423. 'url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/high/index-muted-HM49I092CC.m3u8',
  424. 'manifest_url': 'https://usher.ttvnw.net/vod/6528877?allow_source=true&allow_audio_only=true&allow_spectre=true&player=twitchweb&nauth=%7B%22user_id%22%3Anull%2C%22vod_id%22%3A6528877%2C%22expires%22%3A1492887874%2C%22chansub%22%3A%7B%22restricted_bitrates%22%3A%5B%5D%7D%2C%22privileged%22%3Afalse%2C%22https_required%22%3Afalse%7D&nauthsig=3e29296a6824a0f48f9e731383f77a614fc79bee',
  425. 'ext': 'mp4',
  426. 'format_id': 'High',
  427. 'protocol': 'm3u8',
  428. 'acodec': 'mp4a.40.2',
  429. 'vcodec': 'avc1.42C01F',
  430. 'tbr': 1603.789,
  431. 'width': 1280,
  432. 'height': 720,
  433. }, {
  434. 'url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/chunked/index-muted-HM49I092CC.m3u8',
  435. 'manifest_url': 'https://usher.ttvnw.net/vod/6528877?allow_source=true&allow_audio_only=true&allow_spectre=true&player=twitchweb&nauth=%7B%22user_id%22%3Anull%2C%22vod_id%22%3A6528877%2C%22expires%22%3A1492887874%2C%22chansub%22%3A%7B%22restricted_bitrates%22%3A%5B%5D%7D%2C%22privileged%22%3Afalse%2C%22https_required%22%3Afalse%7D&nauthsig=3e29296a6824a0f48f9e731383f77a614fc79bee',
  436. 'ext': 'mp4',
  437. 'format_id': 'Source',
  438. 'protocol': 'm3u8',
  439. 'acodec': 'mp4a.40.2',
  440. 'vcodec': 'avc1.100.31',
  441. 'tbr': 3214.134,
  442. 'width': 1280,
  443. 'height': 720,
  444. }]
  445. ),
  446. (
  447. # http://www.vidio.com/watch/165683-dj_ambred-booyah-live-2015
  448. # EXT-X-STREAM-INF tag with NAME attribute that is not defined
  449. # in HLS specification
  450. 'vidio',
  451. 'https://www.vidio.com/videos/165683/playlist.m3u8',
  452. [{
  453. 'url': 'https://cdn1-a.production.vidio.static6.com/uploads/165683/dj_ambred-4383-b300.mp4.m3u8',
  454. 'manifest_url': 'https://www.vidio.com/videos/165683/playlist.m3u8',
  455. 'ext': 'mp4',
  456. 'format_id': '270p 3G',
  457. 'protocol': 'm3u8',
  458. 'tbr': 300,
  459. 'width': 480,
  460. 'height': 270,
  461. }, {
  462. 'url': 'https://cdn1-a.production.vidio.static6.com/uploads/165683/dj_ambred-4383-b600.mp4.m3u8',
  463. 'manifest_url': 'https://www.vidio.com/videos/165683/playlist.m3u8',
  464. 'ext': 'mp4',
  465. 'format_id': '360p SD',
  466. 'protocol': 'm3u8',
  467. 'tbr': 600,
  468. 'width': 640,
  469. 'height': 360,
  470. }, {
  471. 'url': 'https://cdn1-a.production.vidio.static6.com/uploads/165683/dj_ambred-4383-b1200.mp4.m3u8',
  472. 'manifest_url': 'https://www.vidio.com/videos/165683/playlist.m3u8',
  473. 'ext': 'mp4',
  474. 'format_id': '720p HD',
  475. 'protocol': 'm3u8',
  476. 'tbr': 1200,
  477. 'width': 1280,
  478. 'height': 720,
  479. }]
  480. ),
  481. (
  482. # https://github.com/ytdl-org/youtube-dl/issues/18923
  483. # https://www.ted.com/talks/boris_hesser_a_grassroots_healthcare_revolution_in_africa
  484. 'ted_18923',
  485. 'http://hls.ted.com/talks/31241.m3u8',
  486. [{
  487. 'url': 'http://hls.ted.com/videos/BorisHesser_2018S/audio/600k.m3u8?nobumpers=true&uniqueId=76011e2b',
  488. 'format_id': '600k-Audio',
  489. 'vcodec': 'none',
  490. }, {
  491. 'url': 'http://hls.ted.com/videos/BorisHesser_2018S/audio/600k.m3u8?nobumpers=true&uniqueId=76011e2b',
  492. 'format_id': '68',
  493. 'vcodec': 'none',
  494. }, {
  495. 'url': 'http://hls.ted.com/videos/BorisHesser_2018S/video/64k.m3u8?nobumpers=true&uniqueId=76011e2b',
  496. 'format_id': '163',
  497. 'acodec': 'none',
  498. 'width': 320,
  499. 'height': 180,
  500. }, {
  501. 'url': 'http://hls.ted.com/videos/BorisHesser_2018S/video/180k.m3u8?nobumpers=true&uniqueId=76011e2b',
  502. 'format_id': '481',
  503. 'acodec': 'none',
  504. 'width': 512,
  505. 'height': 288,
  506. }, {
  507. 'url': 'http://hls.ted.com/videos/BorisHesser_2018S/video/320k.m3u8?nobumpers=true&uniqueId=76011e2b',
  508. 'format_id': '769',
  509. 'acodec': 'none',
  510. 'width': 512,
  511. 'height': 288,
  512. }, {
  513. 'url': 'http://hls.ted.com/videos/BorisHesser_2018S/video/450k.m3u8?nobumpers=true&uniqueId=76011e2b',
  514. 'format_id': '984',
  515. 'acodec': 'none',
  516. 'width': 512,
  517. 'height': 288,
  518. }, {
  519. 'url': 'http://hls.ted.com/videos/BorisHesser_2018S/video/600k.m3u8?nobumpers=true&uniqueId=76011e2b',
  520. 'format_id': '1255',
  521. 'acodec': 'none',
  522. 'width': 640,
  523. 'height': 360,
  524. }, {
  525. 'url': 'http://hls.ted.com/videos/BorisHesser_2018S/video/950k.m3u8?nobumpers=true&uniqueId=76011e2b',
  526. 'format_id': '1693',
  527. 'acodec': 'none',
  528. 'width': 853,
  529. 'height': 480,
  530. }, {
  531. 'url': 'http://hls.ted.com/videos/BorisHesser_2018S/video/1500k.m3u8?nobumpers=true&uniqueId=76011e2b',
  532. 'format_id': '2462',
  533. 'acodec': 'none',
  534. 'width': 1280,
  535. 'height': 720,
  536. }]
  537. ),
  538. ]
  539. for m3u8_file, m3u8_url, expected_formats in _TEST_CASES:
  540. with io.open('./test/testdata/m3u8/%s.m3u8' % m3u8_file,
  541. mode='r', encoding='utf-8') as f:
  542. formats = self.ie._parse_m3u8_formats(
  543. f.read(), m3u8_url, ext='mp4')
  544. self.ie._sort_formats(formats)
  545. expect_value(self, formats, expected_formats, None)
  546. def test_parse_mpd_formats(self):
  547. _TEST_CASES = [
  548. (
  549. # https://github.com/ytdl-org/youtube-dl/issues/13919
  550. # Also tests duplicate representation ids, see
  551. # https://github.com/ytdl-org/youtube-dl/issues/15111
  552. 'float_duration',
  553. 'http://unknown/manifest.mpd',
  554. [{
  555. 'manifest_url': 'http://unknown/manifest.mpd',
  556. 'ext': 'm4a',
  557. 'format_id': '318597',
  558. 'format_note': 'DASH audio',
  559. 'protocol': 'http_dash_segments',
  560. 'acodec': 'mp4a.40.2',
  561. 'vcodec': 'none',
  562. 'tbr': 61.587,
  563. }, {
  564. 'manifest_url': 'http://unknown/manifest.mpd',
  565. 'ext': 'mp4',
  566. 'format_id': '318597',
  567. 'format_note': 'DASH video',
  568. 'protocol': 'http_dash_segments',
  569. 'acodec': 'none',
  570. 'vcodec': 'avc1.42001f',
  571. 'tbr': 318.597,
  572. 'width': 340,
  573. 'height': 192,
  574. }, {
  575. 'manifest_url': 'http://unknown/manifest.mpd',
  576. 'ext': 'mp4',
  577. 'format_id': '638590',
  578. 'format_note': 'DASH video',
  579. 'protocol': 'http_dash_segments',
  580. 'acodec': 'none',
  581. 'vcodec': 'avc1.42001f',
  582. 'tbr': 638.59,
  583. 'width': 512,
  584. 'height': 288,
  585. }, {
  586. 'manifest_url': 'http://unknown/manifest.mpd',
  587. 'ext': 'mp4',
  588. 'format_id': '1022565',
  589. 'format_note': 'DASH video',
  590. 'protocol': 'http_dash_segments',
  591. 'acodec': 'none',
  592. 'vcodec': 'avc1.4d001f',
  593. 'tbr': 1022.565,
  594. 'width': 688,
  595. 'height': 384,
  596. }, {
  597. 'manifest_url': 'http://unknown/manifest.mpd',
  598. 'ext': 'mp4',
  599. 'format_id': '2046506',
  600. 'format_note': 'DASH video',
  601. 'protocol': 'http_dash_segments',
  602. 'acodec': 'none',
  603. 'vcodec': 'avc1.4d001f',
  604. 'tbr': 2046.506,
  605. 'width': 1024,
  606. 'height': 576,
  607. }, {
  608. 'manifest_url': 'http://unknown/manifest.mpd',
  609. 'ext': 'mp4',
  610. 'format_id': '3998017',
  611. 'format_note': 'DASH video',
  612. 'protocol': 'http_dash_segments',
  613. 'acodec': 'none',
  614. 'vcodec': 'avc1.640029',
  615. 'tbr': 3998.017,
  616. 'width': 1280,
  617. 'height': 720,
  618. }, {
  619. 'manifest_url': 'http://unknown/manifest.mpd',
  620. 'ext': 'mp4',
  621. 'format_id': '5997485',
  622. 'format_note': 'DASH video',
  623. 'protocol': 'http_dash_segments',
  624. 'acodec': 'none',
  625. 'vcodec': 'avc1.640032',
  626. 'tbr': 5997.485,
  627. 'width': 1920,
  628. 'height': 1080,
  629. }]
  630. ), (
  631. # https://github.com/ytdl-org/youtube-dl/pull/14844
  632. 'urls_only',
  633. 'http://unknown/manifest.mpd',
  634. [{
  635. 'manifest_url': 'http://unknown/manifest.mpd',
  636. 'ext': 'mp4',
  637. 'format_id': 'h264_aac_144p_m4s',
  638. 'format_note': 'DASH video',
  639. 'protocol': 'http_dash_segments',
  640. 'acodec': 'mp4a.40.2',
  641. 'vcodec': 'avc3.42c01e',
  642. 'tbr': 200,
  643. 'width': 256,
  644. 'height': 144,
  645. }, {
  646. 'manifest_url': 'http://unknown/manifest.mpd',
  647. 'ext': 'mp4',
  648. 'format_id': 'h264_aac_240p_m4s',
  649. 'format_note': 'DASH video',
  650. 'protocol': 'http_dash_segments',
  651. 'acodec': 'mp4a.40.2',
  652. 'vcodec': 'avc3.42c01e',
  653. 'tbr': 400,
  654. 'width': 424,
  655. 'height': 240,
  656. }, {
  657. 'manifest_url': 'http://unknown/manifest.mpd',
  658. 'ext': 'mp4',
  659. 'format_id': 'h264_aac_360p_m4s',
  660. 'format_note': 'DASH video',
  661. 'protocol': 'http_dash_segments',
  662. 'acodec': 'mp4a.40.2',
  663. 'vcodec': 'avc3.42c01e',
  664. 'tbr': 800,
  665. 'width': 640,
  666. 'height': 360,
  667. }, {
  668. 'manifest_url': 'http://unknown/manifest.mpd',
  669. 'ext': 'mp4',
  670. 'format_id': 'h264_aac_480p_m4s',
  671. 'format_note': 'DASH video',
  672. 'protocol': 'http_dash_segments',
  673. 'acodec': 'mp4a.40.2',
  674. 'vcodec': 'avc3.42c01e',
  675. 'tbr': 1200,
  676. 'width': 856,
  677. 'height': 480,
  678. }, {
  679. 'manifest_url': 'http://unknown/manifest.mpd',
  680. 'ext': 'mp4',
  681. 'format_id': 'h264_aac_576p_m4s',
  682. 'format_note': 'DASH video',
  683. 'protocol': 'http_dash_segments',
  684. 'acodec': 'mp4a.40.2',
  685. 'vcodec': 'avc3.42c01e',
  686. 'tbr': 1600,
  687. 'width': 1024,
  688. 'height': 576,
  689. }, {
  690. 'manifest_url': 'http://unknown/manifest.mpd',
  691. 'ext': 'mp4',
  692. 'format_id': 'h264_aac_720p_m4s',
  693. 'format_note': 'DASH video',
  694. 'protocol': 'http_dash_segments',
  695. 'acodec': 'mp4a.40.2',
  696. 'vcodec': 'avc3.42c01e',
  697. 'tbr': 2400,
  698. 'width': 1280,
  699. 'height': 720,
  700. }, {
  701. 'manifest_url': 'http://unknown/manifest.mpd',
  702. 'ext': 'mp4',
  703. 'format_id': 'h264_aac_1080p_m4s',
  704. 'format_note': 'DASH video',
  705. 'protocol': 'http_dash_segments',
  706. 'acodec': 'mp4a.40.2',
  707. 'vcodec': 'avc3.42c01e',
  708. 'tbr': 4400,
  709. 'width': 1920,
  710. 'height': 1080,
  711. }]
  712. )
  713. ]
  714. for mpd_file, mpd_url, expected_formats in _TEST_CASES:
  715. with io.open('./test/testdata/mpd/%s.mpd' % mpd_file,
  716. mode='r', encoding='utf-8') as f:
  717. formats = self.ie._parse_mpd_formats(
  718. compat_etree_fromstring(f.read().encode('utf-8')),
  719. mpd_url=mpd_url)
  720. self.ie._sort_formats(formats)
  721. expect_value(self, formats, expected_formats, None)
  722. def test_parse_f4m_formats(self):
  723. _TEST_CASES = [
  724. (
  725. # https://github.com/ytdl-org/youtube-dl/issues/14660
  726. 'custom_base_url',
  727. 'http://api.new.livestream.com/accounts/6115179/events/6764928/videos/144884262.f4m',
  728. [{
  729. 'manifest_url': 'http://api.new.livestream.com/accounts/6115179/events/6764928/videos/144884262.f4m',
  730. 'ext': 'flv',
  731. 'format_id': '2148',
  732. 'protocol': 'f4m',
  733. 'tbr': 2148,
  734. 'width': 1280,
  735. 'height': 720,
  736. }]
  737. ),
  738. ]
  739. for f4m_file, f4m_url, expected_formats in _TEST_CASES:
  740. with io.open('./test/testdata/f4m/%s.f4m' % f4m_file,
  741. mode='r', encoding='utf-8') as f:
  742. formats = self.ie._parse_f4m_formats(
  743. compat_etree_fromstring(f.read().encode('utf-8')),
  744. f4m_url, None)
  745. self.ie._sort_formats(formats)
  746. expect_value(self, formats, expected_formats, None)
  747. def test_parse_xspf(self):
  748. _TEST_CASES = [
  749. (
  750. 'foo_xspf',
  751. 'https://example.org/src/foo_xspf.xspf',
  752. [{
  753. 'id': 'foo_xspf',
  754. 'title': 'Pandemonium',
  755. 'description': 'Visit http://bigbrother404.bandcamp.com',
  756. 'duration': 202.416,
  757. 'formats': [{
  758. 'manifest_url': 'https://example.org/src/foo_xspf.xspf',
  759. 'url': 'https://example.org/src/cd1/track%201.mp3',
  760. }],
  761. }, {
  762. 'id': 'foo_xspf',
  763. 'title': 'Final Cartridge (Nichico Twelve Remix)',
  764. 'description': 'Visit http://bigbrother404.bandcamp.com',
  765. 'duration': 255.857,
  766. 'formats': [{
  767. 'manifest_url': 'https://example.org/src/foo_xspf.xspf',
  768. 'url': 'https://example.org/%E3%83%88%E3%83%A9%E3%83%83%E3%82%AF%E3%80%80%EF%BC%92.mp3',
  769. }],
  770. }, {
  771. 'id': 'foo_xspf',
  772. 'title': 'Rebuilding Nightingale',
  773. 'description': 'Visit http://bigbrother404.bandcamp.com',
  774. 'duration': 287.915,
  775. 'formats': [{
  776. 'manifest_url': 'https://example.org/src/foo_xspf.xspf',
  777. 'url': 'https://example.org/src/track3.mp3',
  778. }, {
  779. 'manifest_url': 'https://example.org/src/foo_xspf.xspf',
  780. 'url': 'https://example.com/track3.mp3',
  781. }]
  782. }]
  783. ),
  784. ]
  785. for xspf_file, xspf_url, expected_entries in _TEST_CASES:
  786. with io.open('./test/testdata/xspf/%s.xspf' % xspf_file,
  787. mode='r', encoding='utf-8') as f:
  788. entries = self.ie._parse_xspf(
  789. compat_etree_fromstring(f.read().encode('utf-8')),
  790. xspf_file, xspf_url=xspf_url, xspf_base_url=xspf_url)
  791. expect_value(self, entries, expected_entries, None)
  792. for i in range(len(entries)):
  793. expect_dict(self, entries[i], expected_entries[i])
  794. def test_response_with_expected_status_returns_content(self):
  795. # Checks for mitigations against the effects of
  796. # <https://bugs.python.org/issue15002> that affect Python 3.4.1+, which
  797. # manifest as `_download_webpage`, `_download_xml`, `_download_json`,
  798. # or the underlying `_download_webpage_handle` returning no content
  799. # when a response matches `expected_status`.
  800. httpd = compat_http_server.HTTPServer(
  801. ('127.0.0.1', 0), InfoExtractorTestRequestHandler)
  802. port = http_server_port(httpd)
  803. server_thread = threading.Thread(target=httpd.serve_forever)
  804. server_thread.daemon = True
  805. server_thread.start()
  806. (content, urlh) = self.ie._download_webpage_handle(
  807. 'http://127.0.0.1:%d/teapot' % port, None,
  808. expected_status=TEAPOT_RESPONSE_STATUS)
  809. self.assertEqual(content, TEAPOT_RESPONSE_BODY)
  810. if __name__ == '__main__':
  811. unittest.main()