]> jfr.im git - yt-dlp.git/blob - test/test_age_restriction.py
[test] Use `pytest` instead of `nosetests` (#482)
[yt-dlp.git] / test / test_age_restriction.py
1 #!/usr/bin/env python3
2 from __future__ import unicode_literals
3
4 # Allow direct execution
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
10 from test.helper import try_rm, is_download_test
11
12 from yt_dlp import YoutubeDL
13
14
15 def _download_restricted(url, filename, age):
16 """ Returns true if the file has been downloaded """
17
18 params = {
19 'age_limit': age,
20 'skip_download': True,
21 'writeinfojson': True,
22 'outtmpl': '%(id)s.%(ext)s',
23 }
24 ydl = YoutubeDL(params)
25 ydl.add_default_info_extractors()
26 json_filename = os.path.splitext(filename)[0] + '.info.json'
27 try_rm(json_filename)
28 ydl.download([url])
29 res = os.path.exists(json_filename)
30 try_rm(json_filename)
31 return res
32
33
34 @is_download_test
35 class TestAgeRestriction(unittest.TestCase):
36 def _assert_restricted(self, url, filename, age, old_age=None):
37 self.assertTrue(_download_restricted(url, filename, old_age))
38 self.assertFalse(_download_restricted(url, filename, age))
39
40 def test_youtube(self):
41 self._assert_restricted('07FYdnEawAQ', '07FYdnEawAQ.mp4', 10)
42
43 def test_youporn(self):
44 self._assert_restricted(
45 'http://www.youporn.com/watch/505835/sex-ed-is-it-safe-to-masturbate-daily/',
46 '505835.mp4', 2, old_age=25)
47
48
49 if __name__ == '__main__':
50 unittest.main()