1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
import pytest
from rfc3986 import exceptions
from rfc3986 import parseresult
from rfc3986 import uri_reference
from rfc3986 import urlparse
SNOWMAN = b"\xe2\x98\x83"
SNOWMAN_PARAMS = b"http://example.com?utf8=" + SNOWMAN
SNOWMAN_HOST = b"http://" + SNOWMAN + b".com"
SNOWMAN_IDNA_HOST = "http://xn--n3h.com"
def test_unicode_uri():
url_bytestring = SNOWMAN_PARAMS
unicode_url = url_bytestring.decode("utf-8")
uri = uri_reference(unicode_url)
assert uri.is_valid() is True
assert uri == "http://example.com?utf8=%E2%98%83"
def test_unicode_uri_passed_as_bytes():
url_bytestring = SNOWMAN_PARAMS
uri = uri_reference(url_bytestring)
assert uri.is_valid() is True
assert uri == "http://example.com?utf8=%E2%98%83"
def test_unicode_authority():
url_bytestring = SNOWMAN_HOST
unicode_url = url_bytestring.decode("utf-8")
uri = uri_reference(unicode_url)
assert uri.is_valid() is False
assert uri == unicode_url
def test_urlparse_a_unicode_hostname():
url_bytestring = SNOWMAN_HOST
unicode_url = url_bytestring.decode("utf-8")
parsed = urlparse(url_bytestring)
assert parsed.host == unicode_url[7:]
def test_urlparse_a_unicode_hostname_with_auth():
url = b"http://userinfo@" + SNOWMAN + b".com"
parsed = urlparse(url)
assert parsed.userinfo == "userinfo"
def test_urlparse_idna_encoding_with_geturl():
"""https://github.com/python-hyper/rfc3986/issues/57"""
parsed = urlparse("https://i❤.ws")
encoded = parsed.encode("idna")
assert encoded.encoding == "idna"
assert encoded.geturl() == b"https://xn--i-7iq.ws"
def test_urlparse_an_invalid_authority_parses_port():
url = "http://foo:b@r@[::1]:80/get"
parsed = urlparse(url)
assert parsed.port == 80
assert parsed.userinfo == "foo:b@r"
assert parsed.hostname == "[::1]"
def test_unsplit_idna_a_unicode_hostname():
parsed = urlparse(SNOWMAN_HOST)
assert parsed.unsplit(use_idna=True) == SNOWMAN_IDNA_HOST
def test_strict_urlparsing():
with pytest.raises(exceptions.InvalidAuthority):
parseresult.ParseResult.from_string(SNOWMAN_HOST)
|