Exemplo n.º 1
0
 def test_collapses_multiple_path_parts(self):
     assert collapse_path_parts(
         "/foo/bar/baz/buz.html") == "/foo/bar%2Fbaz%2Fbuz.html"
Exemplo n.º 2
0
 def test_collapses_path_parts(self):
     assert collapse_path_parts(
         "/foo/bar/baz.html") == "/foo/bar%2Fbaz.html"
Exemplo n.º 3
0
 def test_collapses_third_dir(self):
     assert collapse_path_parts("/foo/bar/baz/") == "/foo/bar%2Fbaz%2F"
Exemplo n.º 4
0
 def test_doesnt_collapse_one_dir(self):
     assert collapse_path_parts("/foo/") == "/foo/"
Exemplo n.º 5
0
 def test_doesnt_collapse_two_parts(self):
     assert collapse_path_parts("/foo/bar.html") == "/foo/bar.html"
Exemplo n.º 6
0
 def test_doesnt_collapse_root(self):
     assert collapse_path_parts("/") == "/"
Exemplo n.º 7
0
 def test_doesnt_collapse_one_part(self):
     assert collapse_path_parts("/foo.html") == "/foo.html"
Exemplo n.º 8
0
 def test_collapses_fourth_dir(self):
     assert collapse_path_parts("/foo/bar/baz/buz/") == "/foo/bar%2Fbaz%2Fbuz%2F"
Exemplo n.º 9
0
 def test_doesnt_collapse_nothing(self):
     assert collapse_path_parts("") == ""
Exemplo n.º 10
0
 def test_collapses_third_dir(self):
     assert collapse_path_parts("/foo/bar/baz/") == "/foo/bar%2Fbaz%2F"
Exemplo n.º 11
0
 def test_collapses_multiple_path_parts(self):
     assert collapse_path_parts("/foo/bar/baz/buz.html") == "/foo/bar%2Fbaz%2Fbuz.html"
Exemplo n.º 12
0
 def test_collapses_path_parts(self):
     assert collapse_path_parts("/foo/bar/baz.html") == "/foo/bar%2Fbaz.html"
Exemplo n.º 13
0
 def test_doesnt_collapse_two_parts(self):
     assert collapse_path_parts("/foo/bar.html") == "/foo/bar.html"
Exemplo n.º 14
0
 def test_doesnt_collapse_one_dir(self):
     assert collapse_path_parts("/foo/") == "/foo/"
Exemplo n.º 15
0
 def test_collapses_fourth_dir(self):
     assert collapse_path_parts(
         "/foo/bar/baz/buz/") == "/foo/bar%2Fbaz%2Fbuz%2F"
Exemplo n.º 16
0
def collapse_path_parts(request):
    collapsed = utils.collapse_path_parts(request.line.uri.path.raw)
    request.line.uri.path = request.context['path'] = Path(collapsed)
Exemplo n.º 17
0
 def test_doesnt_collapse_nothing(self):
     assert collapse_path_parts("") == ""
Exemplo n.º 18
0
 def test_doesnt_collapse_one_part(self):
     assert collapse_path_parts("/foo.html") == "/foo.html"
Exemplo n.º 19
0
def collapse_path_parts(request):
    collapsed = utils.collapse_path_parts(request.line.uri.path.raw)
    request.line.uri.path = request.context['path'] = Path(collapsed)
Exemplo n.º 20
0
 def test_doesnt_collapse_root(self):
     assert collapse_path_parts("/") == "/"