X-Git-Url: https://git.sven.stormbind.net/?a=blobdiff_plain;f=tests%2FhttpBufferPost.tcl;fp=tests%2FhttpBufferPost.tcl;h=b046a26a056b3508a8962b995b7844c2035d6e29;hb=b0e6fb6e4379fb87fa2854b84a56c5ad49c644da;hp=0000000000000000000000000000000000000000;hpb=c9a5bcd9d76f699909b24e71a2a216d36062ab0b;p=sven%2Ftclcurl.git diff --git a/tests/httpBufferPost.tcl b/tests/httpBufferPost.tcl new file mode 100755 index 0000000..b046a26 --- /dev/null +++ b/tests/httpBufferPost.tcl @@ -0,0 +1,14 @@ +package require TclCurl + + +set fileContent "This is what we will send as if it was the content of a file" + +curl::transfer -url 127.0.0.1/cgi-bin/post1.tcl -verbose 1 -post 1 \ + -httppost [list name "firstName" contents "Andres" contenttype "text/plain" contentheader [list "adios: goodbye"]] \ + -httppost [list name "lastName" contents "Garcia"] \ + -httppost [list name "nombre" bufferName noFile.txt buffer $fileContent contenttype "text/html"] \ + -httppost [list name "submit" contents "send"] -verbose 1 + + + +