mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
adjusted to the new test case formats
This commit is contained in:
parent
68af9a222e
commit
d3516810a7
@ -1,4 +1,5 @@
|
|||||||
EXTRA_DIST = ftpserver.pl httpserver.pl runtests.pl ftpsserver.pl stunnel.pm
|
EXTRA_DIST = ftpserver.pl httpserver.pl runtests.pl ftpsserver.pl stunnel.pm \
|
||||||
|
getpart.pm
|
||||||
|
|
||||||
SUBDIRS = data
|
SUBDIRS = data
|
||||||
|
|
||||||
|
@ -16,6 +16,8 @@ use FileHandle;
|
|||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
require "getpart.pm";
|
||||||
|
|
||||||
open(FTPLOG, ">log/ftpd.log") ||
|
open(FTPLOG, ">log/ftpd.log") ||
|
||||||
print STDERR "failed to open log file, runs without logging\n";
|
print STDERR "failed to open log file, runs without logging\n";
|
||||||
|
|
||||||
@ -190,27 +192,27 @@ sub RETR_command {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
my $filename = "data/reply$testno.txt";
|
loadtest("data/test$testno");
|
||||||
|
|
||||||
my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
|
my @data = getpart("reply", "data");
|
||||||
$atime,$mtime,$ctime,$blksize,$blocks)
|
|
||||||
= stat($filename);
|
my $size=0;
|
||||||
|
for(@data) {
|
||||||
|
$size =+ length($_);
|
||||||
|
}
|
||||||
|
|
||||||
if($size) {
|
if($size) {
|
||||||
|
|
||||||
open(FILE, "<$filename");
|
|
||||||
if($rest) {
|
if($rest) {
|
||||||
# move read pointer forward
|
# move read pointer forward
|
||||||
seek(FILE, $rest, 1);
|
|
||||||
$size -= $rest;
|
$size -= $rest;
|
||||||
}
|
}
|
||||||
print "150 Binary data connection for $testno () ($size bytes).\r\n";
|
print "150 Binary data connection for $testno () ($size bytes).\r\n";
|
||||||
$rest=0; # reset rest again
|
$rest=0; # reset rest again
|
||||||
|
|
||||||
while(<FILE>) {
|
for(@data) {
|
||||||
print SOCK $_;
|
print SOCK $_;
|
||||||
}
|
}
|
||||||
close(FILE);
|
|
||||||
close(SOCK);
|
close(SOCK);
|
||||||
|
|
||||||
print "226 File transfer complete\r\n";
|
print "226 File transfer complete\r\n";
|
||||||
|
146
tests/getpart.pm
Normal file
146
tests/getpart.pm
Normal file
@ -0,0 +1,146 @@
|
|||||||
|
|
||||||
|
use strict;
|
||||||
|
|
||||||
|
my @xml;
|
||||||
|
|
||||||
|
sub getpart {
|
||||||
|
my ($section, $part)=@_;
|
||||||
|
|
||||||
|
my @this;
|
||||||
|
my $inside=0;
|
||||||
|
|
||||||
|
# print "Section: $section, part: $part\n";
|
||||||
|
|
||||||
|
for(@xml) {
|
||||||
|
# print "$inside: $_";
|
||||||
|
if(!$inside && ($_ =~ /^ *\<$section/)) {
|
||||||
|
$inside++;
|
||||||
|
}
|
||||||
|
elsif((1 ==$inside) && ($_ =~ /^ *\<$part/)) {
|
||||||
|
$inside++;
|
||||||
|
}
|
||||||
|
elsif((2 ==$inside) && ($_ =~ /^ *\<\/$part/)) {
|
||||||
|
$inside--;
|
||||||
|
}
|
||||||
|
elsif((1==$inside) && ($_ =~ /^ *\<\/$section/)) {
|
||||||
|
return @this;
|
||||||
|
}
|
||||||
|
elsif(2==$inside) {
|
||||||
|
push @this, $_;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return @this; #empty!
|
||||||
|
}
|
||||||
|
|
||||||
|
sub loadtest {
|
||||||
|
my ($file)=@_;
|
||||||
|
|
||||||
|
undef @xml;
|
||||||
|
open(XML, "<$file") ||
|
||||||
|
return 1; # failure!
|
||||||
|
while(<XML>) {
|
||||||
|
push @xml, $_;
|
||||||
|
}
|
||||||
|
close(XML);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Strip off all lines that match the specified pattern and return
|
||||||
|
# the new array.
|
||||||
|
#
|
||||||
|
|
||||||
|
sub striparray {
|
||||||
|
my ($pattern, $arrayref) = @_;
|
||||||
|
|
||||||
|
my @array;
|
||||||
|
|
||||||
|
for(@$arrayref) {
|
||||||
|
if($_ !~ /$pattern/) {
|
||||||
|
push @array, $_;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return @array;
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# pass array *REFERENCES* !
|
||||||
|
#
|
||||||
|
sub compareparts {
|
||||||
|
my ($firstref, $secondref)=@_;
|
||||||
|
|
||||||
|
my $sizefirst=scalar(@$firstref);
|
||||||
|
my $sizesecond=scalar(@$secondref);
|
||||||
|
|
||||||
|
if($sizefirst != $sizesecond) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
for(1 .. $sizefirst) {
|
||||||
|
my $index = $_ - 1;
|
||||||
|
if($firstref->[$index] ne $secondref->[$index]) {
|
||||||
|
return 1+$index;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Write a given array to the specified file
|
||||||
|
#
|
||||||
|
sub writearray {
|
||||||
|
my ($filename, $arrayref)=@_;
|
||||||
|
|
||||||
|
open(TEMP, ">$filename");
|
||||||
|
for(@$arrayref) {
|
||||||
|
print TEMP $_;
|
||||||
|
}
|
||||||
|
close(TEMP);
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Load a specified file an return it as an array
|
||||||
|
#
|
||||||
|
sub loadarray {
|
||||||
|
my ($filename)=@_;
|
||||||
|
my @array;
|
||||||
|
|
||||||
|
open(TEMP, "<$filename");
|
||||||
|
while(<TEMP>) {
|
||||||
|
push @array, $_;
|
||||||
|
}
|
||||||
|
close(TEMP);
|
||||||
|
return @array;
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# Given two array references, this function will store them in two
|
||||||
|
# temporary files, run 'diff' on them, store the result, remove the
|
||||||
|
# temp files and return the diff output!
|
||||||
|
#
|
||||||
|
sub showdiff {
|
||||||
|
my ($firstref, $secondref)=@_;
|
||||||
|
|
||||||
|
my $file1=".array1";
|
||||||
|
my $file2=".array2";
|
||||||
|
|
||||||
|
open(TEMP, ">$file1");
|
||||||
|
for(@$firstref) {
|
||||||
|
print TEMP $_;
|
||||||
|
}
|
||||||
|
close(TEMP);
|
||||||
|
|
||||||
|
open(TEMP, ">$file2");
|
||||||
|
for(@$secondref) {
|
||||||
|
print TEMP $_;
|
||||||
|
}
|
||||||
|
close(TEMP);
|
||||||
|
|
||||||
|
my @out = `diff $file1 $file2`;
|
||||||
|
|
||||||
|
unlink $file1, $file2;
|
||||||
|
return @out;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
1;
|
@ -5,6 +5,8 @@ use FileHandle;
|
|||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
require "getpart.pm";
|
||||||
|
|
||||||
sub spawn; # forward declaration
|
sub spawn; # forward declaration
|
||||||
sub logmsg { #print "$0 $$: @_ at ", scalar localtime, "\n"
|
sub logmsg { #print "$0 $$: @_ at ", scalar localtime, "\n"
|
||||||
}
|
}
|
||||||
@ -140,15 +142,15 @@ for ( $waitedpid = 0;
|
|||||||
"You must enter a test number to get good data back\r\n";
|
"You must enter a test number to get good data back\r\n";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
loadtest("data/test$testnum");
|
||||||
# send a custom reply to the client
|
# send a custom reply to the client
|
||||||
open(DATA, "<data/reply$testnum.txt");
|
my @data = getpart("reply", "data");
|
||||||
while(<DATA>) {
|
for(@data) {
|
||||||
print $_;
|
print $_;
|
||||||
if($verbose) {
|
if($verbose) {
|
||||||
print STDERR "OUT: $_";
|
print STDERR "OUT: $_";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
close(DATA);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
# print "Hello there, $name, it's now ", scalar localtime, "\r\n";
|
# print "Hello there, $name, it's now ", scalar localtime, "\r\n";
|
||||||
|
@ -10,7 +10,8 @@ use strict;
|
|||||||
|
|
||||||
@INC=(@INC, $ENV{'srcdir'}, ".");
|
@INC=(@INC, $ENV{'srcdir'}, ".");
|
||||||
|
|
||||||
require "stunnel.pm";
|
require "stunnel.pm"; # stunnel functions
|
||||||
|
require "getpart.pm"; # array functions
|
||||||
|
|
||||||
my $srcdir = $ENV{'srcdir'} || '.';
|
my $srcdir = $ENV{'srcdir'} || '.';
|
||||||
my $HOSTIP="127.0.0.1";
|
my $HOSTIP="127.0.0.1";
|
||||||
@ -261,40 +262,6 @@ sub runftpsserver {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#######################################################################
|
|
||||||
# This function compares two binary files and return non-zero if they
|
|
||||||
# differ
|
|
||||||
#
|
|
||||||
sub comparefiles {
|
|
||||||
my $source=$_[0];
|
|
||||||
my $dest=$_[1];
|
|
||||||
my $res=0;
|
|
||||||
|
|
||||||
open(S, "<$source") ||
|
|
||||||
return 1;
|
|
||||||
open(D, "<$dest") ||
|
|
||||||
return 1;
|
|
||||||
|
|
||||||
# silly win-crap
|
|
||||||
binmode S;
|
|
||||||
binmode D;
|
|
||||||
|
|
||||||
my $m = 20;
|
|
||||||
my ($snum, $dnum, $s, $d);
|
|
||||||
do {
|
|
||||||
$snum = read(S, $s, $m);
|
|
||||||
$dnum = read(D, $d, $m);
|
|
||||||
if(($snum != $dnum) ||
|
|
||||||
($s ne $d)) {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
} while($snum);
|
|
||||||
close(S);
|
|
||||||
close(D);
|
|
||||||
return $res;
|
|
||||||
}
|
|
||||||
|
|
||||||
#######################################################################
|
#######################################################################
|
||||||
# Remove all files in the specified directory
|
# Remove all files in the specified directory
|
||||||
#
|
#
|
||||||
@ -350,32 +317,14 @@ sub filteroff {
|
|||||||
sub compare {
|
sub compare {
|
||||||
# filter off the 4 pattern before compare!
|
# filter off the 4 pattern before compare!
|
||||||
|
|
||||||
my $first=$_[0];
|
my ($firstref, $secondref)=@_;
|
||||||
my $sec=$_[1];
|
|
||||||
my $text=$_[2];
|
|
||||||
my $strip=$_[3];
|
|
||||||
my $res;
|
|
||||||
|
|
||||||
if ($strip ne "") {
|
my $result = compareparts($firstref, $secondref);
|
||||||
filteroff($first, $strip, "$LOGDIR/generated.tmp");
|
|
||||||
filteroff($sec, $strip, "$LOGDIR/stored.tmp");
|
|
||||||
|
|
||||||
$first="$LOGDIR/generated.tmp";
|
|
||||||
$sec="$LOGDIR/stored.tmp";
|
|
||||||
}
|
|
||||||
|
|
||||||
$res = comparefiles($first, $sec);
|
if(!$short && $result) {
|
||||||
if ($res != 0) {
|
print showdiff($firstref, $secondref);
|
||||||
print " $text FAILED\n";
|
|
||||||
print "=> diff $first $sec' looks like (\">\" added by runtime):\n";
|
|
||||||
print `diff $sec $first`;
|
|
||||||
return 1;
|
|
||||||
}
|
}
|
||||||
|
return $result;
|
||||||
if(!$short) {
|
|
||||||
print " $text OK";
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#######################################################################
|
#######################################################################
|
||||||
@ -424,71 +373,70 @@ sub displaydata {
|
|||||||
#
|
#
|
||||||
|
|
||||||
sub singletest {
|
sub singletest {
|
||||||
my $NUMBER=$_[0];
|
my $testnum=$_[0];
|
||||||
my $REPLY="${TESTDIR}/reply${NUMBER}.txt";
|
|
||||||
|
|
||||||
if ( -f "$TESTDIR/reply${NUMBER}0001.txt" ) {
|
# load the test case file definition
|
||||||
|
if(loadtest("${TESTDIR}/test${testnum}")) {
|
||||||
|
if($verbose) {
|
||||||
|
# this is not a test
|
||||||
|
print "$testnum doesn't look like a test case!\n";
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
# extract the reply data
|
||||||
|
my @reply = getpart("reply", "data");
|
||||||
|
my @replycheck = getpart("reply", "datacheck");
|
||||||
|
|
||||||
|
if (@replycheck) {
|
||||||
# we use this file instead to check the final output against
|
# we use this file instead to check the final output against
|
||||||
$REPLY="$TESTDIR/reply${NUMBER}0001.txt";
|
@reply=@replycheck;
|
||||||
}
|
}
|
||||||
|
|
||||||
# curl command to run
|
# curl command to run
|
||||||
my $CURLCMD="$TESTDIR/command$NUMBER.txt";
|
my @curlcmd= getpart("client", "command");
|
||||||
|
|
||||||
# this is the valid protocol file we should generate
|
# this is the valid protocol blurb curl should generate
|
||||||
my $PROT="$TESTDIR/prot$NUMBER.txt";
|
my @protocol= getpart("verify", "protocol");
|
||||||
|
|
||||||
# redirected stdout/stderr here
|
# redirected stdout/stderr to these files
|
||||||
$STDOUT="$LOGDIR/stdout$NUMBER";
|
$STDOUT="$LOGDIR/stdout$testnum";
|
||||||
$STDERR="$LOGDIR/stderr$NUMBER";
|
$STDERR="$LOGDIR/stderr$testnum";
|
||||||
|
|
||||||
# if this file exists, we verify that the stdout contained this:
|
# if this section exists, we verify that the stdout contained this:
|
||||||
my $VALIDOUT="$TESTDIR/stdout$NUMBER.txt";
|
my @validstdout = getpart("verify", "stdout");
|
||||||
|
|
||||||
# if this file exists, we verify upload
|
# if this section exists, we verify upload
|
||||||
my $UPLOAD="$TESTDIR/upload$NUMBER.txt";
|
my @upload = getpart("verify", "upload");
|
||||||
|
|
||||||
# if this file exists, it is FTP server instructions:
|
# if this section exists, it is FTP server instructions:
|
||||||
my $ftpservercmd="$TESTDIR/ftpd$NUMBER.txt";
|
my @ftpservercmd = getpart("server", "instruction");
|
||||||
|
|
||||||
my $CURLOUT="$LOGDIR/curl$NUMBER.out"; # curl output if not stdout
|
my $CURLOUT="$LOGDIR/curl$testnum.out"; # curl output if not stdout
|
||||||
|
|
||||||
if(! -r $CURLCMD) {
|
|
||||||
if($verbose) {
|
|
||||||
# this is not a test
|
|
||||||
print "$NUMBER doesn't look like a test case!\n";
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# remove previous server output logfile
|
# remove previous server output logfile
|
||||||
unlink($SERVERIN);
|
unlink($SERVERIN);
|
||||||
|
|
||||||
if(-r $ftpservercmd) {
|
if(@ftpservercmd) {
|
||||||
# copy the instruction file
|
# write the instructions to file
|
||||||
system("cp $ftpservercmd $FTPDCMD");
|
writearray($FTPDCMD, \@ftpservercmd);
|
||||||
}
|
}
|
||||||
|
|
||||||
# name of the test
|
# name of the test
|
||||||
open(N, "<$TESTDIR/name$NUMBER.txt") ||
|
my @testname= getpart("client", "name");
|
||||||
return -1; # not a test
|
|
||||||
my $DESC=<N>;
|
|
||||||
close(N);
|
|
||||||
$DESC =~ s/[\r\n]//g;
|
|
||||||
|
|
||||||
print "test $NUMBER...";
|
print "test $testnum...";
|
||||||
if(!$short) {
|
if(!$short) {
|
||||||
print "[$DESC]\n";
|
my $name = $testname[0];
|
||||||
|
$name =~ s/\n//g;
|
||||||
|
print "[$name]\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
# get the command line options to use
|
# get the command line options to use
|
||||||
|
my ($cmd, @blaha)= getpart("client", "command");
|
||||||
open(COMMAND, "<$CURLCMD");
|
|
||||||
my $cmd=<COMMAND>;
|
|
||||||
chomp $cmd;
|
|
||||||
close(COMMAND);
|
|
||||||
|
|
||||||
# make some nice replace operations
|
# make some nice replace operations
|
||||||
|
$cmd =~ s/\n//g; # no newlines please
|
||||||
$cmd =~ s/%HOSTIP/$HOSTIP/g;
|
$cmd =~ s/%HOSTIP/$HOSTIP/g;
|
||||||
$cmd =~ s/%HOSTPORT/$HOSTPORT/g;
|
$cmd =~ s/%HOSTPORT/$HOSTPORT/g;
|
||||||
$cmd =~ s/%HTTPSPORT/$HTTPSPORT/g;
|
$cmd =~ s/%HTTPSPORT/$HTTPSPORT/g;
|
||||||
@ -502,16 +450,20 @@ sub singletest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
my $out="";
|
my $out="";
|
||||||
if ( ! -r "$VALIDOUT" ) {
|
if (!@validstdout) {
|
||||||
$out="--output $CURLOUT ";
|
$out="--output $CURLOUT ";
|
||||||
}
|
}
|
||||||
|
|
||||||
# run curl, add -v for debug information output
|
# run curl, add -v for debug information output
|
||||||
my $cmdargs="$out--include -v --silent $cmd";
|
my $cmdargs="$out--include -v --silent $cmd";
|
||||||
|
|
||||||
my $STDINFILE="$TESTDIR/stdin$NUMBER.txt";
|
my @stdintest = getpart("verify", "stdin");
|
||||||
if(-f $STDINFILE) {
|
|
||||||
$cmdargs .= " < $STDINFILE";
|
if(@stdintest) {
|
||||||
|
my $stdinfile="$LOGDIR/stdin-for-$testnum";
|
||||||
|
writearray($stdinfile, \@stdintest);
|
||||||
|
|
||||||
|
$cmdargs .= " <$stdinfile";
|
||||||
}
|
}
|
||||||
my $CMDLINE="$CURL $cmdargs >$STDOUT 2>$STDERR";
|
my $CMDLINE="$CURL $cmdargs >$STDOUT 2>$STDERR";
|
||||||
|
|
||||||
@ -536,93 +488,80 @@ sub singletest {
|
|||||||
$res /= 256;
|
$res /= 256;
|
||||||
}
|
}
|
||||||
|
|
||||||
my $ERRORCODE = "$TESTDIR/error$NUMBER.txt";
|
my @err = getpart("verify", "errorcode");
|
||||||
|
my $errorcode = $err[0];
|
||||||
|
|
||||||
if ($res != 0) {
|
if($errorcode || $res) {
|
||||||
# the invoked command return an error code
|
if($errorcode == $res) {
|
||||||
|
|
||||||
my $expectederror=0;
|
|
||||||
|
|
||||||
if(-f $ERRORCODE) {
|
|
||||||
open(ERRO, "<$ERRORCODE");
|
|
||||||
$expectederror = <ERRO>;
|
|
||||||
close(ERRO);
|
|
||||||
# strip non-digits
|
|
||||||
$expectederror =~ s/[^0-9]//g;
|
|
||||||
}
|
|
||||||
|
|
||||||
if($expectederror != $res) {
|
|
||||||
|
|
||||||
print "*** Failed to invoke curl for test $NUMBER ***\n",
|
|
||||||
"*** [$DESC] ***\n",
|
|
||||||
"*** The command returned $res for: ***\n $CMDLINE\n";
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
elsif(!$short) {
|
|
||||||
print " error OK";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if(-f $ERRORCODE) {
|
|
||||||
# this command was meant to fail, it didn't and thats WRONG
|
|
||||||
if(!$short) {
|
if(!$short) {
|
||||||
print " error FAILED";
|
print " error OK";
|
||||||
}
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( -r "$VALIDOUT" ) {
|
|
||||||
# verify redirected stdout
|
|
||||||
$res = compare($STDOUT, $VALIDOUT, "data");
|
|
||||||
if($res) {
|
|
||||||
return 1;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (! -r $REPLY && -r $CURLOUT) {
|
if(!$short) {
|
||||||
print "** Missing reply data file for test $NUMBER",
|
print "curl returned $res\n";
|
||||||
", should be similar to $CURLOUT\n";
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if( -r $CURLOUT ) {
|
|
||||||
# verify the received data
|
|
||||||
$res = compare($CURLOUT, $REPLY, "data");
|
|
||||||
if ($res) {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
print " error FAILED";
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if(-r $UPLOAD) {
|
if (@validstdout) {
|
||||||
# verify uploaded data
|
# verify redirected stdout
|
||||||
$res = compare("$LOGDIR/upload.$NUMBER", $UPLOAD, "upload");
|
my @actual = loadarray($STDOUT);
|
||||||
if ($res) {
|
|
||||||
return 1;
|
$res = compare(\@actual, \@validstdout);
|
||||||
}
|
if($res) {
|
||||||
|
print " stdout FAILED";
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
|
if(!$short) {
|
||||||
|
print " stdout OK";
|
||||||
if(-r $SERVERIN) {
|
|
||||||
if(! -r $PROT) {
|
|
||||||
print "** Missing protocol file for test $NUMBER",
|
|
||||||
", should be similar to $SERVERIN\n";
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
# The strip pattern below is for stripping off User-Agent: since
|
|
||||||
# that'll be different in all versions, and the lines in a
|
|
||||||
# RFC1876-post that are randomly generated and therefore are
|
|
||||||
# doomed to always differ!
|
|
||||||
|
|
||||||
# verify the sent request
|
|
||||||
$res = compare($SERVERIN, $PROT, "protocol",
|
|
||||||
"^(User-Agent:|--curl|Content-Type: multipart/form-data; boundary=|PORT ).*\r\n");
|
|
||||||
if($res) {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(@reply) {
|
||||||
|
# verify the received data
|
||||||
|
my @out = loadarray($CURLOUT);
|
||||||
|
$res = compare(\@out, \@reply);
|
||||||
|
if ($res) {
|
||||||
|
print " data FAILED";
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
if(!$short) {
|
||||||
|
print " data OK";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(@upload) {
|
||||||
|
# verify uploaded data
|
||||||
|
my @out = loadarray("$LOGDIR/upload.$testnum");
|
||||||
|
$res = compare(\@out, \@upload);
|
||||||
|
if ($res) {
|
||||||
|
print " upload FAILED";
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
if(!$short) {
|
||||||
|
print " upload OK";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(@protocol) {
|
||||||
|
# verify the sent request
|
||||||
|
my @out = loadarray($SERVERIN);
|
||||||
|
|
||||||
|
# what to cut off from the live protocol sent by curl
|
||||||
|
my @strip = getpart("verify", "strip");
|
||||||
|
@out = striparray( $strip[0], \@out);
|
||||||
|
|
||||||
|
$res = compare(\@out, \@protocol);
|
||||||
|
if($res) {
|
||||||
|
print " protocol FAILED";
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
if(!$short) {
|
||||||
|
print " protocol OK";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!$keepoutfiles) {
|
if(!$keepoutfiles) {
|
||||||
@ -631,7 +570,7 @@ sub singletest {
|
|||||||
unlink($STDERR);
|
unlink($STDERR);
|
||||||
unlink($CURLOUT); # remove the downloaded results
|
unlink($CURLOUT); # remove the downloaded results
|
||||||
|
|
||||||
unlink("$LOGDIR/upload.$NUMBER"); # remove upload leftovers
|
unlink("$LOGDIR/upload.$testnum"); # remove upload leftovers
|
||||||
}
|
}
|
||||||
|
|
||||||
unlink($FTPDCMD); # remove the instructions for this test
|
unlink($FTPDCMD); # remove the instructions for this test
|
||||||
@ -672,6 +611,11 @@ sub singletest {
|
|||||||
|
|
||||||
my %run;
|
my %run;
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
# This function makes sure the right set of server is running for the
|
||||||
|
# specified test case. This is a useful design when we run single tests as not
|
||||||
|
# all servers need to run then!
|
||||||
|
|
||||||
sub serverfortest {
|
sub serverfortest {
|
||||||
my ($testnum)=@_;
|
my ($testnum)=@_;
|
||||||
|
|
||||||
@ -818,16 +762,6 @@ displaydata();
|
|||||||
cleardir($LOGDIR);
|
cleardir($LOGDIR);
|
||||||
mkdir($LOGDIR, 0777);
|
mkdir($LOGDIR, 0777);
|
||||||
|
|
||||||
#######################################################################
|
|
||||||
# First, start our test servers
|
|
||||||
#
|
|
||||||
|
|
||||||
#runhttpserver($verbose);
|
|
||||||
#runftpserver($verbose);
|
|
||||||
#runhttpsserver($verbose);
|
|
||||||
|
|
||||||
#sleep 1; # start-up time
|
|
||||||
|
|
||||||
#######################################################################
|
#######################################################################
|
||||||
# If 'all' tests are requested, find out all test numbers
|
# If 'all' tests are requested, find out all test numbers
|
||||||
#
|
#
|
||||||
@ -835,7 +769,7 @@ mkdir($LOGDIR, 0777);
|
|||||||
if ( $TESTCASES eq "all") {
|
if ( $TESTCASES eq "all") {
|
||||||
# Get all commands and find out their test numbers
|
# Get all commands and find out their test numbers
|
||||||
opendir(DIR, $TESTDIR) || die "can't opendir $TESTDIR: $!";
|
opendir(DIR, $TESTDIR) || die "can't opendir $TESTDIR: $!";
|
||||||
my @cmds = grep { /^command([0-9]+).txt/ && -f "$TESTDIR/$_" } readdir(DIR);
|
my @cmds = grep { /^test([0-9]+)$/ && -f "$TESTDIR/$_" } readdir(DIR);
|
||||||
closedir DIR;
|
closedir DIR;
|
||||||
|
|
||||||
$TESTCASES=""; # start with no test cases
|
$TESTCASES=""; # start with no test cases
|
||||||
@ -883,12 +817,12 @@ foreach $testnum (split(" ", $TESTCASES)) {
|
|||||||
$total++;
|
$total++;
|
||||||
}
|
}
|
||||||
if($error>0) {
|
if($error>0) {
|
||||||
|
$failed.= "$testnum ";
|
||||||
if(!$anyway) {
|
if(!$anyway) {
|
||||||
# a test failed, abort
|
# a test failed, abort
|
||||||
print "\n - abort tests\n";
|
print "\n - abort tests\n";
|
||||||
last;
|
last;
|
||||||
}
|
}
|
||||||
$failed.= "$testnum ";
|
|
||||||
}
|
}
|
||||||
elsif(!$error) {
|
elsif(!$error) {
|
||||||
$ok++;
|
$ok++;
|
||||||
@ -909,9 +843,6 @@ close(CMDLOG);
|
|||||||
for(keys %run) {
|
for(keys %run) {
|
||||||
stopserver($run{$_}); # the pid file is in the hash table
|
stopserver($run{$_}); # the pid file is in the hash table
|
||||||
}
|
}
|
||||||
#stopserver($FTPPIDFILE);
|
|
||||||
#stopserver($PIDFILE);
|
|
||||||
#stopserver($HTTPSPIDFILE);
|
|
||||||
|
|
||||||
if($total) {
|
if($total) {
|
||||||
print "$ok tests out of $total reported OK\n";
|
print "$ok tests out of $total reported OK\n";
|
||||||
|
Loading…
Reference in New Issue
Block a user