]> jfr.im git - yt-dlp.git/blame - test/test_cookies.py
Add option `--cookies-from-browser` to load cookies from a browser (#488)
[yt-dlp.git] / test / test_cookies.py
CommitLineData
982ee69a
MB
1import unittest
2from datetime import datetime, timezone
3
4from yt_dlp import cookies
5from yt_dlp.cookies import (
6 CRYPTO_AVAILABLE,
7 LinuxChromeCookieDecryptor,
8 MacChromeCookieDecryptor,
9 WindowsChromeCookieDecryptor,
10 YDLLogger,
11 parse_safari_cookies,
12 pbkdf2_sha1,
13)
14
15
16class MonkeyPatch:
17 def __init__(self, module, temporary_values):
18 self._module = module
19 self._temporary_values = temporary_values
20 self._backup_values = {}
21
22 def __enter__(self):
23 for name, temp_value in self._temporary_values.items():
24 self._backup_values[name] = getattr(self._module, name)
25 setattr(self._module, name, temp_value)
26
27 def __exit__(self, exc_type, exc_val, exc_tb):
28 for name, backup_value in self._backup_values.items():
29 setattr(self._module, name, backup_value)
30
31
32class TestCookies(unittest.TestCase):
33 def test_chrome_cookie_decryptor_linux_derive_key(self):
34 key = LinuxChromeCookieDecryptor.derive_key(b'abc')
35 self.assertEqual(key, b'7\xa1\xec\xd4m\xfcA\xc7\xb19Z\xd0\x19\xdcM\x17')
36
37 def test_chrome_cookie_decryptor_mac_derive_key(self):
38 key = MacChromeCookieDecryptor.derive_key(b'abc')
39 self.assertEqual(key, b'Y\xe2\xc0\xd0P\xf6\xf4\xe1l\xc1\x8cQ\xcb|\xcdY')
40
41 def test_chrome_cookie_decryptor_linux_v10(self):
42 with MonkeyPatch(cookies, {'_get_linux_keyring_password': lambda *args, **kwargs: b''}):
43 encrypted_value = b'v10\xccW%\xcd\xe6\xe6\x9fM" \xa7\xb0\xca\xe4\x07\xd6'
44 value = 'USD'
45 decryptor = LinuxChromeCookieDecryptor('Chrome', YDLLogger())
46 self.assertEqual(decryptor.decrypt(encrypted_value), value)
47
48 def test_chrome_cookie_decryptor_linux_v11(self):
49 with MonkeyPatch(cookies, {'_get_linux_keyring_password': lambda *args, **kwargs: b'',
50 'KEYRING_AVAILABLE': True}):
51 encrypted_value = b'v11#\x81\x10>`w\x8f)\xc0\xb2\xc1\r\xf4\x1al\xdd\x93\xfd\xf8\xf8N\xf2\xa9\x83\xf1\xe9o\x0elVQd'
52 value = 'tz=Europe.London'
53 decryptor = LinuxChromeCookieDecryptor('Chrome', YDLLogger())
54 self.assertEqual(decryptor.decrypt(encrypted_value), value)
55
56 @unittest.skipIf(not CRYPTO_AVAILABLE, 'cryptography library not available')
57 def test_chrome_cookie_decryptor_windows_v10(self):
58 with MonkeyPatch(cookies, {
59 '_get_windows_v10_key': lambda *args, **kwargs: b'Y\xef\xad\xad\xeerp\xf0Y\xe6\x9b\x12\xc2<z\x16]\n\xbb\xb8\xcb\xd7\x9bA\xc3\x14e\x99{\xd6\xf4&'
60 }):
61 encrypted_value = b'v10T\xb8\xf3\xb8\x01\xa7TtcV\xfc\x88\xb8\xb8\xef\x05\xb5\xfd\x18\xc90\x009\xab\xb1\x893\x85)\x87\xe1\xa9-\xa3\xad='
62 value = '32101439'
63 decryptor = WindowsChromeCookieDecryptor('', YDLLogger())
64 self.assertEqual(decryptor.decrypt(encrypted_value), value)
65
66 def test_chrome_cookie_decryptor_mac_v10(self):
67 with MonkeyPatch(cookies, {'_get_mac_keyring_password': lambda *args, **kwargs: b'6eIDUdtKAacvlHwBVwvg/Q=='}):
68 encrypted_value = b'v10\xb3\xbe\xad\xa1[\x9fC\xa1\x98\xe0\x9a\x01\xd9\xcf\xbfc'
69 value = '2021-06-01-22'
70 decryptor = MacChromeCookieDecryptor('', YDLLogger())
71 self.assertEqual(decryptor.decrypt(encrypted_value), value)
72
73 def test_safari_cookie_parsing(self):
74 cookies = \
75 b'cook\x00\x00\x00\x01\x00\x00\x00i\x00\x00\x01\x00\x01\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00Y' \
76 b'\x00\x00\x00\x00\x00\x00\x00 \x00\x00\x00\x00\x00\x00\x008\x00\x00\x00B\x00\x00\x00F\x00\x00\x00H' \
77 b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x03\xa5>\xc3A\x00\x00\x80\xc3\x07:\xc3A' \
78 b'localhost\x00foo\x00/\x00test%20%3Bcookie\x00\x00\x00\x054\x07\x17 \x05\x00\x00\x00Kbplist00\xd1\x01' \
79 b'\x02_\x10\x18NSHTTPCookieAcceptPolicy\x10\x02\x08\x0b&\x00\x00\x00\x00\x00\x00\x01\x01\x00\x00\x00' \
80 b'\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00('
81
82 jar = parse_safari_cookies(cookies)
83 self.assertEqual(len(jar), 1)
84 cookie = list(jar)[0]
85 self.assertEqual(cookie.domain, 'localhost')
86 self.assertEqual(cookie.port, None)
87 self.assertEqual(cookie.path, '/')
88 self.assertEqual(cookie.name, 'foo')
89 self.assertEqual(cookie.value, 'test%20%3Bcookie')
90 self.assertFalse(cookie.secure)
91 expected_expiration = datetime(2021, 6, 18, 21, 39, 19, tzinfo=timezone.utc)
92 self.assertEqual(cookie.expires, int(expected_expiration.timestamp()))
93
94 def test_pbkdf2_sha1(self):
95 key = pbkdf2_sha1(b'peanuts', b' ' * 16, 1, 16)
96 self.assertEqual(key, b'g\xe1\x8e\x0fQ\x1c\x9b\xf3\xc9`!\xaa\x90\xd9\xd34')