aboutsummaryrefslogtreecommitdiff
path: root/tests/ftp.pm
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2010-01-09 18:35:59 +0000
committerYang Tse <yangsita@gmail.com>2010-01-09 18:35:59 +0000
commit017c14cc99104c28a9c20145252cb7eeee2ff3f0 (patch)
treea28dedf4d8e2bdeb63544d7352b9f2c59d4f6463 /tests/ftp.pm
parentb90703f5943e27153b824dc0e2070a49c611c251 (diff)
Start using the centralized pidfile and logfile name generation
subroutines for ftp, pop3, imap and smtp test suite servers.
Diffstat (limited to 'tests/ftp.pm')
-rw-r--r--tests/ftp.pm82
1 files changed, 48 insertions, 34 deletions
diff --git a/tests/ftp.pm b/tests/ftp.pm
index 7c4fe951f..3bacb6f35 100644
--- a/tests/ftp.pm
+++ b/tests/ftp.pm
@@ -5,7 +5,7 @@
# | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____|
#
-# Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
+# Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
@@ -24,6 +24,12 @@
use strict;
use warnings;
+use serverhelp qw(
+ servername_str
+ mainsockf_pidfilename
+ datasockf_pidfilename
+ );
+
#######################################################################
# pidfromfile returns the pid stored in the given pidfile. The value
# of the returned pid will never be a negative value. It will be zero
@@ -167,44 +173,52 @@ sub killpid {
}
}
-#############################################################################
-# Kill a specific slave
+#######################################################################
+# killsockfilters kills sockfilter processes for a given server.
#
-sub ftpkillslave {
- my ($id, $ext, $verbose)=@_;
-
- for my $base (('filt', 'data')) {
- my $f = ".sock$base$id$ext.pid";
- my $pid = processexists($f);
- if($pid > 0) {
- printf("* kill pid for %s => %d\n", "ftp-$base$id$ext", $pid)
- if($verbose);
- kill (9, $pid);
- waitpid($pid, 0);
- }
- unlink($f);
+sub killsockfilters {
+ my ($proto, $ipvnum, $idnum, $verbose) = @_;
+ my $srvrname;
+ my $pidfile;
+ my $pid;
+
+ return if($proto !~ /^(ftp|imap|pop3|smtp)$/);
+
+ $srvrname = servername_str($proto, $ipvnum, $idnum) if($verbose);
+
+ $pidfile = "./". mainsockf_pidfilename($proto, $ipvnum, $idnum);
+ $pid = processexists($pidfile);
+ if($pid > 0) {
+ printf("* kill pid for %s => %d\n", "${srvrname}-CTRL", $pid)
+ if($verbose);
+ kill("KILL", $pid);
+ waitpid($pid, 0);
}
+ unlink($pidfile) if(-f $pidfile);
+
+ return if($proto ne 'ftp');
+
+ $pidfile = "./". datasockf_pidfilename($proto, $ipvnum, $idnum);
+ $pid = processexists($pidfile);
+ if($pid > 0) {
+ printf("* kill pid for %s => %d\n", "${srvrname}-DATA", $pid)
+ if($verbose);
+ kill("KILL", $pid);
+ waitpid($pid, 0);
+ }
+ unlink($pidfile) if(-f $pidfile);
}
-#############################################################################
-# Make sure no FTP leftovers are still running. Kill all slave processes.
-# This uses pidfiles since it might be used by other processes.
+#######################################################################
+# killallsockfilters kills sockfilter processes for all servers.
#
-sub ftpkillslaves {
- my ($verbose) = @_;
-
- for my $ext (('', 'ipv6')) {
- for my $id (('', '2')) {
- for my $base (('filt', 'data')) {
- my $f = ".sock$base$id$ext.pid";
- my $pid = processexists($f);
- if($pid > 0) {
- printf("* kill pid for %s => %d\n", "ftp-$base$id$ext",
- $pid) if($verbose);
- kill (9, $pid);
- waitpid($pid, 0);
- }
- unlink($f);
+sub killallsockfilters {
+ my $verbose = $_[0];
+
+ for my $proto (('ftp', 'imap', 'pop3', 'smtp')) {
+ for my $ipvnum (('4', '6')) {
+ for my $idnum (('1', '2')) {
+ killsockfilters($proto, $ipvnum, $idnum, $verbose);
}
}
}