You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_ftp-commits@incubator.apache.org by wr...@apache.org on 2006/02/16 06:40:43 UTC

svn commit: r378185 [3/3] - in /incubator/mod_ftp/trunk/tests/perl-framework: Ssl/ t/ t/conf/ t/ftp/ t/ftp/ftp_exp_ssl/ t/ftp/ftp_imp_ssl/ t/htdocs/ t/htdocs/ftp/ t/htdocs/ftp/anonftpdocs/ t/htdocs/ftp/data/ t/htdocs/ftp/data/.libs/ t/htdocs/ftp/data/a...

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/pasvRange.t
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/pasvRange.t?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/pasvRange.t (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/pasvRange.t Wed Feb 15 22:40:34 2006
@@ -0,0 +1,34 @@
+use Ssl::FTPSSL;
+use Apache::TestRequest;
+use Apache::Test;
+use Apache::TestUtil;
+plan tests => 1, need_module 'mod_ftp', need_module 'mod_ssl';
+
+Apache::TestRequest::module('ftp_ssl_implicit');
+
+my $hostport = Apache::TestRequest::hostport();
+my ($host,$port)= split(/:/,$hostport);
+	
+$username = "common";
+$password = "password";
+
+#FTPPasvRange 10000 12000
+
+my $ftp = Ssl::FTPSSL->new($host,Port=>$port,Encryption =>'I',Debug=>0) or die "Couldn't connect to $host\n";
+
+$ftp->login($username,$password) or die "Login failed.\n";
+my $actual;
+my $expected = "PasvRange Successful";
+my $host_ip_port=$ftp->pasv_xfer();
+my ($host_ip_one,$host_ip_two,$host_ip_three,
+	$host_ip_four,$host_port_one,$host_port_two) 
+	= split(/,/, $host_ip_port);
+my $host_pasv_value = $host_port_one * 256 + $host_port_two;
+if (($host_pasv_value >= 10000) && ($host_pasv_value <= 12000)){
+    $actual = "PasvRange Successful";
+}
+else{
+    $actual = "PasvRange Failed";
+}
+ok t_cmp($actual,$expected,"FTPPasvRange Test");
+$ftp->quit() or die "Unable to quit\n";

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/pwd.t
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/pwd.t?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/pwd.t (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/pwd.t Wed Feb 15 22:40:34 2006
@@ -0,0 +1,51 @@
+use Ssl::FTPSSL;
+use Apache::TestRequest;
+use Apache::Test;
+use Apache::TestUtil;
+plan tests => 1, need_module 'mod_ftp', need_module 'mod_ssl';
+
+Apache::TestRequest::module('ftp_ssl_implicit');
+
+my $hostport = Apache::TestRequest::hostport();
+my ($host,$port)= split(/:/,$hostport);
+
+$username = ("common");
+$password = ("password");
+
+my @filelist;
+
+my $expected ="PWD Successful";		
+
+my $actual;
+
+my $isarray='Issue PWD Command';		
+
+#Using Passive mode of data transfer
+my $ftp = Ssl::FTPSSL->new($host,Port=>$port, Encryption =>'I', Debug=>0) or die "Couldn't connect to $host\n";
+
+$ftp->login($username, $password) or die "Login failed\n";
+        
+
+if($ftp->cwd("getlist"))
+{ 	
+}	
+else
+{
+	die "Couldn't change to directory getlist";		
+}
+
+my $pwdir=$ftp->pwd();
+
+if($pwdir eq "/getlist")
+{
+	$actual="PWD Successful";
+}
+
+else
+{
+        die "Couldn't change to directory getlist 1";
+}
+
+ok t_cmp ($actual,$expected,$isarray);
+
+$ftp->quit() or die "Unable to quit\n";

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/rename.t
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/rename.t?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/rename.t (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/rename.t Wed Feb 15 22:40:34 2006
@@ -0,0 +1,82 @@
+use Ssl::FTPSSL;
+use File::Path;
+use Apache::TestRequest;
+use Apache::Test;
+use Apache::TestUtil;
+plan tests => 4, need_module 'mod_ftp', need_module 'mod_ssl';
+
+Apache::TestRequest::module('ftp_ssl_implicit');
+
+my $hostport = Apache::TestRequest::hostport();
+my ($host,$port)= split(/:/,$hostport);
+$username = ("common");
+$password = ("password");
+
+my $vars = Apache::Test::vars();
+$document_root=Apache::Test::vars('documentroot');
+$install_root="$document_root/ftp";
+
+my $mydir="$install_root/ftpdocs/home/common/renamedir";
+my $mydir1="$install_root/data/renamedir_backup";
+rmtree($mydir);
+mkdir $mydir;
+`cp -r $mydir1/\* $mydir`;
+
+my @renamefromlist=(
+'rename_oldfilename',
+'rename_nonexistfile',
+'invalid/filename',
+'newfilename3',
+);
+
+my @renametolist=(
+'rename_newfilename',
+'newfilename2',
+'newfilename3',
+'invalid/filename',
+);
+$r=0;
+
+my @expected =(
+"RENAME Successful",
+"RENAME Failed",
+"RENAME Failed",
+"RENAME Failed",
+);		
+
+my $actual;
+
+my @isarray=(
+"Rename an existing file",
+"Attempting to rename a non-existing file",
+"Attemting to rename an invalid source file name",
+"Attemting to rename an existing source file to an invalid destination file name",
+);
+		
+
+my $ftp = Ssl::FTPSSL->new($host,Port =>$port,Encryption => 'I',Debug => 0) or die "Couldn't connect to $host\n";
+
+$ftp->login($username, $password) or die "Login failed.\n";
+        
+	         
+if($ftp->cwd("renamedir"))
+{
+}	
+else
+{
+	die "Couldn't change to directoty renamedir";		
+}
+for($r=0;$r<4;$r++)
+{
+	if( $ftp->rename($renamefromlist[$r], $renametolist[$r]))
+	{
+		$actual="RENAME Successful";
+	}
+	else
+	{
+		$actual="RENAME Failed";
+	}
+	ok t_cmp ( $actual,$expected[$r],$isarray[$r]);
+}
+
+$ftp->quit() or  die "Unable to quit\n" ;

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/rest.t
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/rest.t?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/rest.t (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/rest.t Wed Feb 15 22:40:34 2006
@@ -0,0 +1,72 @@
+use Ssl::FTPSSL;
+use Apache::TestRequest;
+use Apache::Test;
+use Apache::TestUtil;
+use File::Path;
+use File::stat;
+
+plan tests =>2 , need_module 'mod_ftp', need_module 'mod_ssl';
+
+Apache::TestRequest::module('ftp_ssl_implicit');
+
+my $hostport = Apache::TestRequest::hostport();
+my ($host,$port)= split(/:/,$hostport);
+my $vars = Apache::Test::vars();
+$document_root=Apache::Test::vars('documentroot');
+$install_root="$document_root/ftp";
+my $ftp;
+my $output="";
+#my $expected="REST Successful";
+my @expected = (
+"kfkjfl\r\n",
+"kfkjfl\n",
+);
+my $actual;
+my $getlisting="smallfile";
+my @isarray = (
+    'PASV:Retrieve a small file in ASCII mode',
+    'PASV:Retrieve a small file in Binary mode',
+#    'PORT:Retrieve a small file in ASCII mode',
+#    'PORT:Retrieve a small file in Binary mode',
+);
+
+my $mydir="$install_root/data/restdir";
+rmtree($mydir);
+mkdir $mydir;
+my $offset = 2; 
+for($x=0;$x<1;$x++){
+    if ($x==0){	
+        #Using Passive mode of data transfer
+	$ftp = Ssl::FTPSSL->new($host,Port =>$port,Encryption => 'I',Debug => 0) or die "Couldn't connect to $host\n";
+    }
+#    else{
+#        #Using Port mode of data transfer
+#	$ftp = Ssl::FTPSSL->new($host,Port =>$port,Encryption => 'I',Debug => 1) or die "Couldn't connect to $host\n";
+#    }
+    $ftp->login("common","password") or die "Login failed";
+    for($r=0;$r<2;$r++){
+        $ftp->pasv();
+        unlink ( "$install_root/data/restdir/$getlisting" );
+        if ($r==0){
+            $ftp->ascii();
+        }
+        else{		
+            $ftp->binary();
+        }
+        $ftp->restart("2");
+        $status=$ftp->get("/restlist/$getlisting","$install_root/data/restdir/$getlisting");
+        if(!$status){
+            die "Unable to retrieve file:/restlist/$getlisting\n";
+	}
+        open(READFILE,"< $install_root/data/restdir/$getlisting") or die "Can't open file for reading\n";
+        $text=<READFILE>;
+        my $len = length $text;
+        $actual= substr ($text, 0, $len-2);
+        close (READFILE);
+        $actual	=$text;
+        
+        ok t_cmp ( $actual,$expected[$r],  $isarray[$r+2*$x]);
+    }	
+    $ftp->quit() or die "Unable to quit";
+}
+

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/retr.t
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/retr.t?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/retr.t (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/retr.t Wed Feb 15 22:40:34 2006
@@ -0,0 +1,134 @@
+use Ssl::FTPSSL;
+use Apache::TestRequest;
+use Apache::Test;
+use Apache::TestUtil;
+plan tests => 9, need_module 'mod_ftp', need_module 'mod_ssl';
+
+Apache::TestRequest::module('ftp_ssl_implicit');
+use File::Path;
+use File::stat;
+
+my $hostport = Apache::TestRequest::hostport();
+my ($host,$port)= split(/:/,$hostport);
+my $vars = Apache::Test::vars();
+$document_root=Apache::Test::vars('documentroot');
+$install_root="$document_root/ftp";
+
+my $ftp;
+my $output="";
+
+my @expected=(
+    'RETR Successful',
+'text',
+    'RETR Failed',
+    'RETR Successful',
+    'Hello World',
+    'RETR Failed',
+    'RETR Failed',
+    'RETR Successful',
+    'RETR Successful',
+);
+my $actual;
+
+
+my @getlisting=(
+    'smallfile',
+    'a.txt',
+    'nonexisting',
+    'smallfile',
+    'a.out',
+    'nonexisting',
+    'retrtestdir',
+    'bigretr',
+    'zerobytes',
+);
+
+my @isarray=(
+    'PASV:Retrieve a small file in ASCII mode',
+    'PASV:Retrieve and verify contents of a text file in ASCII mode',
+    'PASV:Retrieve a non-existing file in ASCII mode',
+    'PASV:Retrieve a small file in Binary mode',
+    'PASV:Retrieve and execute an executable file in Binary mode',
+    'PASV:Retrieve a non-existing file in Binary mode',
+    'PASV:Retrieve a directory',
+    'PASV:Retrieve a big file',
+    'PASV:Retrieve a file of size zero bytes',
+#    'PORT:Retrieve a small file in ASCII mode',
+#    'PORT:Retrieve and verify contents of a text file in ASCII mode',
+#    'PORT:Retrieve a non-existing file in ASCII mode',
+#    'PORT:Retrieve a small file in Binary mode',
+#    'PORT:Retrieve and execute an executable file in Binary mode',
+#    'PORT:Retrieve a non-existing file in Binary mode',
+#    'PORT:Retrieve a directory',
+#    'PORT:Retrieve a big file',
+#    'PORT:Retrieve a file of size zero bytes',
+);
+
+my $p;
+
+my $mydir="$install_root/data/retrdir";
+rmtree($mydir);
+mkdir $mydir;
+
+for ($x=0;$x<1;$x++){
+    if ($x==0){
+        #Using Passive mode of data transfer
+        $ftp = Ssl::FTPSSL->new($host,Port =>$port,Encryption => 'I', Debug =>0) or die "Couldn't connect to $host\n";
+        $p="pasv";
+    }
+#    else{
+#        #Using Port mode of data transfer
+#        $ftp = Net::FTP->new($host,Port =>$port,Passive =>0) or die "Couldn't connect to $host\n";
+#        $p="port";
+#    }
+    $ftp->login("common","password") or die "Login failed";
+    for($r=0;$r<9;$r++){
+        $ftp->pasv();
+        if ($r==3 || $r==4 || $r==5){
+            $ftp->binary();
+        }
+        else{
+            $ftp->ascii();
+        }
+        $status=$ftp->get("/getlist/$getlisting[$r]","$install_root/data/retrdir/$getlisting[$r]$p");
+        # For seeing the actual sizes of the files retrieved,uncomment the following lines         
+        #if(($r != 2) && ($r !=5)){
+        #	my $file_size1 = stat("$install_root/data/retrdir/$getlisting[$r]$p")->size;
+	#	my $file_size2 = stat("$install_root/ftpdocs/home/common/getlist/$getlisting[$r]")->size;
+	#	print "Size:$file_size2,Received:$file_size1\n";	
+	#}
+
+        if( $r==4 && defined($status)){
+            chmod 0777,"$install_root/data/retrdir/$getlisting[$r]$p";
+            my $prog="$install_root/data/retrdir/$getlisting[$r]$p";
+            print "\nExecuting program:$prog\n";
+            $output = `$prog` ;
+            print "Output is:\n$output\n\n";
+            chomp($output);
+            $actual=$output;
+	}
+        else{
+            if ($r==1){
+                open(READFILE,"< $install_root/data/retrdir/$getlisting[$r]$p") or die "Can't open file for reading\n";
+                $text=<READFILE>;
+                my $len = length $text;
+                $actual=substr ($text, 0, $len-2);
+                print "LENGTH = $len\n";
+                close (READFILE);
+            }
+            else{
+                if (defined($status)){
+                    $actual="RETR Successful";
+		}
+                else{
+                    $actual="RETR Failed";
+		}
+	    }
+	}
+        ok t_cmp ( $actual,$expected[$r], $isarray[$r+9*$x]);
+    }
+$ftp->quit() or die "Unable to quit";
+#rmtree($mydir);
+mkdir $mydir;
+}			
+

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/rmd.t
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/rmd.t?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/rmd.t (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/rmd.t Wed Feb 15 22:40:34 2006
@@ -0,0 +1,72 @@
+use Ssl::FTPSSL;
+use File::Path;
+use Apache::TestRequest;
+use Apache::Test;
+use Apache::TestUtil;
+plan tests => 5, need_module 'mod_ftp', need_module 'mod_ssl';
+
+Apache::TestRequest::module('ftp_ssl_implicit');
+
+my $hostport = Apache::TestRequest::hostport();
+my ($host,$port)= split(/:/,$hostport);
+$username = ("common");
+$password = ("password");
+
+my $vars = Apache::Test::vars();
+$document_root=Apache::Test::vars('documentroot');
+$install_root="$document_root/ftp";
+
+my $mydir="$install_root/ftpdocs/home/common/rmddir";
+my $mydir1="$install_root/data/rmddir_backup";
+rmtree($mydir);
+mkdir $mydir;
+`cp -r $mydir1/\* $mydir`;
+
+my @rmdlist=(
+    'rmd_dir',
+    'rmd_nonexistingdir',
+    'rmd_file',
+    'rmd_nonemptydir',
+    'invalid/dirname',
+);
+
+$r=0;
+
+@expected =(
+    "RMD Successful",
+    "RMD Failed",
+    "RMD Failed",
+    "RMD Failed",
+    "RMD Failed",
+);		
+
+my $actual;
+
+my @isarray=(
+    "Remove an existing directory",
+    "Remove a non-existing directory",
+    "Remove a file",
+    "Remove a non-empty directory",
+    "Remove a directory with invalid directory name ",
+);		
+
+my $ftp = Ssl::FTPSSL->new($host,Port =>$port,Encryption => 'I',Debug => 0) or die "Couldn't connect to $host\n";
+
+$ftp->login($username, $password) or die "Login failed \n";
+        
+if($ftp->cwd("rmddir")){
+}	
+else{
+    die "Couldn't change to directoty rmddir";		
+}	         
+        
+for($r=0;$r<5;$r++){
+    if( $ftp->rmdir($rmdlist[$r])){
+        $actual="RMD Successful";
+    }
+    else{
+        $actual="RMD Failed";
+    }
+    ok t_cmp ( $actual,$expected[$r],$isarray[$r]);
+}
+$ftp->quit or die "Unable to quit\n" ;

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/size.t
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/size.t?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/size.t (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/size.t Wed Feb 15 22:40:34 2006
@@ -0,0 +1,53 @@
+use Ssl::FTPSSL;
+use Apache::TestRequest;
+use Apache::Test;
+use Apache::TestUtil;
+plan tests => 1, need_module 'mod_ftp', need_module 'mod_ssl';
+
+Apache::TestRequest::module('ftp_ssl_implicit');
+
+my $hostport = Apache::TestRequest::hostport();
+my ($host,$port)= split(/:/,$hostport);
+
+$username = ("common");
+$password = ("password");
+
+my @filelist;
+
+my @expected =(
+    "SIZE Successful",
+    "SIZE Successful",
+);		
+
+my $actual;
+
+@isarray=(
+    'PASV:Issue SIZE Command',
+#    'PORT:Issue SIZE Command',
+);		
+
+#Using Passive mode of data transfer
+
+my $ftp = Ssl::FTPSSL->new($host,Port =>$port,Encryption => 'I',Debug => 0) or die "Couldn't connect to $host\n";
+
+$ftp->login($username, $password) or die "Login failed\n";
+        
+if($ftp->cwd("getlist")){
+}	
+else{
+    die "Couldn't change to directoty getlist";		
+}
+my $filesize=0;
+$filesize=$ftp->size("bigretr");
+if($filesize == "67025184"){
+    $actual = "SIZE Successful"; 			   
+}
+else{
+    $actual = "SIZE Failed";		    	
+}
+ok t_cmp ( $actual,$expected[0], $isarray[0]);
+$ftp->quit() or die "Unable to quit\n";
+
+#Using Port mode of data transfer
+#$ftp = Net::FTP->new($host,Port=>$port,Passive =>0) or die "Couldn't connect to $host\n";
+

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/stor.t
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/stor.t?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/stor.t (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/stor.t Wed Feb 15 22:40:34 2006
@@ -0,0 +1,141 @@
+use Ssl::FTPSSL;
+use Apache::TestRequest;
+use Apache::Test;
+use Apache::TestUtil;
+
+plan tests => 8, need_module 'mod_ftp', need_module 'mod_ssl';
+
+Apache::TestRequest::module('ftp_ssl_implicit');
+use File::Path;
+use File::stat;
+
+my $hostport = Apache::TestRequest::hostport();
+my ($host,$port)= split(/:/,$hostport);
+my $vars = Apache::Test::vars();
+$document_root=Apache::Test::vars('documentroot');
+$install_root="$document_root/ftp";
+
+my $ftp;
+my $output;
+
+my @expected=(
+    'STOR Successful',
+    'text
+',
+    'STOR Failed',
+    'STOR Successful',
+    'Hello World',
+    'STOR Failed',
+    'STOR Successful',
+    'STOR Successful',
+);
+my $actual;
+
+
+my @putlisting=(
+    'smallfile',
+    'a.txt',
+    'nonexisting',
+    'smallfile',
+    'a.out',
+    'nonexisting',
+    'bigstor',
+    'zerobytes',
+);
+my @isarray=(
+    'PASV:Storing a small file in ASCII mode',
+    'PASV:Store and verify contents of a text file in ASCII mode',
+    'PASV:Storing a non-existing file in ASCII mode',
+    'PASV:Storing a small file in binary mode',
+    'PASV:Store and execute an executable file in Binary mode',
+    'PASV:Storing a non-existing file in binary mode',
+    'PASV:Storing a big file',
+    'PASV:Storing a file of size zero bytes',
+#    'PORT:Storing a small file in ASCII mode',
+#    'PORT:Store and verify contents of a text file in ASCII mode',
+#    'PORT:Storing a non-existing file in ASCII mode',
+#    'PORT:Storing a small file in binary mode',
+#    'PORT:Store and execute an executable file in Binary mode',
+#    'PORT:Storing a non-existing file in binary mode',
+#    'PORT:Storing a big file',
+#    'PORT:Storing a file of size zero bytes',
+
+);
+
+my $p;
+
+my $mydir="$install_root/ftpdocs/home/common/putlist";
+rmtree($mydir);
+mkdir $mydir;
+
+for ($x=0;$x<1;$x++){
+    if ($x==0){
+        #Using Passive mode of data transfer
+        $ftp = Ssl::FTPSSL->new($host,Port =>$port,Encryption =>'I',Debug =>0) or die "Couldn't connect to $host\n";
+        $p="pasv";
+    }
+#    else{
+#        #Using Port mode of data transfer
+#        $ftp = Ssl::FTPSSL->new($host,Port =>$port,Encryption =>'I',Debug =>0) or die "Couldn't connect to $host\n";
+#        $p="port";
+#    }
+
+    $ftp->login("common","password") or die "Login failed";
+	
+    $ftp->cwd("putlist");
+
+    for($r=0;$r<8;$r++){
+        $ftp->pasv();
+        my $g=$r+8*$x;
+        if ($r==3 || $r==4 || $r==5){
+            $ftp->binary();
+        }
+        else{
+            $ftp->ascii();
+        }
+      	$status=$ftp->put("$install_root/data/stordir/$putlisting[$r]","$putlisting[$r]$p");
+        # For seeing the actual sizes of the files stored,uncomment the following lines         
+	#if(($r != 2) && ($r !=5))
+        #{
+        #        my $file_size1 = stat("$install_root/ftpdocs/home/common/putlist/$putlisting[$r]$p")->size;
+        #        my $file_size2 = stat("$install_root/data/stordir/$putlisting[$r]")->size;
+        #	print "Size:$file_size2,Stored:$file_size1\n";
+        #}
+        if ($r==1){
+            open(READFILE,"$install_root/ftpdocs/home/common/putlist/$putlisting[$r]$p") or die "Can't open file for reading $!\n";
+            $text=<READFILE>;
+            $actual=$text;
+            close (READFILE);
+        }
+  	else{
+            if( $r==4){
+                chmod 0777,"$install_root/ftpdocs/home/common/putlist/$putlisting[$r]$p";
+                my $prog="$install_root/ftpdocs/home/common/putlist/$putlisting[$r]$p";
+                print "\nExecuting program $prog\n";
+                $output =`$prog`;
+                print "Output is:\n$output\n\n";
+                chomp($output);
+                $actual=$output;
+            }
+            else{
+                if (defined($status)){
+                    $actual="STOR Successful";
+		}
+                else{
+                    $actual="STOR Failed";
+		}
+		
+	    }
+			
+		
+	}
+
+        ok t_cmp( $actual,$expected[$r],$isarray[$r+8*$x]);
+		
+    }
+$ftp->quit() or die "Unable to quit";
+
+}			
+rmtree($mydir);
+mkdir $mydir;
+

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/syst.t
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/syst.t?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/syst.t (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/syst.t Wed Feb 15 22:40:34 2006
@@ -0,0 +1,30 @@
+use Ssl::FTPSSL;
+use Apache::TestRequest;
+use Apache::Test;
+use Apache::TestUtil;
+
+plan tests => 1, need_module 'mod_ftp', need_module 'mod_ssl';
+
+Apache::TestRequest::module('ftp_ssl_implicit');
+my $hostport = Apache::TestRequest::hostport();
+my ($host,$port)= split(/:/,$hostport);
+
+my $actual;
+my $expected='Success';
+my $isarray='SYST command';
+
+my $username = "common";
+my $password = "password";
+
+my $ftp = Ssl::FTPSSL->new($host,Port =>$port,Encryption => 'I',Debug => 0) or die "Couldn't connect to $host\n";
+
+$ftp->login($username, $password) or die "Login failed \n";
+
+if ($ftp->syst()) {
+  $actual = 'Success';
+}
+else {
+  $actual = 'Failed';
+}
+ok t_cmp ($actual,$expected,$isarray);
+$ftp->quit();

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/timeouts.t
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/timeouts.t?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/timeouts.t (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/timeouts.t Wed Feb 15 22:40:34 2006
@@ -0,0 +1,121 @@
+use Ssl::FTPSSL;
+use Apache::TestRequest;
+use Apache::Test;
+use Apache::TestUtil;
+plan tests => 6, need_module 'mod_ftp', need_module 'mod_ssl';
+
+Apache::TestRequest::module('ftp_ssl_implicit');
+
+
+my $hostport = Apache::TestRequest::hostport();
+my ($host,$port)= split(/:/,$hostport);
+
+my @expected=(
+    'Login Failed',
+    'Login Successful',
+    'CDUP Failed',
+    'CDUP Successful',
+    'LIST Failed',
+    'LIST Successful',
+);
+
+my @isarray=(
+    'Logging in after TimeoutLogin  occurs ',
+    'Logging in before TimeoutLogin occurs',
+    'Logged in and giving CDUP after TimeoutIdle occurs',
+    'Logged in and giving CDUP before TimeoutIdle occurs',
+    'Issued a PASV command and giving LIST after TimeoutData occurs',
+    'Issued a PASV command and giving LIST before TimeoutData occurs',
+);
+
+my $actual;
+$ftp = Ssl::FTPSSL->new($host,Port =>$port,Encryption =>'I',Debug =>0) or die "Couldn't connect to $host\n";
+
+#FTPTimeoutLogin  10
+#-------------------
+
+sleep(21);
+
+if($ftp->login("common","password")){
+    $actual="Login Successful";
+}
+else{
+    $actual="Login Failed";
+}
+ok t_cmp ( $actual,$expected[0],$isarray[0]);
+$ftp->quit() ;
+$ftp = Ssl::FTPSSL->new($host,Port =>$port,Encryption =>'I',Debug =>0) or die "Couldn't connect to $host\n";
+sleep(3);
+if($ftp->login("common","password")){
+    $actual="Login Successful";
+}
+else{
+    $actual="Login Failed";
+}
+ok t_cmp ( $actual,$expected[1],$isarray[1]);
+$ftp->quit() or die "Unable to quit";
+#FTPTimeoutIdle  10
+#-------------------
+
+$ftp = Ssl::FTPSSL->new($host,Port =>$port,Encryption =>'I',Debug =>0) or die "Couldn't connect to $host\n";
+$ftp->login("common","password") or die"Login failed.\n";
+sleep(21);
+if($ftp->cdup()){
+    $actual="CDUP Successful";
+}
+else{
+    $actual="CDUP Failed";
+}
+ok t_cmp ( $actual,$expected[2],$isarray[2]);
+$ftp->quit() ;
+$ftp = Ssl::FTPSSL->new($host,Port =>$port,Encryption =>'I',Debug =>0) or die "Couldn't connect to $host\n";
+$ftp->login("common","password") or die"Login failed.\n";
+sleep(3);
+if($ftp->cdup()){
+    $actual="CDUP Successful";
+}
+else{
+    $actual="CDUP Failed";
+}
+ok t_cmp ( $actual,$expected[3],$isarray[3]);
+$ftp->quit() or die "Unable to quit";
+
+#FTPTimeoutData  10
+#-------------------
+
+$ftp = Ssl::FTPSSL->new($host,Port =>$port,Encryption =>'I',Debug =>0) or die "Couldn't connect to $host\n";
+
+$ftp->login("common","password") or die"Login failed.\n";
+
+$ftp->pasv();
+
+sleep(21);
+
+if($ftp->list()){
+    $actual="LIST Successful";
+}
+else{
+    $actual="LIST Failed";
+}
+ok t_cmp ( $actual,$expected[4],$isarray[4]);
+
+$ftp->quit() ;
+
+$ftp = Ssl::FTPSSL->new($host,Port =>$port,Encryption =>'I',Debug =>0) or die "Couldn't connect to $host\n";
+
+$ftp->login("common","password") or die"Login failed.\n";
+
+$ftp->pasv();
+
+sleep(3);
+
+if($ftp->list()){
+    $actual="LIST Successful";
+}
+else{
+    $actual="LIST Failed";
+}
+ok t_cmp ( $actual,$expected[5],$isarray[5]);
+
+$ftp->quit() or die "Unable to quit";
+

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/type.t
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/type.t?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/type.t (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/ftp/ftp_imp_ssl/type.t Wed Feb 15 22:40:34 2006
@@ -0,0 +1,87 @@
+use Ssl::FTPSSL;
+use Apache::TestRequest;
+use Apache::Test;
+use Apache::TestUtil;
+
+plan tests => 7, need_module 'mod_ftp', need_module 'mod_ssl';
+
+Apache::TestRequest::module('ftp_ssl_implicit');
+my $hostport = Apache::TestRequest::hostport();
+my ($host,$port)= split(/:/,$hostport);
+
+my $username = "common";
+my $password = "password";
+my $actual;
+my $expected='Success';
+
+my @isarray=(
+'TYPE A command',
+'TYPE B command',
+'TYPE E command',
+'TYPE I command',
+'TYPE ASCII command',
+'TYPE BINARY command',
+'TYPE FOO command',
+);
+
+my $ftp = Ssl::FTPSSL->new($host,Port =>$port,Encryption => 'I',Debug => 0) or die "Couldn't connect to $host\n";
+
+$ftp->login($username, $password) or die "Login failed \n";
+
+if ($ftp->A()) {
+   $actual = 'Success';
+}
+else {
+   $actual = 'Failed';
+}
+ok t_cmp ($actual,$expected,$isarray[0]);
+
+if ($ftp->B()) {
+   $actual = 'Success';
+}
+else {
+   $actual = 'Failed';
+}
+ok t_cmp ($actual,$expected,$isarray[1]);
+
+if ($ftp->E()) {
+   $actual = 'Success';
+}
+else {
+   $actual = 'Failed';
+}
+ok t_cmp ($actual,$expected,$isarray[2]);
+
+if ($ftp->I()) {
+   $actual = 'Success';
+}
+else {
+   $actual = 'Failed';
+}
+ok t_cmp ($actual,$expected,$isarray[3]);
+
+if ($ftp->ascii()) {
+   $actual = 'Success';
+}
+else {
+   $actual = 'Failed';
+}
+ok t_cmp ($actual,$expected,$isarray[4]);
+
+if ($ftp->binary()) {
+   $actual = 'Success';
+}
+else {
+   $actual = 'Failed';
+}
+ok t_cmp ($actual,$expected,$isarray[5]);
+
+if ($ftp->foo()) {
+   $actual = 'Success';
+}
+else {
+   $actual = 'Failed';
+}
+ok t_cmp ($actual,$expected,$isarray[6]);
+
+$ftp->quit();

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir/app1
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir/app1?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir/app1 (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir/app1 Wed Feb 15 22:40:34 2006
@@ -0,0 +1,2 @@
+ASCII
+This is a part of local file app1

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir/app2
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir/app2?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir/app2 (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir/app2 Wed Feb 15 22:40:34 2006
@@ -0,0 +1,2 @@
+ASCII:
+This is a part of local file app2

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir/app3
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir/app3?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir/app3 (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir/app3 Wed Feb 15 22:40:34 2006
@@ -0,0 +1,2 @@
+BINARY:
+This is a part of local file app3

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir/app4
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir/app4?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir/app4 (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir/app4 Wed Feb 15 22:40:34 2006
@@ -0,0 +1,2 @@
+BINARY:
+This is a part of local file app4

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir/zerobytes
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir/zerobytes?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir_backup/appzero
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir_backup/appzero?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir_backup/remoteapp1
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir_backup/remoteapp1?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir_backup/remoteapp1 (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir_backup/remoteapp1 Wed Feb 15 22:40:34 2006
@@ -0,0 +1,3 @@
+ASCII
+This is a part of remote file 
+

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir_backup/remoteapp3
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir_backup/remoteapp3?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir_backup/remoteapp3 (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/appenddir_backup/remoteapp3 Wed Feb 15 22:40:34 2006
@@ -0,0 +1,3 @@
+BINARY:
+This is a part of remote file 
+

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/deledir_backup/dele_file
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/deledir_backup/dele_file?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/deledir_backup/dele_file (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/deledir_backup/dele_file Wed Feb 15 22:40:34 2006
@@ -0,0 +1 @@
+This is the sample file for delete file operation.

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/deledir_backup/dele_nonemptydir/file.txt
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/deledir_backup/dele_nonemptydir/file.txt?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/deledir_backup/dele_nonemptydir/file.txt (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/deledir_backup/dele_nonemptydir/file.txt Wed Feb 15 22:40:34 2006
@@ -0,0 +1 @@
+This is the file jsut to make this directory non empty

Propchange: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/deledir_backup/dele_nonemptydir/file.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/hello.c
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/hello.c?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/hello.c (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/hello.c Wed Feb 15 22:40:34 2006
@@ -0,0 +1,4 @@
+int main(void)
+{
+	printf("Hello World");
+}

Propchange: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/hello.c
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/renamedir_backup/rename_oldfilename
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/renamedir_backup/rename_oldfilename?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/renamedir_backup/rename_oldfilename (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/renamedir_backup/rename_oldfilename Wed Feb 15 22:40:34 2006
@@ -0,0 +1 @@
+This ids the old file which will be renamed

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/rmddir_backup/rmd_file
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/rmddir_backup/rmd_file?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/rmddir_backup/rmd_file (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/rmddir_backup/rmd_file Wed Feb 15 22:40:34 2006
@@ -0,0 +1 @@
+This is the sample fie used check rmd directive

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/rmddir_backup/rmd_nonemptydir/file.txt
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/rmddir_backup/rmd_nonemptydir/file.txt?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/rmddir_backup/rmd_nonemptydir/file.txt (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/rmddir_backup/rmd_nonemptydir/file.txt Wed Feb 15 22:40:34 2006
@@ -0,0 +1 @@
+This is the file in non empty directory

Propchange: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/rmddir_backup/rmd_nonemptydir/file.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/stordir/a.txt
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/stordir/a.txt?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/stordir/a.txt (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/stordir/a.txt Wed Feb 15 22:40:34 2006
@@ -0,0 +1 @@
+text

Propchange: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/stordir/a.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/stordir/err
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/stordir/err?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/stordir/err (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/stordir/err Wed Feb 15 22:40:34 2006
@@ -0,0 +1,8 @@
+Cannot open Local file nonexisting: No such file or directory
+ at ./stor.pl line 73
+Cannot open Local file nonexisting: No such file or directory
+ at ./stor.pl line 73
+Cannot open Local file nonexisting: No such file or directory
+ at ./stor.pl line 73
+Cannot open Local file nonexisting: No such file or directory
+ at ./stor.pl line 73

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/stordir/smallfile
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/stordir/smallfile?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/stordir/smallfile (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/stordir/smallfile Wed Feb 15 22:40:34 2006
@@ -0,0 +1 @@
+this is a small file used for testing

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/stordir/zerobytes
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/data/stordir/zerobytes?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftp_userfile
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftp_userfile?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftp_userfile (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftp_userfile Wed Feb 15 22:40:34 2006
@@ -0,0 +1,4 @@
+user1:m2vLvW9xhZdHw
+user2:.CdsUSVZsK7x6
+user3:qSF0./IL1nWLY
+common:qqtffW7HUMGtY

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/abor/text.txt
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/abor/text.txt?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/abor/text.txt (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/abor/text.txt Wed Feb 15 22:40:34 2006
@@ -0,0 +1,2 @@
+Textteststdldfgjgjdfghfdklgjfldgjlkgjlkjdaslgjalsgjldasgjasldj
+fklsdjgajgldasjgldasgjdsklgjskldjgklsdgjjfklgjsalgjaslgjsgjzubin

Propchange: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/abor/text.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/app2
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/app2?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/app2 (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/app2 Wed Feb 15 22:40:34 2006
@@ -0,0 +1,16 @@
+ASCII:
+This is a part of local file app2
+ASCII:
+This is a part of local file app2
+ASCII:
+This is a part of local file app2
+ASCII:
+This is a part of local file app2
+ASCII:
+This is a part of local file app2
+ASCII:
+This is a part of local file app2
+ASCII:
+This is a part of local file app2
+ASCII:
+This is a part of local file app2

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/app4
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/app4?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/app4 (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/app4 Wed Feb 15 22:40:34 2006
@@ -0,0 +1,16 @@
+BINARY:
+This is a part of local file app4
+BINARY:
+This is a part of local file app4
+BINARY:
+This is a part of local file app4
+BINARY:
+This is a part of local file app4
+BINARY:
+This is a part of local file app4
+BINARY:
+This is a part of local file app4
+BINARY:
+This is a part of local file app4
+BINARY:
+This is a part of local file app4

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/appenddir/app2
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/appenddir/app2?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/appenddir/app2 (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/appenddir/app2 Wed Feb 15 22:40:34 2006
@@ -0,0 +1,4 @@
+ASCII:
+This is a part of local file app2
+ASCII:
+This is a part of local file app2

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/appenddir/appzero
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/appenddir/appzero?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/appenddir/remoteapp1
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/appenddir/remoteapp1?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/appenddir/remoteapp1 (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/appenddir/remoteapp1 Wed Feb 15 22:40:34 2006
@@ -0,0 +1,7 @@
+ASCII
+This is a part of remote file 
+
+ASCII
+This is a part of local file app1
+ASCII
+This is a part of local file app1

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/appenddir/remoteapp3
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/appenddir/remoteapp3?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/appenddir/remoteapp3 (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/appenddir/remoteapp3 Wed Feb 15 22:40:34 2006
@@ -0,0 +1,3 @@
+BINARY:
+This is a part of remote file 
+

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/appenddir/zerobytes
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/appenddir/zerobytes?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/deledir/dele_nonemptydir/file.txt
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/deledir/dele_nonemptydir/file.txt?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/deledir/dele_nonemptydir/file.txt (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/deledir/dele_nonemptydir/file.txt Wed Feb 15 22:40:34 2006
@@ -0,0 +1 @@
+This is the file jsut to make this directory non empty

Propchange: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/deledir/dele_nonemptydir/file.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/getlist/a.txt
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/getlist/a.txt?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/getlist/a.txt (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/getlist/a.txt Wed Feb 15 22:40:34 2006
@@ -0,0 +1 @@
+text

Propchange: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/getlist/a.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/getlist/smallfile
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/getlist/smallfile?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/getlist/smallfile (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/getlist/smallfile Wed Feb 15 22:40:34 2006
@@ -0,0 +1,3 @@
+mfkfkjfl
+lfklk
+\kdfk

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/getlist/zerobytes
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/getlist/zerobytes?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/123456
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/123456?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/23452345
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/23452345?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/344
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/344?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/543
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/543?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/980
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/980?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/a.html
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/a.html?rev=378185&view=auto
==============================================================================
    (empty)

Propchange: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/a.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/abcde
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/abcde?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/acdefb
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/acdefb?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/aoJjugb
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/aoJjugb?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/b
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/b?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/b.html
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/b.html?rev=378185&view=auto
==============================================================================
    (empty)

Propchange: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/b.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/bcdef
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/bcdef?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/faqs
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/faqs?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/list.txt
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/list.txt?rev=378185&view=auto
==============================================================================
    (empty)

Propchange: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/list.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/q
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/q?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/quick
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/list_dir/quick?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/mdtmlist/smallfile
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/mdtmlist/smallfile?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/mdtmlist/smallfile (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/mdtmlist/smallfile Wed Feb 15 22:40:34 2006
@@ -0,0 +1,3 @@
+mfkfkjfl
+lfklk
+\kdfk

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/mdtmlist/test.txt
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/mdtmlist/test.txt?rev=378185&view=auto
==============================================================================
    (empty)

Propchange: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/mdtmlist/test.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/123456
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/123456?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/23452345
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/23452345?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/344
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/344?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/543
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/543?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/980
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/980?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/a.html
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/a.html?rev=378185&view=auto
==============================================================================
    (empty)

Propchange: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/a.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/abcde
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/abcde?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/acdefb
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/acdefb?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/aoJjugb
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/aoJjugb?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/b
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/b?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/b.html
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/b.html?rev=378185&view=auto
==============================================================================
    (empty)

Propchange: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/b.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/bcdef
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/bcdef?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/faqs
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/faqs?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/list.txt
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/list.txt?rev=378185&view=auto
==============================================================================
    (empty)

Propchange: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/list.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/q
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/q?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/quick
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/nlst_dir/quick?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/renamedir/rename_newfilename
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/renamedir/rename_newfilename?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/renamedir/rename_newfilename (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/renamedir/rename_newfilename Wed Feb 15 22:40:34 2006
@@ -0,0 +1 @@
+This ids the old file which will be renamed

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/restlist/smallfile
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/restlist/smallfile?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/restlist/smallfile (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/restlist/smallfile Wed Feb 15 22:40:34 2006
@@ -0,0 +1,3 @@
+mfkfkjfl
+lfklk
+\kdfk

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/rmddir/rmd_file
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/rmddir/rmd_file?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/rmddir/rmd_file (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/rmddir/rmd_file Wed Feb 15 22:40:34 2006
@@ -0,0 +1 @@
+This is the sample fie used check rmd directive

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/rmddir/rmd_nonemptydir/file.txt
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/rmddir/rmd_nonemptydir/file.txt?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/rmddir/rmd_nonemptydir/file.txt (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/rmddir/rmd_nonemptydir/file.txt Wed Feb 15 22:40:34 2006
@@ -0,0 +1 @@
+This is the file in non empty directory

Propchange: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/rmddir/rmd_nonemptydir/file.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/zerobytes
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/common/zerobytes?rev=378185&view=auto
==============================================================================
    (empty)

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/user1/user1.txt
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/user1/user1.txt?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/user1/user1.txt (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/user1/user1.txt Wed Feb 15 22:40:34 2006
@@ -0,0 +1 @@
+This is user1.txt

Propchange: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/user1/user1.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/user2/user2.txt
URL: http://svn.apache.org/viewcvs/incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/user2/user2.txt?rev=378185&view=auto
==============================================================================
--- incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/user2/user2.txt (added)
+++ incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/user2/user2.txt Wed Feb 15 22:40:34 2006
@@ -0,0 +1 @@
+This is user2.txt

Propchange: incubator/mod_ftp/trunk/tests/perl-framework/t/htdocs/ftp/ftpdocs/home/user2/user2.txt
------------------------------------------------------------------------------
    svn:eol-style = native