summaryrefslogtreecommitdiffstats
path: root/tests/http.test
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2011-09-16 08:28:02 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2011-09-16 08:28:02 (GMT)
commitb70ab023a4e2ec3bfb8ebccf59b92519d5a5dbba (patch)
treee9d9531b410872bc585652d409b21187b47b6198 /tests/http.test
parentc6e44af1862f2818ef3586bf70986d7f75c5ae77 (diff)
downloadtcl-b70ab023a4e2ec3bfb8ebccf59b92519d5a5dbba.zip
tcl-b70ab023a4e2ec3bfb8ebccf59b92519d5a5dbba.tar.gz
tcl-b70ab023a4e2ec3bfb8ebccf59b92519d5a5dbba.tar.bz2
[Bug 3391977]: Ensure that the -headers option to http::geturl overrides the
-type option (important because -type has a default that is not always appropriate, and the header must not be duplicated).
Diffstat (limited to 'tests/http.test')
-rw-r--r--tests/http.test24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/http.test b/tests/http.test
index 602047f..6dcb612 100644
--- a/tests/http.test
+++ b/tests/http.test
@@ -327,6 +327,30 @@ test http-3.23 {http::geturl parse failures} -body {
test http-3.24 {http::geturl parse failures} -body {
http::geturl http://somewhere/path?%query
} -returnCodes error -result {Illegal encoding character usage "%qu" in URL path}
+test http-3.25 {http::geturl: -headers override -type} -body {
+ set token [http::geturl $url/headers -type "text/plain" -query dummy \
+ -headers [list "Content-Type" "text/plain;charset=utf-8"]]
+ http::data $token
+} -cleanup {
+ http::cleanup $token
+} -match regexp -result {(?n)Accept \*/\*
+Host .*
+User-Agent .*
+Connection close
+Content-Type {text/plain;charset=utf-8}
+Content-Length 5}
+test http-3.26 {http::geturl: -headers override -type default} -body {
+ set token [http::geturl $url/headers -query dummy \
+ -headers [list "Content-Type" "text/plain;charset=utf-8"]]
+ http::data $token
+} -cleanup {
+ http::cleanup $token
+} -match regexp -result {(?n)Accept \*/\*
+Host .*
+User-Agent .*
+Connection close
+Content-Type {text/plain;charset=utf-8}
+Content-Length 5}
test http-4.1 {http::Event} {
set token [http::geturl $url -keepalive 0]