aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-04-28 13:55:34 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-04-28 13:55:34 +0000
commit502e5ae6e1f9e1229b1ea61a544d9d41fc4e5a92 (patch)
tree3aa90199ddbd73370017a6850850fed2592f69f0 /tests
parentb8417be1f27d8af8605a325a8a98fe9154a37813 (diff)
historic thing we will not use
Diffstat (limited to 'tests')
-rw-r--r--tests/ftpsserver.pl85
1 files changed, 0 insertions, 85 deletions
diff --git a/tests/ftpsserver.pl b/tests/ftpsserver.pl
deleted file mode 100644
index 3a3797b82..000000000
--- a/tests/ftpsserver.pl
+++ /dev/null
@@ -1,85 +0,0 @@
-#!/usr/bin/perl
-#
-# $Id$
-# This is the FTPS server designed for the curl test suite.
-#
-# It is actually just a layer that runs stunnel properly.
-
-use strict;
-
-my $stunnel = "stunnel";
-
-#
-# -p pemfile
-# -P pid dir
-# -d listen port
-# -r target port
-# -s stunnel path
-
-my $verbose=0; # set to 1 for debugging
-
-my $port = 8821; # just our default, weird enough
-my $remote_port = 8921; # test ftp-server port
-
-my $path = `pwd`;
-chomp $path;
-
-my $srcdir=$path;
-
-do {
- if($ARGV[0] eq "-v") {
- $verbose=1;
- }
- elsif($ARGV[0] eq "-r") {
- $remote_port=$ARGV[1];
- shift @ARGV;
- }
- elsif($ARGV[0] eq "-d") {
- $srcdir=$ARGV[1];
- shift @ARGV;
- }
- elsif($ARGV[0] eq "-s") {
- $stunnel=$ARGV[1];
- shift @ARGV;
- }
- elsif($ARGV[0] =~ /^(\d+)$/) {
- $port = $1;
- }
-} while(shift @ARGV);
-
-my $conffile="$path/stunnel.conf"; # stunnel configuration data
-my $certfile="$srcdir/stunnel.pem"; # stunnel server certificate
-my $pidfile="$path/.ftps.pid"; # stunnel process pid file
-
-open(CONF, ">$conffile") || return 1;
-print CONF "
- CApath=$path
- cert = $certfile
- pid = $pidfile
- debug = 0
- output = /dev/null
- foreground = yes
-
-
- [curltest]
- accept = $port
- connect = $remote_port
-";
-close CONF;
-#system("chmod go-rwx $conffile $certfile"); # secure permissions
-
- # works only with stunnel versions < 4.00
-my $cmd="$stunnel -p $certfile -P $pidfile -d $port -r $remote_port 2>/dev/null";
-
-# use some heuristics to determine stunnel version
-my $version_ge_4=system("$stunnel -V 2>&1|grep '^stunnel.* on '>/dev/null 2>&1");
- # works only with stunnel versions >= 4.00
-if ($version_ge_4) { $cmd="$stunnel $conffile"; }
-
-if($verbose) {
- print "FTPS server: $cmd\n";
-}
-
-system($cmd);
-
-unlink $conffile;