diff options
author | max <max@noemail.net> | 2012-07-08 10:55:49 (GMT) |
---|---|---|
committer | max <max@noemail.net> | 2012-07-08 10:55:49 (GMT) |
commit | 914abca30131e0433652de6e747d34e203b89b3c (patch) | |
tree | 9c9e9eb612da3d4636c26e265416583202c2ab8d /tests | |
parent | 060ba586ed84074b1a2e094d1c772004202367ee (diff) | |
download | tcl-914abca30131e0433652de6e747d34e203b89b3c.zip tcl-914abca30131e0433652de6e747d34e203b89b3c.tar.gz tcl-914abca30131e0433652de6e747d34e203b89b3c.tar.bz2 |
Add fix and test for URLs that contain literal IPv6 addresses. [Bug 3531209]
FossilOrigin-Name: 1b9de3862713db777b043d0a7c5b5674ed44e8f4
Diffstat (limited to 'tests')
-rw-r--r-- | tests/http.test | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/http.test b/tests/http.test index 37d4a05..fe44b47 100644 --- a/tests/http.test +++ b/tests/http.test @@ -135,6 +135,7 @@ set fullurl http://user:pass@[info hostname]:$port/a/b/c set binurl //[info hostname]:$port/binary set posturl //[info hostname]:$port/post set badposturl //[info hostname]:$port/droppost +set ipv6url http://\[::1\]:$port/ test http-3.4 {http::geturl} -body { set token [http::geturl $url] http::data $token @@ -390,6 +391,12 @@ Connection close Content-Type {text/plain;charset=utf-8} Accept-Encoding .* Content-Length 5} +test http-3.29 "http::geturl $ipv6url" -body { + set token [http::geturl $ipv6url -validate 1] + http::code $token +} -cleanup { + http::cleanup $token +} -result "HTTP/1.0 200 OK" test http-4.1 {http::Event} -body { set token [http::geturl $url -keepalive 0] |