From 017c14cc99104c28a9c20145252cb7eeee2ff3f0 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Sat, 9 Jan 2010 18:35:59 +0000 Subject: Start using the centralized pidfile and logfile name generation subroutines for ftp, pop3, imap and smtp test suite servers. --- tests/ftp.pm | 82 +++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 48 insertions(+), 34 deletions(-) (limited to 'tests/ftp.pm') 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, , et al. +# Copyright (C) 1998 - 2010, Daniel Stenberg, , 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); } } } -- cgit v1.2.3