コード例 #1
0
def test_python_3_7_quoting():
    """
    This test verifies that the userinfo encoding is identical with the defaul urllib encoding
    """

    from urllib.parse import quote as urllib_quote

    quot = quoting.PYTHON_3_7_QUOTING

    # Control characters
    ascii_bytes = bytes(range(0, 32))
    ascii_str = ascii_bytes.decode("latin1")
    utf8_bytes = ascii_str.encode("utf-8")

    expected = "%00%01%02%03%04%05%06%07%08%09%0A%0B%0C%0D%0E%0F%10%11%12%13%14%15%16%17%18%19%1A%1B%1C%1D%1E%1F"
    actual = quote(utf8_bytes, quot).decode("utf-8")
    assert expected == actual

    # Printable
    ascii_bytes = bytes(range(32, 127))
    ascii_str = ascii_bytes.decode("latin1")
    utf8_bytes = ascii_str.encode("utf-8")

    # expected = "%20!%22%23$%&'()*+,-.%2F0123456789%3A%3B%3C%3D%3E%3F%40ABCDEFGHIJKLMNOPQRSTUVWXYZ%5B%5C%5D%5E_%60abcdefghijklmnopqrstuvwxyz%7B%7C%7D~"
    expected = urllib_quote(utf8_bytes)
    actual = quote(utf8_bytes, quot).decode("utf-8")
    assert expected == actual
コード例 #2
0
 def build_url_request(self, command, args):
     """
     Helper function to construct and return the url that will be requested from the server
     
     @param command - the command name (i.e., prefix.commandName)
     @param args - dictionary of the arguments to pass
     @returns the url to fetch (i.e, http://servername:8080/remote/prefix.commandName.do?arg=value)
     """
     query_string = "&".join(["%s=%s" % (quote(str(k)), quote(v)) for k, v in args.items()])
     return '%s/%s.do?%s' % (self.baseurl, command, query_string)
コード例 #3
0
ファイル: bench.py プロジェクト: isabella232/urlquote
def benchmark_quote_urlquote():
    urlquote.quote(LOREMIPSUM, urlquote.quoting.PYTHON_3_7_QUOTING)
コード例 #4
0
def test_quote_bytes():
    expected = u"/El%20Ni%C3%B1o/".encode("utf-8")
    actual = quote(u"/El Niño/".encode("utf-8"))
    assert expected == actual