Projet

Général

Profil

0001-fix-in-variadic-URL-8889.patch

Thomas Noël, 06 novembre 2015 00:04

Télécharger (1,74 ko)

Voir les différences:

Subject: [PATCH] fix in variadic URL (#8889)

 tests/test_variadic_url.py | 4 ++++
 wcs/qommon/misc.py         | 6 +++++-
 2 files changed, 9 insertions(+), 1 deletion(-)
tests/test_variadic_url.py
64 64
    assert get_variadic_url('[url]/foobar',
65 65
            {'url': 'http://www.example.net'}) == 'http://www.example.net/foobar'
66 66

  
67
def test_url_server_qs_without_slash():
68
    assert get_variadic_url('[url]?foo=bar',
69
            {'url': 'http://www.example.net/'}) == 'http://www.example.net/?foo=bar'
70

  
67 71
def test_url_server_more():
68 72
    assert get_variadic_url('[url]/foobar/json?toto',
69 73
            {'url': 'http://www.example.net'}) == 'http://www.example.net/foobar/json?toto'
wcs/qommon/misc.py
321 321
                p2 = urlparse.urlsplit(before_path)
322 322
                scheme, netloc = p2.scheme, p2.netloc
323 323
                if p2.path and not path:
324
                    path, query = p2.path, p2.query
324
                    path, query2 = p2.path, p2.query
325
                    if query and query2:
326
                        query += '&' + query2
327
                    else:
328
                        query = query or query2
325 329
        if path:
326 330
            path = partial_quote(ezt_substitute(path, variables))
327 331
    if fragment and '[' in fragment:
328
-