summaryrefslogtreecommitdiff
path: root/tests/scripts/webclient.pl (follow)
AgeCommit message (Collapse)AuthorFilesLines
2009-09-20tests:webclient: fix default version (string, not number...)Michael Adam1-1/+1
Michael
2009-09-17tests:webclient: add copyright notice to the pod documentation.Michael Adam1-0/+7
Michael
2009-09-17tests:webclient: reduce duplication.Michael Adam1-6/+5
Michael
2009-09-16tests:webclient: add a --dry-run mode that prints the request to stdoutMichael Adam1-2/+14
and does not connect to the server at all. Michael
2009-09-16tests:webclient: extend webclient to support HTTP/0.9, 1.0 and 1.1 requests.Michael Adam1-6/+101
Enable spcifying HTTP protocol version on command line ( --http-version). Enable specifying method (GET, CONNECT, ...) on the command line (--method). Add POD documentation. Use pod2usage() to print help message. Michael
2009-09-14tests:webclient: add User-Agent header to request.Michael Adam1-2/+9
Michael
2009-09-10tests:webclient: add complete GPL boilerplate.Michael Adam1-2/+13
Michael
2009-09-10tests: add a simple web client written in perl.Michael Adam1-0/+46
This should be one of the test tools for writing our testsuite. This can be used to make direct connects to web servers like so: webclient.pl server_ip:port /path/file.html and to make requestis via a proxy like this: webclient.pl proxy_ip:port http://webserver:port/path/file.html Michael