twscrape/tests/test_utils.py
2024-01-05 04:50:56 +02:00

28 строки
1.1 KiB
Python

import pytest
from twscrape.utils import parse_cookies
def test_cookies_parse():
val = "abc=123; def=456; ghi=789"
assert parse_cookies(val) == {"abc": "123", "def": "456", "ghi": "789"}
val = '{"abc": "123", "def": "456", "ghi": "789"}'
assert parse_cookies(val) == {"abc": "123", "def": "456", "ghi": "789"}
val = '[{"name": "abc", "value": "123"}, {"name": "def", "value": "456"}, {"name": "ghi", "value": "789"}]'
assert parse_cookies(val) == {"abc": "123", "def": "456", "ghi": "789"}
val = "eyJhYmMiOiAiMTIzIiwgImRlZiI6ICI0NTYiLCAiZ2hpIjogIjc4OSJ9"
assert parse_cookies(val) == {"abc": "123", "def": "456", "ghi": "789"}
val = "W3sibmFtZSI6ICJhYmMiLCAidmFsdWUiOiAiMTIzIn0sIHsibmFtZSI6ICJkZWYiLCAidmFsdWUiOiAiNDU2In0sIHsibmFtZSI6ICJnaGkiLCAidmFsdWUiOiAiNzg5In1d"
assert parse_cookies(val) == {"abc": "123", "def": "456", "ghi": "789"}
val = '{"cookies": {"abc": "123", "def": "456", "ghi": "789"}}'
assert parse_cookies(val) == {"abc": "123", "def": "456", "ghi": "789"}
with pytest.raises(ValueError, match=r"Invalid cookie value: .+"):
val = "{invalid}"
assert parse_cookies(val) == {}