]> jfr.im git - yt-dlp.git/blame - test/test_write_annotations.py
[gorillavid] Update IE_DESC
[yt-dlp.git] / test / test_write_annotations.py
CommitLineData
1fb07d10
JG
1#!/usr/bin/env python
2# coding: utf-8
3
44a5f171 4# Allow direct execution
1fb07d10
JG
5import os
6import sys
7import unittest
44a5f171 8sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
1fb07d10 9
d0efb9ec 10from test.helper import get_params, try_rm
44a5f171
PH
11
12
13import io
14
15import xml.etree.ElementTree
1fb07d10
JG
16
17import youtube_dl.YoutubeDL
18import youtube_dl.extractor
1fb07d10 19
1fb07d10
JG
20
21class YoutubeDL(youtube_dl.YoutubeDL):
22 def __init__(self, *args, **kwargs):
23 super(YoutubeDL, self).__init__(*args, **kwargs)
24 self.to_stderr = self.to_screen
25
44a5f171
PH
26params = get_params({
27 'writeannotations': True,
28 'skip_download': True,
29 'writeinfojson': False,
30 'format': 'flv',
31})
32
33
1fb07d10
JG
34TEST_ID = 'gr51aVj-mLg'
35ANNOTATIONS_FILE = TEST_ID + '.flv.annotations.xml'
36EXPECTED_ANNOTATIONS = ['Speech bubble', 'Note', 'Title', 'Spotlight', 'Label']
37
5f6a1245 38
1fb07d10
JG
39class TestAnnotations(unittest.TestCase):
40 def setUp(self):
41 # Clear old files
42 self.tearDown()
43
1fb07d10 44 def test_info_json(self):
5f6a1245 45 expected = list(EXPECTED_ANNOTATIONS) # Two annotations could have the same text.
1fb07d10
JG
46 ie = youtube_dl.extractor.YoutubeIE()
47 ydl = YoutubeDL(params)
48 ydl.add_info_extractor(ie)
49 ydl.download([TEST_ID])
50 self.assertTrue(os.path.exists(ANNOTATIONS_FILE))
51 annoxml = None
52 with io.open(ANNOTATIONS_FILE, 'r', encoding='utf-8') as annof:
5f6a1245 53 annoxml = xml.etree.ElementTree.parse(annof)
1fb07d10
JG
54 self.assertTrue(annoxml is not None, 'Failed to parse annotations XML')
55 root = annoxml.getroot()
56 self.assertEqual(root.tag, 'document')
57 annotationsTag = root.find('annotations')
58 self.assertEqual(annotationsTag.tag, 'annotations')
59 annotations = annotationsTag.findall('annotation')
60
5f6a1245 61 # Not all the annotations have TEXT children and the annotations are returned unsorted.
1fb07d10 62 for a in annotations:
5f6a1245
JW
63 self.assertEqual(a.tag, 'annotation')
64 if a.get('type') == 'text':
65 textTag = a.find('TEXT')
66 text = textTag.text
67 self.assertTrue(text in expected) # assertIn only added in python 2.7
68 # remove the first occurance, there could be more than one annotation with the same text
69 expected.remove(text)
70 # We should have seen (and removed) all the expected annotation texts.
1fb07d10 71 self.assertEqual(len(expected), 0, 'Not all expected annotations were found.')
1fb07d10
JG
72
73 def tearDown(self):
74 try_rm(ANNOTATIONS_FILE)
75
76if __name__ == '__main__':
77 unittest.main()