blob: 17b4ba4c624c2f76e390f2dbba17c0a024c1388a (
plain)
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
|
- setup:
cleanup:
args: http://example.com/foo%2a
input:
output: http://example.com/foo%2A
- setup:
cleanup:
args: HTTP://User@Example.COM/Foo
input:
output: http://User@example.com/Foo
- setup:
cleanup:
args: HTTP://Example.COM/Foo
input:
output: http://example.com/Foo
- setup:
cleanup:
args: http://example.com/%7Efoo%2ebar
input:
output: http://example.com/~foo.bar
- setup:
cleanup:
args: http://example.com/foo/./bar/baz/../qux
input:
output: http://example.com/foo/bar/qux
- setup:
cleanup:
args: http://example.com
input:
output: http://example.com/
- setup:
cleanup:
args: http://example.com:80/
input:
output: http://example.com/
|