3 # $Cambridge: exim/test/runtest,v 1.22 2007/01/23 14:57:51 ph10 Exp $
5 ###############################################################################
6 # This is the controlling script for the "new" test suite for Exim. It should #
7 # be possible to export this suite for running on a wide variety of hosts, in #
8 # contrast to the old suite, which was very dependent on the environment of #
9 # Philip Hazel's desktop computer. This implementation inspects the version #
10 # of Exim that it finds, and tests only those features that are included. The #
11 # surrounding environment is also tested to discover what is available. See #
12 # the README file for details of how it all works. #
14 # Implementation started: 03 August 2005 by Philip Hazel #
15 # Placed in the Exim CVS: 06 February 2006 #
16 ###############################################################################
24 # Start by initializing some global variables
26 $testversion = "4.67 (15-Jan-07)";
42 $test_end = $test_top = 8999;
43 $test_special_top = 9999;
48 # Networks to use for DNS tests. We need to choose some networks that will
49 # never be used so that there is no chance that the host on which we are
50 # running is actually in one of the test networks. Private networks such as
51 # the IPv4 10.0.0.0/8 network are no good because hosts may well use them.
52 # Rather than use some unassigned numbers (that might become assigned later),
53 # I have chosen some multicast networks, in the belief that such addresses
54 # won't ever be assigned to hosts. This is the only place where these numbers
55 # are defined, so it is trivially possible to change them should that ever
58 $parm_ipv4_test_net = "224";
59 $parm_ipv6_test_net = "ff00";
61 # Port numbers are currently hard-wired
63 $parm_port_n = 1223; # Nothing listening on this port
64 $parm_port_s = 1224; # Used for the "server" command
65 $parm_port_d = 1225; # Used for the Exim daemon
66 $parm_port_d2 = 1226; # Additional for daemon
67 $parm_port_d3 = 1227; # Additional for daemon
68 $parm_port_d4 = 1228; # Additional for daemon
72 ###############################################################################
73 ###############################################################################
75 # Define a number of subroutines
77 ###############################################################################
78 ###############################################################################
81 ##################################################
83 ##################################################
85 sub pipehandler { $sigpipehappened = 1; }
87 sub inthandler { print "\n"; tests_exit(-1, "Caught SIGINT"); }
90 ##################################################
91 # Do global macro substitutions #
92 ##################################################
94 # This function is applied to configurations, command lines and data lines in
95 # scripts, and to lines in the files of the aux-var-src and the dnszones-src
96 # directory. It takes one argument: the current test number, or zero when
97 # setting up files before running any tests.
100 s?\bCALLER\b?$parm_caller?g;
101 s?\bCALLERGROUP\b?$parm_caller_group?g;
102 s?\bCALLER_UID\b?$parm_caller_uid?g;
103 s?\bCALLER_GID\b?$parm_caller_gid?g;
104 s?\bCLAMSOCKET\b?$parm_clamsocket?g;
105 s?\bDIR/?$parm_cwd/?g;
106 s?\bEXIMGROUP\b?$parm_eximgroup?g;
107 s?\bEXIMUSER\b?$parm_eximuser?g;
108 s?\bHOSTIPV4\b?$parm_ipv4?g;
109 s?\bHOSTIPV6\b?$parm_ipv6?g;
110 s?\bHOSTNAME\b?$parm_hostname?g;
111 s?\bPORT_D\b?$parm_port_d?g;
112 s?\bPORT_D2\b?$parm_port_d2?g;
113 s?\bPORT_D3\b?$parm_port_d3?g;
114 s?\bPORT_D4\b?$parm_port_d4?g;
115 s?\bPORT_N\b?$parm_port_n?g;
116 s?\bPORT_S\b?$parm_port_s?g;
117 s?\bTESTNUM\b?$_[0]?g;
118 s?(\b|_)V4NET([\._])?$1$parm_ipv4_test_net$2?g;
119 s?\bV6NET:?$parm_ipv6_test_net:?g;
124 ##################################################
125 # Subroutine to tidy up and exit #
126 ##################################################
128 # In all cases, we check for any Exim daemons that have been left running, and
129 # kill them. Then remove all the spool data, test output, and the modified Exim
130 # binary if we are ending normally.
133 # $_[0] = 0 for a normal exit; full cleanup done
134 # $_[0] > 0 for an error exit; no files cleaned up
135 # $_[0] < 0 for a "die" exit; $_[1] contains a message
141 # Search for daemon pid files and kill the daemons. We kill with SIGINT rather
142 # than SIGTERM to stop it outputting "Terminated" to the terminal when not in
145 if (opendir(DIR, "spool"))
147 my(@spools) = sort readdir(DIR);
149 foreach $spool (@spools)
151 next if $spool !~ /^exim-daemon./;
152 open(PID, "spool/$spool") || die "** Failed to open \"spool/$spool\": $!\n";
155 print "Tidyup: killing daemon pid=$pid\n";
156 system("sudo rm -f spool/$spool; sudo kill -SIGINT $pid");
160 { die "** Failed to opendir(\"spool\"): $!\n" unless $!{ENOENT}; }
162 # Close the terminal input and remove the test files if all went well, unless
163 # the option to save them is set. Always remove the patched Exim binary. Then
164 # exit normally, or die.
167 system("sudo /bin/rm -rf ./spool test-* ./dnszones/*")
168 if ($rc == 0 && !$save_output);
170 system("sudo /bin/rm -rf ./eximdir/*");
171 exit $rc if ($rc >= 0);
172 die "** runtest error: $_[1]\n";
177 ##################################################
178 # Subroutines used by the munging subroutine #
179 ##################################################
181 # This function is used for things like message ids, where we want to generate
182 # more than one value, but keep a consistent mapping throughout.
185 # $oldid the value from the file
186 # $base a base string into which we insert a sequence
187 # $sequence the address of the current sequence counter
190 my($oldid, $base, $sequence) = @_;
191 my($newid) = $cache{$oldid};
192 if (! defined $newid)
194 $newid = sprintf($base, $$sequence++);
195 $cache{$oldid} = $newid;
201 # This is used while munging the output from exim_dumpdb. We cheat by assuming
202 # that the date always the same, and just return the number of seconds since
206 my($day,$month,$year,$hour,$min,$sec) =
207 $_[0] =~ /^(\d\d)-(\w\w\w)-(\d{4})\s(\d\d):(\d\d):(\d\d)/;
208 return $hour * 60 * 60 + $min * 60 + $sec;
212 # This is a subroutine to sort maildir files into time-order. The second field
213 # is the microsecond field, and may vary in length, so must be compared
217 return $a cmp $b if ($a !~ /^\d+\.H\d/ || $b !~ /^\d+\.H\d/);
218 my($x1,$y1) = $a =~ /^(\d+)\.H(\d+)/;
219 my($x2,$y2) = $b =~ /^(\d+)\.H(\d+)/;
220 return ($x1 != $x2)? ($x1 <=> $x2) : ($y1 <=> $y2);
225 ##################################################
226 # Subroutine list files below a directory #
227 ##################################################
229 # This is used to build up a list of expected mail files below a certain path
230 # in the directory tree. It has to be recursive in order to deal with multiple
233 sub list_files_below {
238 opendir(DIR, $dir) || tests_exit(-1, "Failed to open $dir: $!");
239 @sublist = sort maildirsort readdir(DIR);
242 foreach $file (@sublist)
244 next if $file eq "." || $file eq ".." || $file eq "CVS";
246 { @yield = (@yield, list_files_below("$dir/$file")); }
248 { push @yield, "$dir/$file"; }
256 ##################################################
257 # Munge a file before comparing #
258 ##################################################
260 # The pre-processing turns all dates, times, Exim versions, message ids, and so
261 # on into standard values, so that the compare works. Perl's substitution with
262 # an expression provides a neat way to do some of these changes.
264 # We keep a global associative array for repeatedly turning the same values
265 # into the same standard values throughout the data from a single test.
266 # Message ids get this treatment (can't be made reliable for times), and
267 # times in dumped retry databases are also handled in a special way, as are
268 # incoming port numbers.
270 # On entry to the subroutine, the file to write to is already opened with the
271 # name MUNGED. The input file name is the only argument to the subroutine.
272 # Certain actions are taken only when the name contains "stderr", "stdout",
273 # or "log". The yield of the function is 1 if a line matching "*** truncated
274 # ***" is encountered; otherwise it is 0.
281 open(IN, "$file") || tests_exit(-1, "Failed to open $file: $!");
283 my($is_log) = $file =~ /log/;
284 my($is_stdout) = $file =~ /stdout/;
285 my($is_stderr) = $file =~ /stderr/;
289 $date = "\\d{2}-\\w{3}-\\d{4}\\s\\d{2}:\\d{2}:\\d{2}";
291 # Pattern for matching pids at start of stderr lines; initially something
294 $spid = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
296 # Scan the file and make the changes. Near the bottom there are some changes
297 # that are specific to certain file types, though there are also some of those
302 # Check for "*** truncated ***"
303 $yield = 1 if /\*\*\* truncated \*\*\*/;
305 # Replace the name of this host
306 s/\Q$parm_hostname\E/the.local.host.name/g;
308 # But convert "name=the.local.host address=127.0.0.1" to use "localhost"
309 s/name=the\.local\.host address=127\.0\.0\.1/name=localhost address=127.0.0.1/g;
311 # Replace the path to the testsuite directory
312 s?\Q$parm_cwd\E?TESTSUITE?g;
314 # Replace the Exim version number (may appear in various places)
315 s/Exim \d+\.\d+[\w-]*/Exim x.yz/i;
317 # Replace Exim message ids by a unique series
318 s/((?:[^\W_]{6}-){2}[^\W_]{2})
319 /new_value($1, "10Hm%s-0005vi-00", \$next_msgid)/egx;
321 # The names of lock files appear in some error and debug messages
322 s/\.lock(\.[-\w]+)+(\.[\da-f]+){2}/.lock.test.ex.dddddddd.pppppppp/;
324 # Unless we are in an IPv6 test, replace IPv4 and/or IPv6 in "listening on
325 # port" message, because it is not always the same.
326 s/port (\d+) \([^)]+\)/port $1/g
327 if !$is_ipv6test && m/listening for SMTP(S?) on port/;
329 # Challenges in SPA authentication
330 s/TlRMTVNTUAACAAAAAAAAAAAoAAABgg[\w+\/]+/TlRMTVNTUAACAAAAAAAAAAAoAAABggAAAEbBRwqFwwIAAAAAAAAAAAAt1sgAAAAA/;
333 s?prvs=([^/]+)/[\da-f]{10}@?prvs=$1/xxxxxxxxxx@?g;
335 # Error lines on stdout from SSL contain process id values and file names.
336 # They also contain a source file name and line number, which may vary from
337 # release to release.
338 s/^\d+:error:/pppp:error:/;
339 s/:(?:\/[^\s:]+\/)?([^\/\s]+\.c):\d+:/:$1:dddd:/;
341 # One error test in expansions mentions base 62 or 36
342 s/is not a base (36|62) number/is not a base 36\/62 number/;
344 # This message sometimes has a different number of seconds
345 s/forced fail after \d seconds/forced fail after d seconds/;
347 # This message may contain a different DBM library name
348 s/Failed to open \S+( \([^\)]+\))? file/Failed to open DBM file/;
350 # The message for a non-listening FIFO varies
351 s/:[^:]+: while opening named pipe/: Error: while opening named pipe/;
353 # The name of the shell may vary
354 s/\s\Q$parm_shell\E\b/ SHELL/;
356 # Debugging output of lists of hosts may have different sort keys
357 s/sort=\S+/sort=xx/ if /^\S+ (?:\d+\.){3}\d+ mx=\S+ sort=\S+/;
359 # Random local part in callout cache testing
360 s/myhost.test.ex-\d+-testing/myhost.test.ex-dddddddd-testing/;
362 # File descriptor numbers may vary
363 s/^writing data block fd=\d+/writing data block fd=dddd/;
364 s/running as transport filter: write=\d+ read=\d+/running as transport filter: write=dddd read=dddd/;
367 # ======== Dumpdb output ========
368 # This must be before the general date/date munging.
369 # Time data lines, which look like this:
370 # 25-Aug-2000 12:11:37 25-Aug-2000 12:11:37 26-Aug-2000 12:11:37
371 if (/^($date)\s+($date)\s+($date)(\s+\*)?\s*$/)
373 my($date1,$date2,$date3,$expired) = ($1,$2,$3,$4);
374 $expired = "" if !defined $expired;
375 my($increment) = date_seconds($date3) - date_seconds($date2);
377 # We used to use globally unique replacement values, but timing
378 # differences make this impossible. Just show the increment on the
381 printf MUNGED ("first failed = time last try = time2 next try = time2 + %s%s\n",
382 $increment, $expired);
386 # more_errno values in exim_dumpdb output which are times
387 s/T:(\S+)\s-22\s(\S+)\s/T:$1 -22 xxxx /;
390 # ======== Dates and times ========
392 # Dates and times are all turned into the same value - trying to turn
393 # them into different ones cannot be done repeatedly because they are
394 # real time stamps generated while running the test. The actual date and
395 # time used was fixed when I first started running automatic Exim tests.
397 # Date/time in header lines and SMTP responses
398 s/[A-Z][a-z]{2},\s\d\d?\s[A-Z][a-z]{2}\s\d\d\d\d\s\d\d\:\d\d:\d\d\s[-+]\d{4}
399 /Tue, 2 Mar 1999 09:44:33 +0000/gx;
401 # Date/time in logs and in one instance of a filter test
402 s/^\d{4}-\d\d-\d\d\s\d\d:\d\d:\d\d(\s[+-]\d\d\d\d)?/1999-03-02 09:44:33/gx;
403 s/^Logwrite\s"\d{4}-\d\d-\d\d\s\d\d:\d\d:\d\d/Logwrite "1999-03-02 09:44:33/gx;
405 # Date/time in message separators
406 s/(?:[A-Z][a-z]{2}\s){2}\d\d\s\d\d:\d\d:\d\d\s\d\d\d\d
407 /Tue Mar 02 09:44:33 1999/gx;
409 # Date of message arrival in spool file as shown by -Mvh
410 s/^\d{9,10}\s0$/ddddddddd 0/;
412 # Date/time in mbx mailbox files
413 s/\d\d-\w\w\w-\d\d\d\d\s\d\d:\d\d:\d\d\s[-+]\d\d\d\d,/06-Sep-1999 15:52:48 +0100,/gx;
415 # Dates/times in debugging output for writing retry records
416 if (/^ first failed=(\d+) last try=(\d+) next try=(\d+) (.*)$/)
419 $_ = " first failed=dddd last try=dddd next try=+$next $4\n";
421 s/^(\s*)now=\d+ first_failed=\d+ next_try=\d+ expired=(\d)/$1now=tttt first_failed=tttt next_try=tttt expired=$2/;
422 s/^(\s*)received_time=\d+ diff=\d+ timeout=(\d+)/$1received_time=tttt diff=tttt timeout=$2/;
424 # Time to retry may vary
425 s/time to retry = \S+/time to retry = tttt/;
426 s/retry record exists: age=\S+/retry record exists: age=ttt/;
427 s/failing_interval=\S+ message_age=\S+/failing_interval=ttt message_age=ttt/;
429 # Date/time in exim -bV output
430 s/\d\d-[A-Z][a-z]{2}-\d{4}\s\d\d:\d\d:\d\d/07-Mar-2000 12:21:52/g;
432 # Time on queue tolerance
436 # ======== Caller's login, uid, gid, home ========
438 s/\Q$parm_caller_home\E/CALLER_HOME/g; # NOTE: these must be done
439 s/\b\Q$parm_caller\E\b/CALLER/g; # in this order!
440 s/\b\Q$parm_caller_group\E\b/CALLER/g; # In case group name different
442 s/\beuid=$parm_caller_uid\b/euid=CALLER_UID/g;
443 s/\begid=$parm_caller_gid\b/egid=CALLER_GID/g;
445 s/\buid=$parm_caller_uid\b/uid=CALLER_UID/g;
446 s/\bgid=$parm_caller_gid\b/gid=CALLER_GID/g;
448 # When looking at spool files with -Mvh, we will find not only the caller
449 # login, but also the uid and gid. It seems that $) in some Perls gives all
450 # the auxiliary gids as well, so don't bother checking for that.
452 s/^CALLER $> \d+$/CALLER UID GID/;
454 # There is one case where the caller's login is forced to something else,
455 # in order to test the processing of logins that contain spaces. Weird what
456 # some people do, isn't it?
458 s/^spaced user $> \d+$/CALLER UID GID/;
461 # ======== Exim's login ========
462 # For bounce messages, this will appear on the U= lines in logs and also
463 # after Received: and in addresses. In one pipe test it appears after
464 # "Running as:". It also appears in addresses, and in the names of lock
467 s/U=$parm_eximuser/U=EXIMUSER/;
468 s/user=$parm_eximuser/user=EXIMUSER/;
469 s/login=$parm_eximuser/login=EXIMUSER/;
470 s/Received: from $parm_eximuser /Received: from EXIMUSER /;
471 s/Running as: $parm_eximuser/Running as: EXIMUSER/;
472 s/\b$parm_eximuser@/EXIMUSER@/;
473 s/\b$parm_eximuser\.lock\./EXIMUSER.lock./;
475 s/\beuid=$parm_exim_uid\b/euid=EXIM_UID/g;
476 s/\begid=$parm_exim_gid\b/egid=EXIM_GID/g;
478 s/\buid=$parm_exim_uid\b/uid=EXIM_UID/g;
479 s/\bgid=$parm_exim_gid\b/gid=EXIM_GID/g;
482 # ======== General uids, gids, and pids ========
483 # Note: this must come after munges for caller's and exim's uid/gid
485 s/\bgid=\d+/gid=gggg/;
486 s/\begid=\d+/egid=gggg/;
487 s/\bpid=\d+/pid=pppp/;
488 s/\buid=\d+/uid=uuuu/;
489 s/\beuid=\d+/euid=uuuu/;
490 s/set_process_info:\s+\d+/set_process_info: pppp/;
491 s/queue run pid \d+/queue run pid ppppp/;
492 s/process \d+ running as transport filter/process pppp running as transport filter/;
493 s/process \d+ writing to transport filter/process pppp writing to transport filter/;
494 s/reading pipe for subprocess \d+/reading pipe for subprocess pppp/;
495 s/remote delivery process \d+ ended/remote delivery process pppp ended/;
497 # Pid in temp file in appendfile transport
498 s"test-mail/temp\.\d+\."test-mail/temp.pppp.";
500 # Detect a daemon stderr line with a pid and save the pid for subsequent
501 # removal from following lines.
502 $spid = $1 if /^(\s*\d+) (?:listening|LOG: MAIN|(?:daemon_smtp_port|local_interfaces) overridden by)/;
505 # Queue runner waiting messages
506 s/waiting for children of \d+/waiting for children of pppp/;
507 s/waiting for (\S+) \(\d+\)/waiting for $1 (pppp)/;
509 # ======== Port numbers ========
510 # Incoming port numbers may vary, but not in daemon startup line.
512 s/^Port: (\d+)/"Port: " . new_value($1, "%s", \$next_port)/e;
513 s/\(port=(\d+)/"(port=" . new_value($1, "%s", \$next_port)/e;
515 # This handles "connection from" and the like, when the port is given
516 if (!/listening for SMTP on/ && !/Connecting to/ && !/=>/ && !/\*>/ &&
517 !/Connection refused/)
519 s/\[([a-z\d:]+|\d+(?:\.\d+){3})\]:(\d+)/"[".$1."]:".new_value($2,"%s",\$next_port)/ie;
522 # Port in host address in spool file output from -Mvh
523 s/^-host_address (.*)\.\d+/-host_address $1.9999/;
526 # ======== Local IP addresses ========
527 # The amount of space between "host" and the address in verification output
528 # depends on the length of the host name. We therefore reduce it to one space
531 s/^\s+host\s(\S+)\s+(\S+)/ host $1 $2/;
532 s/^\s+(host\s\S+\s\S+)\s+(port=.*)/ host $1 $2/;
533 s/^\s+(host\s\S+\s\S+)\s+(?=MX=)/ $1 /;
534 s/host\s\Q$parm_ipv4\E\s\[\Q$parm_ipv4\E\]/host ipv4.ipv4.ipv4.ipv4 [ipv4.ipv4.ipv4.ipv4]/;
535 s/host\s\Q$parm_ipv6\E\s\[\Q$parm_ipv6\E\]/host ip6:ip6:ip6:ip6:ip6:ip6:ip6:ip6 [ip6:ip6:ip6:ip6:ip6:ip6:ip6:ip6]/;
536 s/\b\Q$parm_ipv4\E\b/ip4.ip4.ip4.ip4/g;
537 s/\b\Q$parm_ipv6\E\b/ip6:ip6:ip6:ip6:ip6:ip6:ip6:ip6/g;
538 s/\b\Q$parm_ipv4r\E\b/ip4-reverse/g;
539 s/\b\Q$parm_ipv6r\E\b/ip6-reverse/g;
542 # ======== Test network IP addresses ========
543 s/(\b|_)\Q$parm_ipv4_test_net\E(?=\.\d+\.\d+\.\d+\b|_|\.rbl|\.in-addr|\.test\.again\.dns)/$1V4NET/g;
544 s/\b\Q$parm_ipv6_test_net\E(?=:[\da-f]+:[\da-f]+:[\da-f]+)/V6NET/gi;
547 # ======== IP error numbers and messages ========
548 # These vary between operating systems
549 s/Can't assign requested address/Network Error/;
550 s/Cannot assign requested address/Network Error/;
551 s/Operation timed out/Connection timed out/;
552 s/Address family not supported by protocol family/Network Error/;
553 s/Network is unreachable/Network Error/;
554 s/Invalid argument/Network Error/;
556 s/\(\d+\): Network/(dd): Network/;
557 s/\(\d+\): Connection refused/(dd): Connection refused/;
558 s/\(\d+\): Connection timed out/(dd): Connection timed out/;
559 s/\d+ 65 Connection refused/dd 65 Connection refused/;
560 s/\d+ 321 Connection timed out/dd 321 Connection timed out/;
563 # ======== Other error numbers ========
564 s/errno=\d+/errno=dd/g;
567 # ======== Output from ls ========
568 # Different operating systems use different spacing on long output
569 s/ +/ /g if /^[-rwd]{10} /;
572 # ======== Message sizes =========
573 # Message sizes vary, owing to different logins and host names that get
574 # automatically inserted. I can't think of any way of even approximately
577 s/([\s,])S=\d+\b/$1S=sss/;
579 s/^(\s*\d+m\s+)\d+(\s+[a-z0-9-]{16} <)/$1sss$2/i if $is_stdout;
580 s/\sSIZE=\d+\b/ SIZE=ssss/ if $is_stderr || $is_stdout;
581 s/\ssize=\d+\b/ size=sss/ if $is_stderr;
582 s/old size = \d+\b/old size = sssss/;
583 s/message size = \d+\b/message size = sss/;
584 s/this message = \d+\b/this message = sss/;
585 s/Size of headers = \d+/Size of headers = sss/;
586 s/sum=(?!0)\d+/sum=dddd/;
587 s/(?<=sum=dddd )count=(?!0)\d+\b/count=dd/;
588 s/(?<=sum=0 )count=(?!0)\d+\b/count=dd/;
589 s/,S is \d+\b/,S is ddddd/;
590 s/\+0100,\d+;/+0100,ddd;/;
591 s/\(\d+ bytes written\)/(ddd bytes written)/;
592 s/added '\d+ 1'/added 'ddd 1'/;
595 # ======== Values in spool space failure message ========
596 s/space=\d+ inodes=[+-]?\d+/space=xxxxx inodes=xxxxx/;
599 # ======== Filter sizes ========
600 # The sizes of filter files may vary because of the substitution of local
601 # filenames, logins, etc.
603 s/^\d+(?= bytes read from )/ssss/;
606 # ======== OpenSSL error messages ========
607 # Different releases of the OpenSSL libraries seem to give different error
608 # numbers, or handle specific bad conditions in different ways, leading to
609 # different wording in the error messages, so we cannot compare them.
611 s/(TLS error on connection (?:from|to) .*? \(SSL_\w+\): error:)(.*)/$1 <<detail omitted>>/;
614 # ======== Maildir things ========
615 # timestamp output in maildir processing
616 s/(timestamp=|\(timestamp_only\): )\d+/$1ddddddd/g;
618 # maildir delivery files appearing in log lines (in cases of error)
619 s/writing to(?: file)? tmp\/\d+\.[^.]+\.(\S+)/writing to tmp\/MAILDIR.$1/;
621 s/renamed tmp\/\d+\.[^.]+\.(\S+) as new\/\d+\.[^.]+\.(\S+)/renamed tmp\/MAILDIR.$1 as new\/MAILDIR.$1/;
623 # Maildir file names in general
624 s/\b\d+\.H\d+P\d+\b/dddddddddd.HddddddPddddd/;
627 while (/^\d+S,\d+C\s*$/)
632 last if !/^\d+ \d+\s*$/;
633 print MUNGED "ddd d\n";
640 # ======== Output from the "fd" program about open descriptors ========
641 # The statuses seem to be different on different operating systems, but
642 # at least we'll still be checking the number of open fd's.
644 s/max fd = \d+/max fd = dddd/;
645 s/status=0 RDONLY/STATUS/g;
646 s/status=1 WRONLY/STATUS/g;
647 s/status=2 RDWR/STATUS/g;
650 # ======== Contents of spool files ========
651 # A couple of tests dump the contents of the -H file. The length fields
652 # will be wrong because of different user names, etc.
653 s/^\d\d\d(?=[PFS*])/ddd/;
656 # ==========================================================
657 # Some munging is specific to the specific file types
659 # ======== stdout ========
663 # Skip translate_ip_address and use_classresources in -bP output because
664 # they aren't always there.
666 next if /translate_ip_address =/;
667 next if /use_classresources/;
669 # In certain filter tests, remove initial filter lines because they just
670 # clog up by repetition.
674 next if /^(Sender\staken\sfrom|
675 Return-path\scopied\sfrom|
678 if (/^Testing \S+ filter/)
680 $_ = <IN>; # remove blank line
686 # ======== stderr ========
690 # The very first line of debugging output will vary
692 s/^Exim version .*/Exim version x.yz ..../;
694 # Debugging lines for Exim terminations
696 s/(?<=^>>>>>>>>>>>>>>>> Exim pid=)\d+(?= terminating)/pppp/;
698 # IP address lookups use gethostbyname() when IPv6 is not supported,
699 # and gethostbyname2() or getipnodebyname() when it is.
701 s/\bgethostbyname2?|\bgetipnodebyname/get[host|ipnode]byname[2]/;
703 # We have to omit the localhost ::1 address so that all is well in
704 # the IPv4-only case.
706 print MUNGED "MUNGED: ::1 will be omitted in what follows\n"
707 if (/looked up these IP addresses/);
708 next if /name=localhost address=::1/;
710 # Various other IPv6 lines must be omitted too
712 next if /using host_fake_gethostbyname for \S+ \(IPv6\)/;
713 next if /get\[host\|ipnode\]byname\[2\]\(af=inet6\)/;
714 next if /DNS lookup of \S+ \(AAAA\) using fakens/;
715 next if / in dns_ipv4_lookup?/;
717 if (/DNS lookup of \S+ \(AAAA\) gave NO_DATA/)
719 $_= <IN>; # Gets "returning DNS_NODATA"
723 # Skip tls_advertise_hosts and hosts_require_tls checks when the options
724 # are unset, because tls ain't always there.
726 next if /in\s(?:tls_advertise_hosts\?|hosts_require_tls\?)
727 \sno\s\(option\sunset\)/x;
729 # Skip auxiliary group lists because they will vary.
731 next if /auxiliary group list:/;
733 # Skip "extracted from gecos field" because the gecos field varies
735 next if /extracted from gecos field/;
737 # Skip "waiting for data on socket" and "read response data: size=" lines
738 # because some systems pack more stuff into packets than others.
740 next if /waiting for data on socket/;
741 next if /read response data: size=/;
743 # If Exim is compiled with readline support but it can't find the library
744 # to load, there will be an extra debug line. Omit it.
746 next if /failed to load readline:/;
748 # Some DBM libraries seem to make DBM files on opening with O_RDWR without
749 # O_CREAT; other's don't. In the latter case there is some debugging output
750 # which is not present in the former. Skip the relevant lines (there are
753 if (/TESTSUITE\/spool\/db\/\S+ appears not to exist: trying to create/)
759 # Some tests turn on +expand debugging to check on expansions.
760 # Unfortunately, the Received: expansion varies, depending on whether TLS
761 # is compiled or not. So we must remove the relevant debugging if it is.
763 if (/^condition: def:tls_cipher/)
765 while (<IN>) { last if /^condition: def:sender_address/; }
767 elsif (/^expanding: Received: /)
769 while (<IN>) { last if !/^\s/; }
772 # When Exim is checking the size of directories for maildir, it uses
773 # the check_dir_size() function to scan directories. Of course, the order
774 # of the files that are obtained using readdir() varies from system to
775 # system. We therefore buffer up debugging lines from check_dir_size()
776 # and sort them before outputting them.
778 if (/^check_dir_size:/ || /^skipping TESTSUITE\/test-mail\//)
786 print MUNGED "MUNGED: the check_dir_size lines have been sorted " .
787 "to ensure consistency\n";
788 @saved = sort(@saved);
793 # Skip some lines that Exim puts out at the start of debugging output
794 # because they will be different in different binaries.
797 unless (/^Berkeley DB: / ||
798 /^Probably (?:Berkeley DB|ndbm|GDBM)/ ||
799 /^Authenticators:/ ||
804 /^log selectors =/ ||
806 /^Fixed never_users:/ ||
814 # ======== All files other than stderr ========
826 ##################################################
827 # Subroutine to interact with caller #
828 ##################################################
830 # Arguments: [0] the prompt string
831 # [1] if there is a U in the prompt and $force_update is true
832 # Returns: nothing (it sets $_)
836 if ($_[1]) { $_ = "u"; print "... update forced\n"; }
843 ##################################################
844 # Subroutine to compare one output file #
845 ##################################################
847 # When an Exim server is part of the test, its output is in separate files from
848 # an Exim client. The server data is concatenated with the client data as part
849 # of the munging operation.
851 # Arguments: [0] the name of the main raw output file
852 # [1] the name of the server raw output file or undef
853 # [2] where to put the munged copy
854 # [3] the name of the saved file
855 # [4] TRUE if this is a log file whose deliveries must be sorted
857 # Returns: 0 comparison succeeded or differences to be ignored
858 # 1 comparison failed; files were updated (=> re-compare)
860 # Does not return if the user replies "Q" to a prompt.
863 my($rf,$rsf,$mf,$sf,$sortfile) = @_;
865 # If there is no saved file, the raw files must either not exist, or be
866 # empty. The test ! -s is TRUE if the file does not exist or is empty.
870 return 0 if (! -s $rf && (! defined $rsf || ! -s $rsf));
873 print "** $rf is not empty\n" if (-s $rf);
874 print "** $rsf is not empty\n" if (defined $rsf && -s $rsf);
878 print "Continue, Show, or Quit? [Q] ";
880 tests_exit(1) if /^q?$/i;
885 foreach $f ($rf, $rsf)
887 if (defined $f && -s $f)
890 print "------------ $f -----------\n"
891 if (defined $rf && -s $rf && defined $rsf && -s $rsf);
899 interact("Continue, Update & retry, Quit? [Q] ", $force_update);
900 tests_exit(1) if /^q?$/i;
906 # Control reaches here if either (a) there is a saved file ($sf), or (b) there
907 # was a request to create a saved file. First, create the munged file from any
908 # data that does exist.
910 open(MUNGED, ">$mf") || tests_exit(-1, "Failed to open $mf: $!");
911 my($truncated) = munge($rf) if -e $rf;
912 if (defined $rsf && -e $rsf)
914 print MUNGED "\n******** SERVER ********\n";
915 $truncated |= munge($rsf);
919 # If a saved file exists, do the comparison. There are two awkward cases:
921 # If "*** truncated ***" was found in the new file, it means that a log line
922 # was overlong, and truncated. The problem is that it may be truncated at
923 # different points on different systems, because of different user name
924 # lengths. We reload the file and the saved file, and remove lines from the new
925 # file that precede "*** truncated ***" until we reach one that matches the
926 # line that precedes it in the saved file.
928 # If $sortfile is set, we are dealing with a mainlog file where the deliveries
929 # for an individual message might vary in their order from system to system, as
930 # a result of parallel deliveries. We load the munged file and sort sequences
935 # Deal with truncated text items
939 my(@munged, @saved, $i, $j, $k);
941 open(MUNGED, "$mf") || tests_exit(-1, "Failed to open $mf: $!");
944 open(SAVED, "$sf") || tests_exit(-1, "Failed to open $sf: $!");
949 for ($i = 0; $i < @munged; $i++)
951 if ($munged[$i] =~ /\*\*\* truncated \*\*\*/)
953 for (; $j < @saved; $j++)
954 { last if $saved[$j] =~ /\*\*\* truncated \*\*\*/; }
955 last if $j >= @saved; # not found in saved
957 for ($k = $i - 1; $k >= 0; $k--)
958 { last if $munged[$k] eq $saved[$j - 1]; }
960 last if $k <= 0; # failed to find previous match
961 splice @munged, $k + 1, $i - $k - 1;
966 open(MUNGED, ">$mf") || tests_exit(-1, "Failed to open $mf: $!");
967 for ($i = 0; $i < @munged; $i++)
968 { print MUNGED $munged[$i]; }
972 # Deal with log sorting
978 open(MUNGED, "$mf") || tests_exit(-1, "Failed to open $mf: $!");
982 for ($i = 0; $i < @munged; $i++)
984 if ($munged[$i] =~ /^[-\d]{10}\s[:\d]{8}\s[-A-Za-z\d]{16}\s[-=*]>/)
986 for ($j = $i + 1; $j < @munged; $j++)
988 last if $munged[$j] !~
989 /^[-\d]{10}\s[:\d]{8}\s[-A-Za-z\d]{16}\s[-=*]>/;
991 @temp = splice(@munged, $i, $j - $i);
993 splice(@munged, $i, 0, @temp);
997 open(MUNGED, ">$mf") || tests_exit(-1, "Failed to open $mf: $!");
998 print MUNGED "**NOTE: The delivery lines in this file have been sorted.\n";
999 for ($i = 0; $i < @munged; $i++)
1000 { print MUNGED $munged[$i]; }
1006 return 0 if (system("$cf $mf $sf >test-cf") == 0);
1008 # Handle comparison failure
1010 print "** Comparison of $mf with $sf failed";
1011 system("$more test-cf");
1016 interact("Continue, Update & retry, Quit? [Q] ", $force_update);
1017 tests_exit(1) if /^q?$/i;
1023 # Update or delete the saved file, and give the appropriate return code.
1026 { tests_exit(-1, "Failed to cp $mf $sf") if system("cp $mf $sf") != 0; }
1028 { tests_exit(-1, "Failed to unlink $sf") if !unlink($sf); }
1035 ##################################################
1036 # Subroutine to check the output of a test #
1037 ##################################################
1039 # This function is called when the series of subtests is complete. It makes
1040 # use of check() file, whose arguments are:
1042 # [0] the name of the main raw output file
1043 # [1] the name of the server raw output file or undef
1044 # [2] where to put the munged copy
1045 # [3] the name of the saved file
1046 # [4] TRUE if this is a log file whose deliveries must be sorted
1049 # Returns: 0 if the output compared equal
1050 # 1 if files were updated and the test must be re-run
1055 $yield = 1 if check_file("spool/log/paniclog",
1056 "spool/log/serverpaniclog",
1057 "test-paniclog-munged",
1058 "paniclog/$testno", 0);
1060 $yield = 1 if check_file("spool/log/rejectlog",
1061 "spool/log/serverrejectlog",
1062 "test-rejectlog-munged",
1063 "rejectlog/$testno", 0);
1065 $yield = 1 if check_file("spool/log/mainlog",
1066 "spool/log/servermainlog",
1067 "test-mainlog-munged",
1068 "log/$testno", $sortlog);
1072 $yield = 1 if check_file("test-stdout",
1073 "test-stdout-server",
1074 "test-stdout-munged",
1075 "stdout/$testno", 0);
1080 $yield = 1 if check_file("test-stderr",
1081 "test-stderr-server",
1082 "test-stderr-munged",
1083 "stderr/$testno", 0);
1086 # Compare any delivered messages, unless this test is skipped.
1088 if (! $message_skip)
1092 # Get a list of expected mailbox files for this script. We don't bother with
1093 # directories, just the files within them.
1095 foreach $oldmail (@oldmails)
1097 next unless $oldmail =~ /^mail\/$testno\./;
1098 print ">> EXPECT $oldmail\n" if $debug;
1099 $expected_mails{$oldmail} = 1;
1102 # If there are any files in test-mail, compare them. Note that "." and
1103 # ".." are automatically omitted by list_files_below().
1105 @mails = list_files_below("test-mail");
1107 foreach $mail (@mails)
1109 next if $mail eq "test-mail/oncelog";
1111 $saved_mail = substr($mail, 10); # Remove "test-mail/"
1112 $saved_mail =~ s/^$parm_caller(\/|$)/CALLER/; # Convert caller name
1114 if ($saved_mail =~ /(\d+\.[^.]+\.)/)
1117 $saved_mail =~ s/(\d+\.[^.]+\.)/$msgno./gx;
1120 print ">> COMPARE $mail mail/$testno.$saved_mail\n" if $debug;
1121 $yield = 1 if check_file($mail, undef, "test-mail-munged",
1122 "mail/$testno.$saved_mail", 0);
1123 delete $expected_mails{"mail/$testno.$saved_mail"};
1126 # Complain if not all expected mails have been found
1128 if (scalar(keys %expected_mails) != 0)
1130 foreach $key (keys %expected_mails)
1131 { print "** no test file found for $key\n"; }
1135 interact("Continue, Update & retry, or Quit? [Q] ", $force_update);
1136 tests_exit(1) if /^q?$/i;
1139 # For update, we not only have to unlink the file, but we must also
1140 # remove it from the @oldmails vector, as otherwise it will still be
1141 # checked for when we re-run the test.
1145 foreach $key (keys %expected_mails)
1148 tests_exit(-1, "Failed to unlink $key") if !unlink("$key");
1149 for ($i = 0; $i < @oldmails; $i++)
1151 if ($oldmails[$i] eq $key)
1153 splice @oldmails, $i, 1;
1164 # Compare any remaining message logs, unless this test is skipped.
1168 # Get a list of expected msglog files for this test
1170 foreach $oldmsglog (@oldmsglogs)
1172 next unless $oldmsglog =~ /^$testno\./;
1173 $expected_msglogs{$oldmsglog} = 1;
1176 # If there are any files in spool/msglog, compare them. However, we have
1177 # to munge the file names because they are message ids, which are
1180 if (opendir(DIR, "spool/msglog"))
1182 @msglogs = sort readdir(DIR);
1185 foreach $msglog (@msglogs)
1187 next if ($msglog eq "." || $msglog eq ".." || $msglog eq "CVS");
1188 ($munged_msglog = $msglog) =~
1189 s/((?:[^\W_]{6}-){2}[^\W_]{2})
1190 /new_value($1, "10Hm%s-0005vi-00", \$next_msgid)/egx;
1191 $yield = 1 if check_file("spool/msglog/$msglog", undef,
1192 "test-msglog-munged", "msglog/$testno.$munged_msglog", 0);
1193 delete $expected_msglogs{"$testno.$munged_msglog"};
1197 # Complain if not all expected msglogs have been found
1199 if (scalar(keys %expected_msglogs) != 0)
1201 foreach $key (keys %expected_msglogs)
1203 print "** no test msglog found for msglog/$key\n";
1204 ($msgid) = $key =~ /^\d+\.(.*)$/;
1205 foreach $cachekey (keys %cache)
1207 if ($cache{$cachekey} eq $msgid)
1209 print "** original msgid $cachekey\n";
1217 interact("Continue, Update, or Quit? [Q] ", $force_update);
1218 tests_exit(1) if /^q?$/i;
1222 foreach $key (keys %expected_msglogs)
1224 tests_exit(-1, "Failed to unlink msglog/$key")
1225 if !unlink("msglog/$key");
1238 ##################################################
1239 # Subroutine to run one "system" command #
1240 ##################################################
1242 # We put this in a subroutine so that the command can be reflected when
1245 # Argument: the command to be run
1253 $prcmd =~ s/; /;\n>> /;
1254 print ">> $prcmd\n";
1261 ##################################################
1262 # Subroutine to run one script command #
1263 ##################################################
1265 # The <SCRIPT> file is open for us to read an optional return code line,
1266 # followed by the command line and any following data lines for stdin. The
1267 # command line can be continued by the use of \. Data lines are not continued
1268 # in this way. In all lines, the following substutions are made:
1270 # DIR => the current directory
1271 # CALLER => the caller of this script
1273 # Arguments: the current test number
1274 # reference to the subtest number, holding previous value
1275 # reference to the expected return code value
1276 # reference to where to put the command name (for messages)
1278 # Returns: 0 the commmand was executed inline, no subprocess was run
1279 # 1 a non-exim command was run and waited for
1280 # 2 an exim command was run and waited for
1281 # 3 a command was run and not waited for (daemon, server, exim_lock)
1282 # 4 EOF was encountered after an initial return code line
1285 my($testno) = $_[0];
1286 my($subtestref) = $_[1];
1287 my($commandnameref) = $_[3];
1290 if (/^(\d+)\s*$/) # Handle unusual return code
1295 return 4 if !defined $_; # Missing command
1302 # Handle concatenated command lines
1305 while (substr($_, -1) eq"\\")
1308 $_ = substr($_, 0, -1);
1309 chomp($temp = <SCRIPT>);
1321 do_substitute($testno);
1322 if ($debug) { printf ">> $_\n"; }
1324 # Pass back the command name (for messages)
1326 ($$commandnameref) = /^(\S+)/;
1328 # Here follows code for handling the various different commands that are
1329 # supported by this script. The first group of commands are all freestanding
1330 # in that they share no common code and are not followed by any data lines.
1336 # The "dbmbuild" command runs exim_dbmbuild. This is used both to test the
1337 # utility and to make DBM files for testing DBM lookups.
1339 if (/^dbmbuild\s+(\S+)\s+(\S+)/)
1341 run_system("(./eximdir/exim_dbmbuild $parm_cwd/$1 $parm_cwd/$2;" .
1342 "echo exim_dbmbuild exit code = \$?)" .
1348 # The "dump" command runs exim_dumpdb. On different systems, the output for
1349 # some types of dump may appear in a different order because it's just hauled
1350 # out of the DBM file. We can solve this by sorting. Ignore the leading
1351 # date/time, as it will be flattened later during munging.
1353 if (/^dump\s+(\S+)/)
1357 print ">> ./eximdir/exim_dumpdb $parm_cwd/spool $which\n" if $debug;
1358 open(IN, "./eximdir/exim_dumpdb $parm_cwd/spool $which |");
1361 if ($which eq "callout")
1364 my($aa) = substr $a, 21;
1365 my($bb) = substr $b, 21;
1369 open(OUT, ">>test-stdout");
1370 print OUT "+++++++++++++++++++++++++++\n";
1377 # The "echo" command is a way of writing comments to the screen.
1379 if (/^echo\s+(.*)$/)
1386 # The "exim_lock" command runs exim_lock in the same manner as "server",
1387 # but it doesn't use any input.
1389 if (/^exim_lock\s+(.*)$/)
1391 $cmd = "./eximdir/exim_lock $1 >>test-stdout";
1392 $server_pid = open SERVERCMD, "|$cmd" ||
1393 tests_exit(-1, "Failed to run $cmd\n");
1395 # This gives the process time to get started; otherwise the next
1396 # process may not find it there when it expects it.
1398 select(undef, undef, undef, 0.1);
1403 # The "exinext" command runs exinext
1405 if (/^exinext\s+(.*)/)
1407 run_system("(./eximdir/exinext " .
1408 "-DEXIM_PATH=$parm_cwd/eximdir/exim " .
1409 "-C $parm_cwd/test-config $1;" .
1410 "echo exinext exit code = \$?)" .
1416 # The "gnutls" command makes a copy of saved GnuTLS parameter data in the
1417 # spool directory, to save Exim from re-creating it each time.
1421 run_system "sudo cp -p aux-fixed/gnutls-params spool/gnutls-params;" .
1422 "sudo chown $parm_eximuser:$parm_eximgroup spool/gnutls-params;" .
1423 "sudo chmod 0400 spool/gnutls-params";
1428 # The "killdaemon" command should ultimately follow the starting of any Exim
1429 # daemon with the -bd option. We kill with SIGINT rather than SIGTERM to stop
1430 # it outputting "Terminated" to the terminal when not in the background.
1434 $pid = `cat $parm_cwd/spool/exim-daemon.*`;
1435 run_system("sudo /bin/kill -SIGINT $pid");
1436 close DAEMONCMD; # Waits for process
1437 run_system("sudo /bin/rm -f spool/exim-daemon.*");
1442 # The "millisleep" command is like "sleep" except that its argument is in
1443 # milliseconds, thus allowing for a subsecond sleep, which is, in fact, all it
1446 elsif (/^millisleep\s+(.*)$/)
1448 select(undef, undef, undef, $1/1000);
1453 # The "sleep" command does just that. For sleeps longer than 1 second we
1454 # tell the user what's going on.
1456 if (/^sleep\s+(.*)$/)
1464 printf(" Test %d sleep $1 ", $$subtestref);
1470 printf("\r Test %d $cr", $$subtestref);
1476 # Various Unix management commands are recognized
1478 if (/^(ln|ls|du|mkdir|mkfifo|touch|cp|cat)\s/ ||
1479 /^sudo (rmdir|rm|chown|chmod)\s/)
1481 run_system("$_ >>test-stdout 2>>test-stderr");
1490 # The next group of commands are also freestanding, but they are all followed
1494 # The "server" command starts up a script-driven server that runs in parallel
1495 # with the following exim command. Therefore, we want to run a subprocess and
1496 # not yet wait for it to complete. The waiting happens after the next exim
1497 # command, triggered by $server_pid being non-zero. The server sends its output
1498 # to a different file. The variable $server_opts, if not empty, contains
1499 # options to disable IPv4 or IPv6 if necessary.
1501 if (/^server\s+(.*)$/)
1503 $cmd = "./bin/server $server_opts $1 >>test-stdout-server";
1504 print ">> $cmd\n" if ($debug);
1505 $server_pid = open SERVERCMD, "|$cmd" || tests_exit(-1, "Failed to run $cmd");
1506 SERVERCMD->autoflush(1);
1507 print ">> Server pid is $server_pid\n" if $debug;
1511 last if /^\*{4}\s*$/;
1514 print SERVERCMD "++++\n"; # Send end to server; can't send EOF yet
1515 # because close() waits for the process.
1517 # This gives the server time to get started; otherwise the next
1518 # process may not find it there when it expects it.
1520 select(undef, undef, undef, 0.5);
1525 # The "write" command is a way of creating files of specific sizes for
1526 # buffering tests, or containing specific data lines from within the script
1527 # (rather than hold lots of little files). The "catwrite" command does the
1528 # same, but it also copies the lines to test-stdout.
1530 if (/^(cat)?write\s+(\S+)(?:\s+(.*))?\s*$/)
1532 my($cat) = defined $1;
1534 @sizes = split /\s+/, $3 if defined $3;
1535 open FILE, ">$2" || tests_exit(-1, "Failed to open \"$2\": $!");
1539 open CAT, ">>test-stdout" ||
1540 tests_exit(-1, "Failed to open test-stdout: $!");
1541 print CAT "==========\n";
1544 if (scalar @sizes > 0)
1551 last if /^\+{4}\s*$/;
1558 while (scalar @sizes > 0)
1560 ($count,$len,$leadin) = (shift @sizes) =~ /(\d+)x(\d+)(?:=(.*))?/;
1561 $leadin = "" if !defined $leadin;
1563 $len -= length($leadin) + 1;
1564 while ($count-- > 0)
1566 print FILE $leadin, "a" x $len, "\n";
1567 print CAT $leadin, "a" x $len, "\n" if $cat;
1572 # Post data, or only data if no sized data
1577 last if /^\*{4}\s*$/;
1585 print CAT "==========\n";
1596 # From this point on, script commands are implemented by setting up a shell
1597 # command in the variable $cmd. Shared code to run this command and handle its
1598 # input and output follows.
1600 # The "client", "client-gnutls", and "client-ssl" commands run a script-driven
1601 # program that plays the part of an email client. We also have the availability
1602 # of running Perl for doing one-off special things. Note that all these
1603 # commands expect stdin data to be supplied.
1605 if (/^client/ || /^(sudo\s+)?perl\b/)
1607 s"client"./bin/client";
1608 $cmd = "$_ >>test-stdout 2>>test-stderr";
1611 # For the "exim" command, replace the text "exim" with the path for the test
1612 # binary, plus -D options to pass over various parameters, and a -C option for
1613 # the testing configuration file. When running in the test harness, Exim does
1614 # not drop privilege when -C and -D options are present. To run the exim
1615 # command as root, we use sudo.
1617 elsif (/^([A-Z_]+=\S+\s+)?(\d+)?\s*(sudo\s+)?exim(_\S+)?\s+(.*)$/)
1620 my($envset) = (defined $1)? $1 : "";
1621 my($sudo) = (defined $3)? "sudo " : "";
1622 my($special)= (defined $4)? $4 : "";
1623 $wait_time = (defined $2)? $2 : 0;
1625 # Return 2 rather than 1 afterwards
1629 # Update the test number
1631 $$subtestref = $$subtestref + 1;
1632 printf(" Test %d $cr", $$subtestref);
1634 # Copy the configuration file, making the usual substitutions.
1636 open (IN, "$parm_cwd/confs/$testno") ||
1637 tests_exit(-1, "Couldn't open $parm_cwd/confs/$testno: $!\n");
1638 open (OUT, ">test-config") ||
1639 tests_exit(-1, "Couldn't open test-config: $!\n");
1642 do_substitute($testno);
1648 # The string $msg1 in args substitutes the message id of the first
1649 # message on the queue, and so on. */
1651 if ($args =~ /\$msg/)
1653 my($listcmd) = "$parm_cwd/eximdir/exim -bp " .
1654 "-DEXIM_PATH=$parm_cwd/eximdir/exim " .
1655 "-C $parm_cwd/test-config |";
1656 print ">> Getting queue list from:\n>> $listcmd\n" if ($debug);
1657 open (QLIST, $listcmd) || tests_exit(-1, "Couldn't run \"exim -bp\": $!\n");
1659 while (<QLIST>) { push (@msglist, $1) if /^\s*\d+[smhdw]\s+\S+\s+(\S+)/; }
1662 # Done backwards just in case there are more than 9
1665 for ($i = @msglist; $i > 0; $i--) { $args =~ s/\$msg$i/$msglist[$i-1]/g; }
1668 # If -d is specified in $optargs, remove it from $args; i.e. let
1669 # the command line for runtest override. Then run Exim.
1671 $args =~ s/(?:^|\s)-d\S*// if $optargs =~ /(?:^|\s)-d/;
1673 $cmd = "$envset$sudo$parm_cwd/eximdir/exim$special$optargs " .
1674 "-DEXIM_PATH=$parm_cwd/eximdir/exim$special " .
1675 "-C $parm_cwd/test-config $args " .
1676 ">>test-stdout 2>>test-stderr";
1678 # If the command is starting an Exim daemon, we run it in the same
1679 # way as the "server" command above, that is, we don't want to wait
1680 # for the process to finish. That happens when "killdaemon" is obeyed later
1681 # in the script. We also send the stderr output to test-stderr-server. The
1682 # daemon has its log files put in a different place too (by configuring with
1683 # log_file_path). This requires the directory to be set up in advance.
1685 # There are also times when we want to run a non-daemon version of Exim
1686 # (e.g. a queue runner) with the server configuration. In this case,
1687 # we also define -DNOTDAEMON.
1689 if ($cmd =~ /\s-DSERVER=server\s/ && $cmd !~ /\s-DNOTDAEMON\s/)
1691 if ($debug) { printf ">> daemon: $cmd\n"; }
1692 run_system("sudo mkdir spool/log 2>/dev/null");
1693 run_system("sudo chown $parm_eximuser:$parm_eximgroup spool/log");
1695 # Before running the command, convert the -bd option into -bdf so that an
1696 # Exim daemon doesn't double fork. This means that when we wait close
1697 # DAEMONCMD, it waits for the correct process. Also, ensure that the pid
1698 # file is written to the spool directory, in case the Exim binary was
1699 # built with PID_FILE_PATH pointing somewhere else.
1701 $cmd =~ s!\s-bd\s! -bdf -oP $parm_cwd/spool/exim-daemon.pid !;
1702 print ">> |${cmd}-server\n" if ($debug);
1703 open DAEMONCMD, "|${cmd}-server" || tests_exit(-1, "Failed to run $cmd");
1704 DAEMONCMD->autoflush(1);
1705 while (<SCRIPT>) { $lineno++; last if /^\*{4}\s*$/; } # Ignore any input
1706 select(undef, undef, undef, 0.3); # Let the daemon get going
1707 return 3; # Don't wait
1714 else { tests_exit(-1, "Command unrecognized in line $lineno: $_"); }
1717 # Run the command, with stdin connected to a pipe, and write the stdin data
1718 # to it, with appropriate substitutions. If a line ends with \NONL\, chop off
1719 # the terminating newline (and the \NONL\). If the command contains
1720 # -DSERVER=server add "-server" to the command, where it will adjoin the name
1721 # for the stderr file. See comment above about the use of -DSERVER.
1723 $stderrsuffix = ($cmd =~ /\s-DSERVER=server\s/)? "-server" : "";
1724 print ">> |${cmd}${stderrsuffix}\n" if ($debug);
1725 open CMD, "|${cmd}${stderrsuffix}" || tests_exit(1, "Failed to run $cmd");
1731 last if /^\*{4}\s*$/;
1732 do_substitute($testno);
1733 if (/^(.*)\\NONL\\\s*$/) { print CMD $1; } else { print CMD; }
1736 # For timeout tests, wait before closing the pipe; we expect a
1737 # SIGPIPE error in this case.
1741 printf(" Test %d sleep $wait_time ", $$subtestref);
1742 while ($wait_time-- > 0)
1747 printf("\r Test %d $cr", $$subtestref);
1750 $sigpipehappened = 0;
1751 close CMD; # Waits for command to finish
1752 return $yield; # Ran command and waited
1758 ###############################################################################
1759 ###############################################################################
1761 # Here beginneth the Main Program ...
1763 ###############################################################################
1764 ###############################################################################
1768 print "Exim tester $testversion\n";
1771 ##################################################
1772 # Check for the "less" command #
1773 ##################################################
1775 $more = "more" if system("which less >/dev/null 2>&1") != 0;
1779 ##################################################
1780 # Check for sudo access to root #
1781 ##################################################
1783 print "You need to have sudo access to root to run these tests. Checking ...\n";
1784 if (system("sudo date >/dev/null") != 0)
1786 die "** Test for sudo failed: testing abandoned.\n";
1790 print "Test for sudo OK\n";
1795 ##################################################
1796 # See if an Exim binary has been given #
1797 ##################################################
1799 # If the first character of the first argument is '/', the argument is taken
1800 # as the path to the binary.
1802 $parm_exim = (@ARGV > 0 && $ARGV[0] =~ ?^/?)? shift @ARGV : "";
1803 print "Exim binary is $parm_exim\n" if $parm_exim ne "";
1807 ##################################################
1808 # Sort out options and which tests are to be run #
1809 ##################################################
1811 # There are a few possible options for the test script itself; after these, any
1812 # options are passed on to Exim calls within the tests. Typically, this is used
1813 # to turn on Exim debugging while setting up a test.
1815 while (@ARGV > 0 && $ARGV[0] =~ /^-/)
1817 my($arg) = shift @ARGV;
1820 if ($arg eq "-DEBUG") { $debug = 1; $cr = "\n"; next; }
1821 if ($arg eq "-DIFF") { $cf = "diff -u"; next; }
1822 if ($arg eq "-UPDATE") { $force_update = 1; next; }
1823 if ($arg eq "-NOIPV4") { $have_ipv4 = 0; next; }
1824 if ($arg eq "-NOIPV6") { $have_ipv6 = 0; next; }
1825 if ($arg eq "-KEEP") { $save_output = 1; next; }
1827 $optargs .= " $arg";
1830 # Any subsequent arguments are a range of test numbers.
1834 $test_end = $test_start = $ARGV[0];
1835 $test_end = $ARGV[1] if (@ARGV > 1);
1836 $test_end = ($test_start >= 9000)? $test_special_top : $test_top
1837 if $test_end eq "+";
1838 die "** Test numbers out of order\n" if ($test_end < $test_start);
1842 ##################################################
1843 # Make the command's directory current #
1844 ##################################################
1846 # After doing so, we find its absolute path name.
1849 $cwd = '.' if ($cwd !~ s|/[^/]+$||);
1850 chdir($cwd) || die "** Failed to chdir to \"$cwd\": $!\n";
1851 $parm_cwd = Cwd::getcwd();
1854 ##################################################
1855 # Search for an Exim binary to test #
1856 ##################################################
1858 # If an Exim binary hasn't been provided, try to find one. We can handle the
1859 # case where exim-testsuite is installed alongside Exim source directories. For
1860 # PH's private convenience, if there's a directory just called "exim4", that
1861 # takes precedence; otherwise exim-snapshot takes precedence over any numbered
1864 if ($parm_exim eq "")
1866 my($use_srcdir) = "";
1868 opendir DIR, ".." || die "** Failed to opendir \"..\": $!\n";
1869 while ($f = readdir(DIR))
1873 # Try this directory if it is "exim4" or if it is exim-snapshot or exim-n.m
1874 # possibly followed by -RCx where n.m is greater than any previously tried
1875 # directory. Thus, we should choose the highest version of Exim that has
1878 if ($f eq "exim4" || $f eq "exim-snapshot")
1882 if ($f =~ /^exim-\d+\.\d+(-RC\d+)?$/ && $f gt $use_srcdir); }
1884 # Look for a build directory with a binary in it. If we find a binary,
1885 # accept this source directory.
1889 opendir SRCDIR, "../$srcdir" ||
1890 die "** Failed to opendir \"$cwd/../$srcdir\": $!\n";
1891 while ($f = readdir(SRCDIR))
1893 if ($f =~ /^build-/ && -e "../$srcdir/$f/exim")
1895 $use_srcdir = $srcdir;
1896 $parm_exim = "$cwd/../$srcdir/$f/exim";
1897 $parm_exim =~ s'/[^/]+/\.\./'/';
1904 # If we have found "exim4" or "exim-snapshot", that takes precedence.
1905 # Otherwise, continue to see if there's a later version.
1907 last if $use_srcdir eq "exim4" || $use_srcdir eq "exim-snapshot";
1910 print "Exim binary found in $parm_exim\n" if $parm_exim ne "";
1913 # If $parm_exim is still empty, ask the caller
1915 if ($parm_exim eq "")
1917 print "** Did not find an Exim binary to test\n";
1918 for ($i = 0; $i < 5; $i++)
1921 print "** Enter pathname for Exim binary: ";
1922 chomp($trybin = <STDIN>);
1925 $parm_exim = $trybin;
1930 print "** $trybin does not exist\n";
1933 die "** Too many tries\n" if $parm_exim eq "";
1938 ##################################################
1939 # Find what is in the binary #
1940 ##################################################
1942 open(EXIMINFO, "$parm_exim -C confs/0000 -DDIR=$parm_cwd " .
1943 "-bP exim_user exim_group|") ||
1944 die "** Cannot run $parm_exim: $!\n";
1947 $parm_eximuser = $1 if /^exim_user = (.*)$/;
1948 $parm_eximgroup = $1 if /^exim_group = (.*)$/;
1952 if (defined $parm_eximuser)
1954 if ($parm_eximuser =~ /^\d+$/) { $parm_exim_uid = $parm_eximuser; }
1955 else { $parm_exim_uid = getpwnam($parm_eximuser); }
1958 if (defined $parm_eximgroup)
1960 if ($parm_eximgroup =~ /^\d+$/) { $parm_exim_gid = $parm_eximgroup; }
1961 else { $parm_exim_gid = getgrnam($parm_eximgroup); }
1964 open(EXIMINFO, "$parm_exim -bV -C confs/0000 -DDIR=$parm_cwd |") ||
1965 die "** Cannot run $parm_exim: $!\n";
1967 print "-" x 78, "\n";
1973 if (/^Exim version/) { print; }
1975 elsif (/^Size of off_t: (\d+)/)
1977 $have_largefiles = 1 if $1 > 4;
1980 elsif (/^Support for: (.*)/)
1983 @temp = split /(\s+)/, $1;
1985 %parm_support = @temp;
1988 elsif (/^Lookups: (.*)/)
1991 @temp = split /(\s+)/, $1;
1993 %parm_lookups = @temp;
1996 elsif (/^Authenticators: (.*)/)
1999 @temp = split /(\s+)/, $1;
2001 %parm_authenticators = @temp;
2004 elsif (/^Routers: (.*)/)
2007 @temp = split /(\s+)/, $1;
2009 %parm_routers = @temp;
2012 # Some transports have options, e.g. appendfile/maildir. For those, ensure
2013 # that the basic transport name is set, and then the name with each of the
2016 elsif (/^Transports: (.*)/)
2019 @temp = split /(\s+)/, $1;
2022 %parm_transports = @temp;
2023 foreach $k (keys %parm_transports)
2027 @temp = split /\//, $k;
2028 $parm_transports{"$temp[0]"} = " ";
2029 for ($i = 1; $i < @temp; $i++)
2030 { $parm_transports{"$temp[0]/$temp[$i]"} = " "; }
2036 print "-" x 78, "\n";
2039 ##################################################
2040 # Check for SpamAssassin and ClamAV #
2041 ##################################################
2043 # These are crude tests. If they aren't good enough, we'll have to improve
2044 # them, for example by actually passing a message through spamc or clamscan.
2046 if (defined $parm_support{'Content_Scanning'})
2048 if (system("spamc -h 2>/dev/null >/dev/null") == 0)
2050 print "The spamc command works:\n";
2052 # This test for an active SpamAssassin is courtesy of John Jetmore.
2053 # The tests are hard coded to localhost:783, so no point in making
2054 # this test flexible like the clamav test until the test scripts are
2055 # changed. spamd doesn't have the nice PING/PONG protoccol that
2056 # clamd does, but it does respond to errors in an informative manner,
2059 my($sint,$sport) = ('127.0.0.1',783);
2062 my $sin = sockaddr_in($sport, inet_aton($sint))
2063 or die "** Failed packing $sint:$sport\n";
2064 socket(SOCK, PF_INET, SOCK_STREAM, getprotobyname('tcp'))
2065 or die "** Unable to open socket $sint:$sport\n";
2068 sub { die "** Timeout while connecting to socket $sint:$sport\n"; };
2071 or die "** Unable to connect to socket $sint:$sport\n";
2074 select((select(SOCK), $| = 1)[0]);
2075 print SOCK "bad command\r\n";
2078 sub { die "** Timeout while reading from socket $sint:$sport\n"; };
2084 or die "** Did not get SPAMD from socket $sint:$sport. "
2091 print " Assume SpamAssassin (spamd) is not running\n";
2095 $parm_running{'SpamAssassin'} = ' ';
2096 print " SpamAssassin (spamd) seems to be running\n";
2101 print "The spamc command failed: assume SpamAssassin (spamd) is not running\n";
2104 # For ClamAV, we need to find the clamd socket for use in the Exim
2105 # configuration. Search for the clamd configuration file.
2107 if (system("clamscan -h 2>/dev/null >/dev/null") == 0)
2109 my($f, $clamconf, $test_prefix);
2111 print "The clamscan command works";
2113 $test_prefix = $ENV{EXIM_TEST_PREFIX};
2114 $test_prefix = "" if !defined $test_prefix;
2116 foreach $f ("$test_prefix/etc/clamd.conf",
2117 "$test_prefix/usr/local/etc/clamd.conf",
2118 "$test_prefix/etc/clamav/clamd.conf", "")
2127 # Read the ClamAV configuration file and find the socket interface.
2129 if ($clamconf ne "")
2132 open(IN, "$clamconf") || die "\n** Unable to open $clamconf: $!\n";
2135 if (/^LocalSocket\s+(.*)/)
2137 $parm_clamsocket = $1;
2138 $socket_domain = AF_UNIX;
2141 if (/^TCPSocket\s+(\d+)/)
2143 if (defined $parm_clamsocket)
2145 $parm_clamsocket .= " $1";
2146 $socket_domain = AF_INET;
2151 $parm_clamsocket = " $1";
2154 elsif (/^TCPAddr\s+(\S+)/)
2156 if (defined $parm_clamsocket)
2158 $parm_clamsocket = $1 . $parm_clamsocket;
2159 $socket_domain = AF_INET;
2164 $parm_clamsocket = $1;
2170 if (defined $socket_domain)
2172 print ":\n The clamd socket is $parm_clamsocket\n";
2173 # This test for an active ClamAV is courtesy of Daniel Tiefnig.
2177 if ($socket_domain == AF_UNIX)
2179 $socket = sockaddr_un($parm_clamsocket) or die "** Failed packing '$parm_clamsocket'\n";
2181 elsif ($socket_domain == AF_INET)
2183 my ($ca_host, $ca_port) = split(/\s+/,$parm_clamsocket);
2184 my $ca_hostent = gethostbyname($ca_host) or die "** Failed to get raw address for host '$ca_host'\n";
2185 $socket = sockaddr_in($ca_port, $ca_hostent) or die "** Failed packing '$parm_clamsocket'\n";
2189 die "** Unknown socket domain '$socket_domain' (should not happen)\n";
2191 socket(SOCK, $socket_domain, SOCK_STREAM, 0) or die "** Unable to open socket '$parm_clamsocket'\n";
2192 local $SIG{ALRM} = sub { die "** Timeout while connecting to socket '$parm_clamsocket'\n"; };
2194 connect(SOCK, $socket) or die "** Unable to connect to socket '$parm_clamsocket'\n";
2197 my $ofh = select SOCK; $| = 1; select $ofh;
2198 print SOCK "PING\n";
2200 $SIG{ALRM} = sub { die "** Timeout while reading from socket '$parm_clamsocket'\n"; };
2205 $res =~ /PONG/ or die "** Did not get PONG from socket '$parm_clamsocket'. It said: $res\n";
2212 print " Assume ClamAV is not running\n";
2216 $parm_running{'ClamAV'} = ' ';
2217 print " ClamAV seems to be running\n";
2222 print ", but the socket for clamd could not be determined\n";
2223 print "Assume ClamAV is not running\n";
2229 print ", but I can't find a configuration for clamd\n";
2230 print "Assume ClamAV is not running\n";
2236 ##################################################
2237 # Test for the basic requirements #
2238 ##################################################
2240 # This test suite assumes that Exim has been built with at least the "usual"
2241 # set of routers, transports, and lookups. Ensure that this is so.
2245 $missing .= " Lookup: lsearch\n" if (!defined $parm_lookups{'lsearch'});
2247 $missing .= " Router: accept\n" if (!defined $parm_routers{'accept'});
2248 $missing .= " Router: dnslookup\n" if (!defined $parm_routers{'dnslookup'});
2249 $missing .= " Router: manualroute\n" if (!defined $parm_routers{'manualroute'});
2250 $missing .= " Router: redirect\n" if (!defined $parm_routers{'redirect'});
2252 $missing .= " Transport: appendfile\n" if (!defined $parm_transports{'appendfile'});
2253 $missing .= " Transport: autoreply\n" if (!defined $parm_transports{'autoreply'});
2254 $missing .= " Transport: pipe\n" if (!defined $parm_transports{'pipe'});
2255 $missing .= " Transport: smtp\n" if (!defined $parm_transports{'smtp'});
2260 print "** Many features can be included or excluded from Exim binaries.\n";
2261 print "** This test suite requires that Exim is built to contain a certain\n";
2262 print "** set of basic facilities. It seems that some of these are missing\n";
2263 print "** from the binary that is under test, so the test cannot proceed.\n";
2264 print "** The missing facilities are:\n";
2266 die "** Test script abandoned\n";
2270 ##################################################
2271 # Check for the auxiliary programs #
2272 ##################################################
2274 # These are always required:
2276 for $prog ("cf", "checkaccess", "client", "client-ssl", "client-gnutls",
2277 "fakens", "iefbr14", "server")
2279 next if ($prog eq "client-ssl" && !defined $parm_support{'OpenSSL'});
2280 next if ($prog eq "client-gnutls" && !defined $parm_support{'GnuTLS'});
2281 if (!-e "bin/$prog")
2284 print "** bin/$prog does not exist. Have you run ./configure and make?\n";
2285 die "** Test script abandoned\n";
2289 # If the "loaded" binary is missing, we cut out tests for ${dlfunc. It isn't
2290 # compiled on systems where we don't know how to. However, if Exim does not
2291 # have that functionality compiled, we needn't bother.
2293 $dlfunc_deleted = 0;
2294 if (defined $parm_support{'Expand_dlfunc'} && !-e "bin/loaded")
2296 delete $parm_support{'Expand_dlfunc'};
2297 $dlfunc_deleted = 1;
2301 ##################################################
2302 # Find environmental details #
2303 ##################################################
2305 # Find the caller of this program.
2307 ($parm_caller,$pwpw,$parm_caller_uid,$parm_caller_gid,$pwquota,$pwcomm,
2308 $pwgecos, $parm_caller_home) = getpwuid($>);
2310 $pwpw = $pwpw; # Kill Perl warnings
2311 $pwquota = $pwquota;
2313 $pwgecos = $pwgecos;
2315 $parm_caller_group = getgrgid($parm_caller_gid);
2317 print "Program caller is $parm_caller, whose group is $parm_caller_group\n";
2318 print "Home directory is $parm_caller_home\n";
2320 print "You need to be in the Exim group to run these tests. Checking ...";
2322 if (`groups` =~ /\b\Q$parm_eximgroup\E\b/)
2328 print "\nOh dear, you are not in the Exim group.\n";
2329 die "** Testing abandoned.\n";
2332 # Find this host's IP addresses - there may be many, of course, but we keep
2333 # one of each type (IPv4 and IPv6).
2341 open(IFCONFIG, "ifconfig -a|") || die "** Cannot run \"ifconfig\": $!\n";
2342 while (($parm_ipv4 eq "" || $parm_ipv6 eq "") && ($_ = <IFCONFIG>))
2345 if ($parm_ipv4 eq "" &&
2346 $_ =~ /^\s*inet(?:\saddr)?:?\s?(\d+\.\d+\.\d+\.\d+)\s/i)
2349 next if ($ip eq "127.0.0.1");
2353 if ($parm_ipv6 eq "" &&
2354 $_ =~ /^\s*inet6(?:\saddr)?:?\s?([abcdef\d:]+)/i)
2357 next if ($ip eq "::1" || $ip =~ /^fe80/i);
2363 # Use private IP addresses if there are no public ones.
2365 $parm_ipv4 = $local_ipv4 if ($parm_ipv4 eq "");
2366 $parm_ipv6 = $local_ipv6 if ($parm_ipv6 eq "");
2368 # If either type of IP address is missing, we need to set the value to
2369 # something other than empty, because that wrecks the substitutions. The value
2370 # is reflected, so use a meaningful string. Set appropriate options for the
2371 # "server" command. In practice, however, many tests assume 127.0.0.1 is
2372 # available, so things will go wrong if there is no IPv4 address. The lack
2373 # of IPV4 or IPv6 can be simulated by command options, which force $have_ipv4
2374 # and $have_ipv6 false.
2376 if ($parm_ipv4 eq "")
2379 $parm_ipv4 = "<no IPv4 address found>";
2380 $server_opts .= " -noipv4";
2382 elsif ($have_ipv4 == 0)
2384 $parm_ipv4 = "<IPv4 testing disabled>";
2385 $server_opts .= " -noipv4";
2389 $parm_running{"IPv4"} = " ";
2392 if ($parm_ipv6 eq "")
2395 $parm_ipv6 = "<no IPv6 address found>";
2396 $server_opts .= " -noipv6";
2397 delete($parm_support{"IPv6"});
2399 elsif ($have_ipv6 == 0)
2401 $parm_ipv6 = "<IPv6 testing disabled>";
2402 $server_opts .= " -noipv6";
2403 delete($parm_support{"IPv6"});
2405 elsif (!defined $parm_support{'IPv6'})
2408 $parm_ipv6 = "<no IPv6 support in Exim binary>";
2409 $server_opts .= " -noipv6";
2413 $parm_running{"IPv6"} = " ";
2416 print "IPv4 address is $parm_ipv4\n";
2417 print "IPv6 address is $parm_ipv6\n";
2419 # For munging test output, we need the reversed IP addresses.
2421 $parm_ipv4r = ($parm_ipv4 !~ /^\d/)? "" :
2422 join(".", reverse(split /\./, $parm_ipv4));
2424 $parm_ipv6r = $parm_ipv6; # Appropriate if not in use
2425 if ($parm_ipv6 =~ /^[\da-f]/)
2427 my(@comps) = split /:/, $parm_ipv6;
2429 foreach $comp (@comps)
2431 push @nibbles, sprintf("%lx", hex($comp) >> 8);
2432 push @nibbles, sprintf("%lx", hex($comp) & 0xff);
2434 $parm_ipv6r = join(".", reverse(@nibbles));
2437 # Find the host name, fully qualified.
2439 chomp($temp = `hostname`);
2440 $parm_hostname = (gethostbyname($temp))[0];
2441 $parm_hostname = "no.host.name.found" if $parm_hostname eq "";
2442 print "Hostname is $parm_hostname\n";
2444 if ($parm_hostname !~ /\./)
2446 print "\n*** Host name is not fully qualified: this may cause problems ***\n\n";
2449 # Find the user's shell
2451 $parm_shell = $ENV{'SHELL'};
2454 ##################################################
2455 # Create a testing version of Exim #
2456 ##################################################
2458 # We want to be able to run Exim with a variety of configurations. Normally,
2459 # the use of -C to change configuration causes Exim to give up its root
2460 # privilege (unless the caller is exim or root). For these tests, we do not
2461 # want this to happen. Also, we want Exim to know that it is running in its
2464 # We achieve this by copying the binary and patching it as we go. The new
2465 # binary knows it is a testing copy, and it allows -C and -D without loss of
2466 # privilege. Clearly, this file is dangerous to have lying around on systems
2467 # where there are general users with login accounts. To protect against this,
2468 # we put the new binary in a special directory that is accessible only to the
2469 # caller of this script, who is known to have sudo root privilege from the test
2470 # that was done above. Furthermore, we ensure that the binary is deleted at the
2471 # end of the test. First ensure the directory exists.
2474 { unlink "eximdir/exim"; } # Just in case
2477 mkdir("eximdir", 0710) || die "** Unable to mkdir $parm_cwd/eximdir: $!\n";
2478 system("sudo chgrp $parm_eximgroup eximdir");
2481 # The construction of the patched binary must be done as root, so we use
2482 # a separate script. As well as indicating that this is a test-harness binary,
2483 # the version number is patched to "x.yz" so that its length is always the
2484 # same. Otherwise, when it appears in Received: headers, it affects the length
2485 # of the message, which breaks certain comparisons.
2487 die "** Unable to make patched exim: $!\n"
2488 if (system("sudo ./patchexim $parm_exim") != 0);
2490 # From this point on, exits from the program must go via the subroutine
2491 # tests_exit(), so that suitable cleaning up can be done when required.
2492 # Arrange to catch interrupting signals, to assist with this.
2494 $SIG{'INT'} = \&inthandler;
2495 $SIG{'PIPE'} = \&pipehandler;
2497 # For some tests, we need another copy of the binary that is setuid exim rather
2500 system("sudo cp eximdir/exim eximdir/exim_exim;" .
2501 "sudo chown $parm_eximuser eximdir/exim_exim;" .
2502 "sudo chgrp $parm_eximgroup eximdir/exim_exim;" .
2503 "sudo chmod 06755 eximdir/exim_exim");
2506 ##################################################
2507 # Make copies of utilities we might need #
2508 ##################################################
2510 # Certain of the tests make use of some of Exim's utilities. We do not need
2511 # to be root to copy these.
2513 ($parm_exim_dir) = $parm_exim =~ ?^(.*)/exim?;
2515 $dbm_build_deleted = 0;
2516 if (defined $parm_lookups{'dbm'} &&
2517 system("cp $parm_exim_dir/exim_dbmbuild eximdir") != 0)
2519 delete $parm_lookups{'dbm'};
2520 $dbm_build_deleted = 1;
2523 if (system("cp $parm_exim_dir/exim_dumpdb eximdir") != 0)
2525 tests_exit(-1, "Failed to make a copy of exim_dumpdb: $!");
2528 if (system("cp $parm_exim_dir/exim_lock eximdir") != 0)
2530 tests_exit(-1, "Failed to make a copy of exim_lock: $!");
2533 if (system("cp $parm_exim_dir/exinext eximdir") != 0)
2535 tests_exit(-1, "Failed to make a copy of exinext: $!");
2539 ##################################################
2540 # Check that the Exim user can access stuff #
2541 ##################################################
2543 # We delay this test till here so that we can check access to the actual test
2544 # binary. This will be needed when Exim re-exec's itself to do deliveries.
2546 print "Exim user is $parm_eximuser ($parm_exim_uid)\n";
2547 print "Exim group is $parm_eximgroup ($parm_exim_gid)\n";
2548 print "The Exim user needs access to the test suite directory. Checking ...";
2550 if (($rc = system("sudo bin/checkaccess $parm_cwd/eximdir/exim $parm_eximuser $parm_eximgroup")) != 0)
2552 my($why) = "unknown failure $rc";
2554 $why = "Couldn't find user \"$parm_eximuser\"" if $rc == 1;
2555 $why = "Couldn't find group \"$parm_eximgroup\"" if $rc == 2;
2556 $why = "Couldn't read auxiliary group list" if $rc == 3;
2557 $why = "Couldn't get rid of auxiliary groups" if $rc == 4;
2558 $why = "Couldn't set gid" if $rc == 5;
2559 $why = "Couldn't set uid" if $rc == 6;
2560 $why = "Couldn't open \"$parm_cwd/eximdir/exim\"" if $rc == 7;
2561 print "\n** $why\n";
2562 tests_exit(-1, "$parm_eximuser cannot access the test suite directory");
2570 ##################################################
2571 # Create a list of available tests #
2572 ##################################################
2574 # The scripts directory contains a number of subdirectories whose names are
2575 # of the form 0000-xxxx, 1100-xxxx, 2000-xxxx, etc. Each set of tests apart
2576 # from the first requires certain optional features to be included in the Exim
2577 # binary. These requirements are contained in a file called "REQUIRES" within
2578 # the directory. We scan all these tests, discarding those that cannot be run
2579 # because the current binary does not support the right facilities, and also
2580 # those that are outside the numerical range selected.
2582 print "\nTest range is $test_start to $test_end\n";
2583 print "Omitting \${dlfunc expansion tests (loadable module not present)\n"
2585 print "Omitting dbm tests (unable to copy exim_dbmbuild)\n"
2586 if $dbm_build_deleted;
2588 opendir(DIR, "scripts") || tests_exit(-1, "Failed to opendir(\"scripts\"): $!");
2589 @test_dirs = sort readdir(DIR);
2592 # Remove . and .. and CVS from the list.
2594 for ($i = 0; $i < @test_dirs; $i++)
2596 my($d) = $test_dirs[$i];
2597 if ($d eq "." || $d eq ".." || $d eq "CVS")
2599 splice @test_dirs, $i, 1;
2604 # Scan for relevant tests
2606 for ($i = 0; $i < @test_dirs; $i++)
2608 my($testdir) = $test_dirs[$i];
2611 print ">>Checking $testdir\n" if $debug;
2613 # Skip this directory if the first test is equal or greater than the first
2614 # test in the next directory.
2616 next if ($i < @test_dirs - 1) &&
2617 ($test_start >= substr($test_dirs[$i+1], 0, 4));
2619 # No need to carry on if the end test is less than the first test in this
2622 last if $test_end < substr($testdir, 0, 4);
2624 # Check requirements, if any.
2626 if (open(REQUIRES, "scripts/$testdir/REQUIRES"))
2632 if (/^support (.*)$/)
2634 if (!defined $parm_support{$1}) { $wantthis = 0; last; }
2636 elsif (/^running (.*)$/)
2638 if (!defined $parm_running{$1}) { $wantthis = 0; last; }
2640 elsif (/^lookup (.*)$/)
2642 if (!defined $parm_lookups{$1}) { $wantthis = 0; last; }
2644 elsif (/^authenticators? (.*)$/)
2646 if (!defined $parm_authenticators{$1}) { $wantthis = 0; last; }
2648 elsif (/^router (.*)$/)
2650 if (!defined $parm_routers{$1}) { $wantthis = 0; last; }
2652 elsif (/^transport (.*)$/)
2654 if (!defined $parm_transports{$1}) { $wantthis = 0; last; }
2658 tests_exit(-1, "Unknown line in \"scripts/$testdir/REQUIRES\": \"$_\"");
2665 tests_exit(-1, "Failed to open \"scripts/$testdir/REQUIRES\": $!")
2669 # Loop if we do not want the tests in this subdirectory.
2674 print "Omitting tests in $testdir (missing $_)\n";
2678 # We want the tests from this subdirectory, provided they are in the
2679 # range that was selected.
2681 opendir(SUBDIR, "scripts/$testdir") ||
2682 tests_exit(-1, "Failed to opendir(\"scripts/$testdir\"): $!");
2683 @testlist = sort readdir(SUBDIR);
2686 foreach $test (@testlist)
2688 next if $test !~ /^\d{4}$/;
2689 next if $test < $test_start || $test > $test_end;
2690 push @test_list, "$testdir/$test";
2694 print ">>Test List: @test_list\n", if $debug;
2697 ##################################################
2698 # Munge variable auxiliary data #
2699 ##################################################
2701 # Some of the auxiliary data files have to refer to the current testing
2702 # directory and other parameter data. The generic versions of these files are
2703 # stored in the aux-var-src directory. At this point, we copy each of them
2704 # to the aux-var directory, making appropriate substitutions. There aren't very
2705 # many of them, so it's easiest just to do this every time. Ensure the mode
2706 # is standardized, as this path is used as a test for the ${stat: expansion.
2708 # A similar job has to be done for the files in the dnszones-src directory, to
2709 # make the fake DNS zones for testing. Most of the zone files are copied to
2710 # files of the same name, but db.ipv4.V4NET and db.ipv6.V6NET use the testing
2711 # networks that are defined by parameter.
2713 foreach $basedir ("aux-var", "dnszones")
2715 system("sudo rm -rf $parm_cwd/$basedir");
2716 mkdir("$parm_cwd/$basedir", 0777);
2717 chmod(0755, "$parm_cwd/$basedir");
2719 opendir(AUX, "$parm_cwd/$basedir-src") ||
2720 tests_exit(-1, "Failed to opendir $parm_cwd/$basedir-src: $!");
2721 my(@filelist) = readdir(AUX);
2724 foreach $file (@filelist)
2726 my($outfile) = $file;
2727 next if $file =~ /^\./;
2729 if ($file eq "db.ip4.V4NET")
2731 $outfile = "db.ip4.$parm_ipv4_test_net";
2733 elsif ($file eq "db.ip6.V6NET")
2735 my(@nibbles) = reverse(split /\s*/, $parm_ipv6_test_net);
2737 $outfile = "db.ip6.@nibbles";
2741 print ">>Copying $basedir-src/$file to $basedir/$outfile\n" if $debug;
2742 open(IN, "$parm_cwd/$basedir-src/$file") ||
2743 tests_exit(-1, "Failed to open $parm_cwd/$basedir-src/$file: $!");
2744 open(OUT, ">$parm_cwd/$basedir/$outfile") ||
2745 tests_exit(-1, "Failed to open $parm_cwd/$basedir/$outfile: $!");
2757 ##################################################
2758 # Create fake DNS zones for this host #
2759 ##################################################
2761 # There are fixed zone files for 127.0.0.1 and ::1, but we also want to be
2762 # sure that there are forward and reverse registrations for this host, using
2763 # its real IP addresses. Dynamically created zone files achieve this.
2765 if ($have_ipv4 || $have_ipv6)
2767 my($shortname,$domain) = $parm_hostname =~ /^([^.]+)(.*)/;
2768 open(OUT, ">$parm_cwd/dnszones/db$domain") ||
2769 tests_exit(-1, "Failed to open $parm_cwd/dnszones/db$domain: $!");
2770 print OUT "; This is a dynamically constructed fake zone file.\n" .
2771 "; The following line causes fakens to return PASS_ON\n" .
2772 "; for queries that it cannot answer\n\n" .
2773 "PASS ON NOT FOUND\n\n";
2774 print OUT "$shortname A $parm_ipv4\n" if $have_ipv4;
2775 print OUT "$shortname AAAA $parm_ipv6\n" if $have_ipv6;
2776 print OUT "\n; End\n";
2780 if ($have_ipv4 && $parm_ipv4 ne "127.0.0.1")
2782 my(@components) = $parm_ipv4 =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)/;
2783 open(OUT, ">$parm_cwd/dnszones/db.ip4.$components[0]") ||
2785 "Failed to open $parm_cwd/dnszones/db.ip4.$components[0]: $!");
2786 print OUT "; This is a dynamically constructed fake zone file.\n" .
2787 "; The zone is $components[0].in-addr.arpa.\n\n" .
2788 "$components[3].$components[2].$components[1] PTR $parm_hostname.\n\n" .
2793 if ($have_ipv6 && $parm_ipv6 ne "::1")
2795 my(@components) = split /:/, $parm_ipv6;
2796 my(@nibbles) = reverse (split /\s*/, shift @components);
2800 open(OUT, ">$parm_cwd/dnszones/db.ip6.@nibbles") ||
2802 "Failed to open $parm_cwd/dnszones/db.ip6.@nibbles: $!");
2803 print OUT "; This is a dynamically constructed fake zone file.\n" .
2804 "; The zone is @nibbles.ip6.arpa.\n\n";
2806 @components = reverse @components;
2807 foreach $c (@components)
2809 $c = "0$c" until $c =~ /^..../;
2810 @nibbles = reverse(split /\s*/, $c);
2811 print OUT "$sep@nibbles";
2815 print OUT " PTR $parm_hostname.\n\n; End\n";
2822 ##################################################
2823 # Create lists of mailboxes and message logs #
2824 ##################################################
2826 # We use these lists to check that a test has created the expected files. It
2827 # should be faster than looking for the file each time. For mailboxes, we have
2828 # to scan a complete subtree, in order to handle maildirs. For msglogs, there
2829 # is just a flat list of files.
2831 @oldmails = list_files_below("mail");
2832 opendir(DIR, "msglog") || tests_exit(-1, "Failed to opendir msglog: $!");
2833 @oldmsglogs = readdir(DIR);
2838 ##################################################
2839 # Run the required tests #
2840 ##################################################
2842 # Each test script contains a number of tests, separated by a line that
2843 # contains ****. We open input from the terminal so that we can read responses
2846 open(T, "/dev/tty") || tests_exit(-1, "Failed to open /dev/tty: $!");
2848 print "\nPress RETURN to run the tests: ";
2854 foreach $test (@test_list)
2857 local($commandno) = 0;
2858 local($subtestno) = 0;
2859 local($testno) = substr($test, -4);
2860 local($sortlog) = 0;
2864 my($thistestdir) = substr($test, 0, -5);
2866 if ($lasttestdir ne $thistestdir)
2869 if (-s "scripts/$thistestdir/REQUIRES")
2872 print "\n>>> The following tests require: ";
2873 open(IN, "scripts/$thistestdir/REQUIRES") ||
2874 tests_exit(-1, "Failed to open scripts/$thistestdir/REQUIRES: $1");
2877 $gnutls = 1 if /^support GnuTLS/;
2884 $lasttestdir = $thistestdir;
2886 # Remove any debris in the spool directory and the test-mail directory
2887 # and also the files for collecting stdout and stderr. Then put back
2888 # the test-mail directory for appendfile deliveries.
2890 system "sudo /bin/rm -rf spool test-*";
2891 system "mkdir test-mail 2>/dev/null";
2893 # A privileged Exim will normally make its own spool directory, but some of
2894 # the tests run in unprivileged modes that don't always work if the spool
2895 # directory isn't already there. What is more, we want anybody to be able
2896 # to read it in order to find the daemon's pid.
2898 system "mkdir spool; " .
2899 "sudo chown $parm_eximuser:$parm_eximgroup spool; " .
2900 "sudo chmod 0755 spool";
2902 # Empty the cache that keeps track of things like message id mappings, and
2903 # set up the initial sequence strings.
2915 # Remove the associative arrays used to hold checked mail files and msglogs
2917 undef %expected_mails;
2918 undef %expected_msglogs;
2920 # Open the test's script
2922 open(SCRIPT, "scripts/$test") ||
2923 tests_exit(-1, "Failed to open \"scripts/$test\": $!");
2925 # The first line in the script must be a comment that is used to identify
2926 # the set of tests as a whole.
2930 tests_exit(-1, "Missing identifying comment at start of $test") if (!/^#/);
2931 printf("%s %s", (substr $test, 5), (substr $_, 2));
2933 # Loop for each of the subtests within the script. The variable $server_pid
2934 # is used to remember the pid of a "server" process, for which we do not
2935 # wait until we have waited for a subsequent command.
2937 local($server_pid) = 0;
2938 for ($commandno = 1; !eof SCRIPT; $commandno++)
2940 # Skip further leading comments and blank lines, handle the flag setting
2941 # commands, and deal with tests for IP support.
2946 if (/^no_message_check/) { $message_skip = 1; next; }
2947 if (/^no_msglog_check/) { $msglog_skip = 1; next; }
2948 if (/^no_stderr_check/) { $stderr_skip = 1; next; }
2949 if (/^no_stdout_check/) { $stdout_skip = 1; next; }
2950 if (/^rmfiltertest/) { $rmfiltertest = 1; next; }
2951 if (/^sortlog/) { $sortlog = 1; next; }
2953 if (/^need_largefiles/)
2955 next if $have_largefiles;
2956 print ">>> Large file support is needed for test $testno, but is not available: skipping\n";
2957 $docheck = 0; # don't check output
2958 undef $_; # pretend EOF
2965 print ">>> IPv4 is needed for test $testno, but is not available: skipping\n";
2966 $docheck = 0; # don't check output
2967 undef $_; # pretend EOF
2978 print ">>> IPv6 is needed for test $testno, but is not available: skipping\n";
2979 $docheck = 0; # don't check output
2980 undef $_; # pretend EOF
2984 if (/^need_move_frozen_messages/)
2986 next if defined $parm_support{"move_frozen_messages"};
2987 print ">>> move frozen message support is needed for test $testno, " .
2988 "but is not\n>>> available: skipping\n";
2989 $docheck = 0; # don't check output
2990 undef $_; # pretend EOF
2994 last unless /^(#|\s*$)/;
2996 last if !defined $_; # Hit EOF
2998 my($subtest_startline) = $lineno;
3000 # Now run the command. The function returns 0 if exim was run and waited
3001 # for, 1 if any other command was run and waited for, and 2 if a command
3002 # was run and not waited for (usually a daemon or server startup).
3004 my($commandname) = "";
3006 my($rc) = run_command($testno, \$subtestno, \$expectrc, \$commandname);
3009 print ">> rc=$rc cmdrc=$cmdrc\n" if $debug;
3011 # Hit EOF after an initial return code number
3013 tests_exit(-1, "Unexpected EOF in script") if ($rc == 4);
3015 # Carry on with the next command if we did not wait for this one. $rc == 0
3016 # if no subprocess was run; $rc == 3 if we started a process but did not
3019 next if ($rc == 0 || $rc == 3);
3021 # We ran and waited for a command. Check for the expected result unless
3024 if ($cmdrc != $expectrc && !$sigpipehappened)
3026 printf("** Command $commandno (\"$commandname\", starting at line $subtest_startline)\n");
3027 if (($cmdrc & 0xff) == 0)
3029 printf("** Return code %d (expected %d)", $cmdrc/256, $expectrc/256);
3031 elsif (($cmdrc & 0xff00) == 0)
3032 { printf("** Killed by signal %d", $cmdrc & 255); }
3034 { printf("** Status %x", $cmdrc); }
3038 print "\nshow stdErr, show stdOut, Continue (without file comparison), or Quit? [Q] ";
3040 tests_exit(1) if /^q?$/i;
3044 system("$more test-stderr");
3048 system("$more test-stdout");
3055 # If the command was exim, and a listening server is running, we can now
3056 # close its input, which causes us to wait for it to finish, which is why
3057 # we didn't close it earlier.
3059 if ($rc == 2 && $server_pid != 0)
3065 if (($? & 0xff) == 0)
3066 { printf("Server return code %d", $?/256); }
3067 elsif (($? & 0xff00) == 0)
3068 { printf("Server killed by signal %d", $? & 255); }
3070 { printf("Server status %x", $?); }
3074 print "\nShow server stdout, Continue, or Quit? [Q] ";
3076 tests_exit(1) if /^q?$/i;
3081 open(S, "test-stdout-server") ||
3082 tests_exit(-1, "Failed to open test-stdout-server: $!");
3093 # The script has finished. Check the all the output that was generated. The
3094 # function returns 0 if all is well, 1 if we should rerun the test (the files
3095 # have been updated). It does not return if the user responds Q to a prompt.
3099 if (check_output() != 0)
3101 print (("#" x 79) . "\n");
3106 print (" Script completed\n");
3112 ##################################################
3113 # Exit from the test script #
3114 ##################################################
3116 tests_exit(-1, "No runnable tests selected") if @test_list == 0;
3119 # End of runtest script