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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
|
#!/usr/bin/perl
#
# HTTP::Lite - test.pl
#
# $Id: test.pl,v 1.5 2002/06/13 04:56:30 rhooper Exp rhooper $
#
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl test.pl'
######################### We start with some black magic to print on failure.
# Change 1..1 below to 1..last_test_to_print .
# (It may become useful if the test is moved to ./t subdirectory.)
BEGIN { $| = 1; print "1..21\n"; }
END { print "not ok 1\n" unless $loaded; }
use HTTP::Lite;
$loaded = 1;
print "ok 1\n";
######################### End of black magic.
# Insert your test code below (better if it prints "ok 13"
# (correspondingly "not ok 13") depending on the success of chunk 13
# of the test code):
#print STDERR <<EOF;
#
#This is HTTP::Lite $HTTP::Lite::VERSION.
#
#This module requires either an internet connection, or access to an Apache
#1.3 server with Perl and the CGI module instaled.
#
#If you wish to perform tests on a local server, you must copy the contents
#of the test-data directory to the apache server (which may be local). You
#must be using the 'AddHandler cgi-script .cgi' directive in order for tests
#to be successful, as one many tests currently requires a CGI script.
#
#What is the full URL for the above? Enter 'none' to skip tests.
#EOF
#print STDERR "Location: [http://www.thetoybox.org/HTTP-Lite-Tests] ";
my $testpath = 'none';
chomp($testpath);
$testpath = $testpath ? $testpath : "http://www.thetoybox.org/HTTP-Lite-Tests";
if ( $testpath =~ /\s*'*none'*\s*/ ) {
# print STDERR "skipping all tests\n";
$skip = 1;
}
else {
print STDERR <<EOF;
HTTP::Lite now supports HTTP/1.0 or 1.1 Proxies.
Enter the URL or hostname of the proxy server to use for testing. Enter
'none' if you do not have a proxy server suitable for testing.
EOF
print STDERR "Proxy: [none] ";
$proxy = <>;
chomp($proxy);
$proxy = $proxy ? $proxy : "none";
if ( $proxy =~ /\s*'*none'*\s*/ ) {
# print STDERR "skipping proxy testing\n";
$skipproxy = 1;
}
}
$http = HTTP::Lite->new;
#$http->{DEBUG} = 1;
$http->http11_mode(1);
# print "\n\n";
$testno = 2;
if ( !$skip ) {
$url = "$testpath/test.txt";
$res = $http->request($url);
print "not " if !defined($res);
print "ok $testno $url\n";
$testno++;
$doc = $http->body;
print "not " if $doc ne "OK\n";
print "ok $testno $url\n";
$testno++;
$http->reset;
$url = "http://invalidhost.thetoybox.org/";
$res = $http->request($url);
print "not " if defined($res);
print "ok $testno $url\n";
$testno++;
$http->reset;
$url = "http://localhost:99999/";
$res = $http->request($url);
print "not " if defined($res);
print "ok $testno $url\n";
$testno++;
$http->reset;
%vars = (
"a" => "abc",
"b" => "hello world&",
);
$http->prepare_post( \%vars );
$url = "$testpath/post.cgi";
$res = $http->request($url);
print "not " if !defined($res);
print "ok $testno $url\n";
$testno++;
$doc = $http->body;
print "not " if $doc ne "a=abc\nb=hello world&\n";
print "ok $testno $url\n";
$testno++;
$http->reset;
$url = "$testpath/chunked.cgi";
$res = $http->request($url);
$doc = $http->body;
print "not " if length($doc) != 28;
print "ok $testno $url\n";
$testno++;
print "not " if $doc ne "chunk1\nchunk2\nchunk3\nchunk4\n";
print "ok $testno $url\n";
$testno++;
$http->reset;
$url = "$testpath/chunked2.cgi";
$res = $http->request($url);
$doc = $http->body;
print "not " if length($doc) != 26;
print "ok $testno $url\n";
$testno++;
print "not " if $doc ne "chunk1\nchunk2\nchunk3chunk4";
print "ok $testno $url\n";
$testno++;
$http->reset;
$url = "$testpath/chunked3.cgi";
$res = $http->request($url);
$doc = $http->body;
print "length not " if length($doc) != 34;
print "ok $testno $url\n";
$testno++;
print "not " if $doc ne "chunk1\nchunk2\nchunk3chunk4chunk5\n\n";
print "ok $testno $url\n";
$testno++;
$http->reset;
$url = "$testpath/unchunked.html";
$res = $http->request($url);
$doc = $http->body;
print "not " if length($doc) != 33;
print "ok $testno $url\n";
$testno++;
print "not " if $doc ne "unchunked1\nunchunked2\nunchunked3\n";
print "ok $testno $url\n";
$testno++;
$http->reset;
$url = "$testpath/nonl.html";
$res = $http->request($url);
$doc = $http->body;
print "not " if length($doc) != 17;
print "ok $testno $url\n";
$testno++;
print "not " if $doc ne "line1\nline2\nline3";
print "ok $testno $url\n";
$testno++;
$http->http11_mode(0);
$http->reset;
$url = "$testpath/nle.html";
$res = $http->request($url);
$doc = $http->body;
print "not " if length($doc) != 19;
print "ok $testno $url\n";
$testno++;
print "not " if $doc ne "line1\nline2\nline3\n\n";
print "ok $testno $url\n";
$testno++;
$http->reset;
$url = "$testpath/bigbinary.dat";
$res = $http->request($url);
$bin = $http->body;
$http->reset;
$url = "$testpath/bigbinary.dat.md5";
$res = $http->request($url);
chomp( $binsum = $http->body );
eval "use Digest::MD5 qw(md5_hex);";
if ($@) {
print "ok $n (skipping test on this platform)\n";
}
else {
$sum = md5_hex($bin);
print "not " if $binsum ne $sum;
print "ok $testno $url\n";
}
$testno++;
$http->http11_mode(1);
$http->reset;
$url = "$testpath/nle.html";
$res = $http->request($url);
$doc = $http->body;
print "not " if length($doc) != 19;
print "ok $testno $url\n";
$testno++;
print "not " if $doc ne "line1\nline2\nline3\n\n";
print "ok $testno $url\n";
$testno++;
$http->reset;
$url = "$testpath/bigbinary.dat";
$res = $http->request($url);
$bin = $http->body;
$http->reset;
$url = "$testpath/bigbinary.dat.md5";
$res = $http->request($url);
chomp( $binsum = $http->body );
eval "use Digest::MD5 qw(md5_hex);";
if ($@) {
print "ok $n (skipping test on this platform)\n";
}
else {
$sum = md5_hex($bin);
print "not " if $binsum ne $sum;
print "ok $testno $url\n";
}
$testno++;
$http->reset;
$url = "$testpath/bigtest.txt";
$res = $http->request($url);
$bigtest = $http->body;
$http->reset;
$url = "$testpath/chunked4.cgi";
$res = $http->request($url);
$doc = $http->body;
print "not " if $doc ne "$bigtest$bigtest${bigtest}chunk4chunk5\n";
print "ok $testno $url\n";
$testno++;
$http->reset;
$url = "$testpath/chunked5.cgi";
$res = $http->request($url);
$doc = $http->body;
print "not " if $doc ne "$bigtest$bin${bigtest}chunk4chunk5\n";
print "ok $testno $url\n";
$testno++;
# Callback test #1 - Unmodified callback
sub callback1 {
my ( $self, $dataref, $cbargs ) = @_;
$cbbytes += length($$dataref);
return $dataref;
}
$http->reset;
$url = "$testpath/bigbinary.dat";
$res = $http->request( $url, \&callback1 );
$doc = $http->body;
print "not " if $doc ne $bin;
print "ok $testno $url\n";
$testno++;
print "not " if length($bin) != $cbbytes;
print "ok $testno $url\n";
$testno++;
# Callback test #2 - Discard
sub callback2 {
my ( $self, $dataref, $cbargs ) = @_;
$cbbytes += length($$dataref);
return undef;
}
$http->reset;
$url = "$testpath/bigbinary.dat";
$res = $http->request( $url, \&callback2 );
$doc = $http->body;
print "not " if defined($doc);
print "ok $testno $url\n";
$testno++;
# Callback test #3 - New callback syntax
sub callback3 {
my ( $self, $mode, $dataref, @args ) = @_;
$cbbytes += length($$dataref);
# print STDERR "callback for $mode data is $dataref args are @args\n";
return $dataref;
}
$http->reset;
$url = "$testpath/bigbinary.dat";
$http->set_callback( \&callback3, "arg1", "arg2", "arg3", ["arg4"] );
$res = $http->request($url);
$doc = $http->body;
print "not " if $doc ne $bin;
print "ok $testno $url\n";
$testno++;
}
else {
for ( $n = $testno ; $n < 20 ; $n++ ) {
print "ok $n (skipping test on this platform)\n";
}
$testno = $n;
}
unless ( $skip || $skipproxy ) {
$http->reset;
$http->proxy($proxy);
$url = "$testpath/test.txt";
$res = $http->request($url);
$doc = $http->body;
print "not " if length($doc) != 3;
print "ok $testno $url\n";
$testno++;
print "not " if $doc ne "OK\n";
print "ok $testno $url\n";
$testno++;
}
else {
print "ok $testno (skipping test on this platform)\n";
$testno++;
print "ok $testno (skipping test on this platform)\n";
}
|