]> Raphaƫl G. Git Repositories - youtubedl/blob - test/test_age_restriction.py
Imported Upstream version 2013.10.23
[youtubedl] / test / test_age_restriction.py
1 #!/usr/bin/env python
2
3 # Allow direct execution
4 import os
5 import sys
6 import unittest
7 sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
8
9 from test.helper import global_setup, try_rm
10 global_setup()
11
12
13 from youtube_dl import YoutubeDL
14
15
16 def _download_restricted(url, filename, age):
17 """ Returns true iff the file has been downloaded """
18
19 params = {
20 'age_limit': age,
21 'skip_download': True,
22 'writeinfojson': True,
23 "outtmpl": "%(id)s.%(ext)s",
24 }
25 ydl = YoutubeDL(params)
26 ydl.add_default_info_extractors()
27 json_filename = filename + '.info.json'
28 try_rm(json_filename)
29 ydl.download([url])
30 res = os.path.exists(json_filename)
31 try_rm(json_filename)
32 return res
33
34
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 def test_pornotube(self):
49 self._assert_restricted(
50 'http://pornotube.com/c/173/m/1689755/Marilyn-Monroe-Bathing',
51 '1689755.flv', 13)
52
53
54 if __name__ == '__main__':
55 unittest.main()