mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-12 02:01:05 +01:00
[utils] Add support for cookies with spaces used instead of tabs
This commit is contained in:
parent
fa9b8c6628
commit
cff99c91d1
@ -14,6 +14,9 @@
|
|||||||
|
|
||||||
|
|
||||||
class TestYoutubeDLCookieJar(unittest.TestCase):
|
class TestYoutubeDLCookieJar(unittest.TestCase):
|
||||||
|
def __assert_cookie_has_value(self, cookiejar, key):
|
||||||
|
self.assertEqual(cookiejar._cookies['www.foobar.foobar']['/'][key].value, key + '_VALUE')
|
||||||
|
|
||||||
def test_keep_session_cookies(self):
|
def test_keep_session_cookies(self):
|
||||||
cookiejar = YoutubeDLCookieJar('./test/testdata/cookies/session_cookies.txt')
|
cookiejar = YoutubeDLCookieJar('./test/testdata/cookies/session_cookies.txt')
|
||||||
cookiejar.load(ignore_discard=True, ignore_expires=True)
|
cookiejar.load(ignore_discard=True, ignore_expires=True)
|
||||||
@ -32,12 +35,13 @@ def test_keep_session_cookies(self):
|
|||||||
def test_strip_httponly_prefix(self):
|
def test_strip_httponly_prefix(self):
|
||||||
cookiejar = YoutubeDLCookieJar('./test/testdata/cookies/httponly_cookies.txt')
|
cookiejar = YoutubeDLCookieJar('./test/testdata/cookies/httponly_cookies.txt')
|
||||||
cookiejar.load(ignore_discard=True, ignore_expires=True)
|
cookiejar.load(ignore_discard=True, ignore_expires=True)
|
||||||
|
self.__assert_cookie_has_value(cookiejar, 'HTTPONLY_COOKIE')
|
||||||
|
self.__assert_cookie_has_value(cookiejar, 'JS_ACCESSIBLE_COOKIE')
|
||||||
|
|
||||||
def assert_cookie_has_value(key):
|
def test_convert_spaces_to_tabs(self):
|
||||||
self.assertEqual(cookiejar._cookies['www.foobar.foobar']['/'][key].value, key + '_VALUE')
|
cookiejar = YoutubeDLCookieJar('./test/testdata/cookies/cookie_file_with_spaces.txt')
|
||||||
|
cookiejar.load(ignore_discard=True, ignore_expires=True)
|
||||||
assert_cookie_has_value('HTTPONLY_COOKIE')
|
self.__assert_cookie_has_value(cookiejar, 'COOKIE')
|
||||||
assert_cookie_has_value('JS_ACCESSIBLE_COOKIE')
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
5
test/testdata/cookies/cookie_file_with_spaces.txt
vendored
Normal file
5
test/testdata/cookies/cookie_file_with_spaces.txt
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# Netscape HTTP Cookie File
|
||||||
|
# http://curl.haxx.se/rfc/cookie_spec.html
|
||||||
|
# This is a generated file! Do not edit.
|
||||||
|
|
||||||
|
www.foobar.foobar FALSE / TRUE 2147483647 COOKIE COOKIE_VALUE
|
@ -2752,6 +2752,11 @@ def load(self, filename=None, ignore_discard=False, ignore_expires=False):
|
|||||||
for line in f:
|
for line in f:
|
||||||
if line.startswith(self._HTTPONLY_PREFIX):
|
if line.startswith(self._HTTPONLY_PREFIX):
|
||||||
line = line[len(self._HTTPONLY_PREFIX):]
|
line = line[len(self._HTTPONLY_PREFIX):]
|
||||||
|
# Cookie file may contain spaces instead of tabs.
|
||||||
|
# Replace all spaces with tabs to make such cookie files work
|
||||||
|
# with MozillaCookieJar.
|
||||||
|
if not line.startswith('#'):
|
||||||
|
line = re.sub(r' +', r'\t', line)
|
||||||
cf.write(compat_str(line))
|
cf.write(compat_str(line))
|
||||||
cf.seek(0)
|
cf.seek(0)
|
||||||
self._really_load(cf, filename, ignore_discard, ignore_expires)
|
self._really_load(cf, filename, ignore_discard, ignore_expires)
|
||||||
|
Loading…
Reference in New Issue
Block a user