2 # Bootstrap Samba and run a number of tests against it.
3 # Copyright (C) 2005-2010 Jelmer Vernooij <jelmer@samba.org>
4 # Copyright (C) 2007-2009 Stefan Metzmacher <metze@samba.org>
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 use FindBin
qw($RealBin $Script);
23 use File::Temp qw(tempfile);
31 use Time
::HiRes
qw(time);
35 Time
::HiRes
->import("time");
38 print "You don't have Time::Hires installed !\n";
42 my $opt_target = "samba";
44 my $opt_socket_wrapper = 0;
45 my $opt_socket_wrapper_pcap = undef;
46 my $opt_socket_wrapper_keep_pcap = undef;
47 my $opt_random_order = 0;
51 my @opt_exclude_env = ();
52 my @opt_include_env = ();
57 my $opt_resetup_env = undef;
58 my $opt_load_list = undef;
59 my $opt_libnss_wrapper_so_path = "";
60 my $opt_libresolv_wrapper_so_path = "";
61 my $opt_libsocket_wrapper_so_path = "";
62 my $opt_libuid_wrapper_so_path = "";
63 my $opt_libasan_so_path = "";
64 my $opt_use_dns_faking = 0;
76 my ($list, $fullname) = @_;
79 if ($fullname =~ /$$_[0]/) {
80 return ($$_[1]) if ($$_[1]);
90 my ($name, $envname) = @_;
91 my ($env_basename, $env_localpart) = split(/:/, $envname);
93 if ($opt_target eq "samba3" && $Samba::ENV_NEEDS_AD_DC
{$env_basename}) {
94 return "environment $envname is disabled as this build does not include an AD DC";
97 if (@opt_include_env && !(grep {$_ eq $env_basename} @opt_include_env)) {
98 return "environment $envname is disabled (via --include-env command line option) in this test run - skipping";
99 } elsif (@opt_exclude_env && grep {$_ eq $env_basename} @opt_exclude_env) {
100 return "environment $envname is disabled (via --exclude-env command line option) in this test run - skipping";
103 return find_in_list
(\
@excludes, $name);
112 return unless ($opt_socket_wrapper_pcap);
113 return unless defined($ENV{SOCKET_WRAPPER_PCAP_DIR
});
116 $fname =~ s
%[^abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789\
-]%_%g;
118 my $pcap_file = "$ENV{SOCKET_WRAPPER_PCAP_DIR}/$fname.pcap";
120 SocketWrapper
::setup_pcap
($pcap_file);
127 my ($pcap_file, $exitcode) = @_;
129 return unless ($opt_socket_wrapper_pcap);
130 return if ($opt_socket_wrapper_keep_pcap);
131 return unless ($exitcode == 0);
132 return unless defined($pcap_file);
137 # expand strings from %ENV
138 sub expand_environment_strings
($)
141 # we use a reverse sort so we do the longer ones first
142 foreach my $k (sort { $b cmp $a } keys %ENV) {
143 $s =~ s/\$$k/$ENV{$k}/g;
148 sub run_testsuite
($$$$$)
150 my ($envname, $name, $cmd, $i, $totalsuites) = @_;
151 my $pcap_file = setup_pcap
($name);
153 Subunit
::start_testsuite
($name);
154 Subunit
::progress_push
();
155 Subunit
::report_time
();
157 Subunit
::report_time
();
158 Subunit
::progress_pop
();
161 print "command: $cmd\n";
162 printf "expanded command: %s\n", expand_environment_strings
($cmd);
163 Subunit
::end_testsuite
($name, "error", "Unable to run $cmd: $!");
166 print "command: $cmd\n";
167 printf "expanded command: %s\n", expand_environment_strings
($cmd);
168 Subunit
::end_testsuite
($name, "error",
169 sprintf("%s died with signal %d, %s coredump\n", $cmd, ($?
& 127), ($?
& 128) ?
'with' : 'without'));
173 my $exitcode = $?
>> 8;
175 my $envlog = getlog_env
($envname);
177 print "envlog: $envlog\n";
180 print "command: $cmd\n";
181 printf "expanded command: %s\n", expand_environment_strings
($cmd);
183 if ($exitcode == 0) {
184 Subunit
::end_testsuite
($name, "success");
186 Subunit
::end_testsuite
($name, "failure", "Exit code was $exitcode");
189 cleanup_pcap
($pcap_file, $exitcode);
191 if (not $opt_socket_wrapper_keep_pcap and defined($pcap_file)) {
192 print "PCAP FILE: $pcap_file\n";
195 if ($exitcode != 0) {
196 exit(1) if ($opt_one);
204 print "Samba test runner
205 Copyright (C) Jelmer Vernooij <jelmer\@samba.org>
206 Copyright (C) Stefan Metzmacher <metze\@samba.org>
208 Usage: $Script [OPTIONS] TESTNAME-REGEX [TESTNAME-REGEX...]
211 --help this help page
212 --target=samba[3]|win Samba version to target
213 --testlist=FILE file to read available tests from
214 --exclude=FILE Exclude tests listed in the file
215 --include=FILE Include tests listed in the file
216 --exclude-env=ENV Exclude tests for the specified environment
217 --include-env=ENV Include tests for the specified environment
220 --prefix=DIR prefix to run tests in [st]
221 --srcdir=DIR source directory [.]
222 --bindir=DIR binaries directory [./bin]
225 --nss_wrapper_so_path=FILE the nss_wrapper library to preload
226 --resolv_wrapper_so_path=FILE the resolv_wrapper library to preload
227 --socket_wrapper_so_path=FILE the socket_wrapper library to preload
228 --uid_wrapper_so_path=FILE the uid_wrapper library to preload
229 --asan_so_path=FILE the asan library to preload
232 --use-dns-faking Fake DNS entries rather than talking to our
236 --socket-wrapper-pcap save traffic to pcap directories
237 --socket-wrapper-keep-pcap keep all pcap files, not just those for tests that
239 --socket-wrapper enable socket wrapper
242 --ldap=openldap|fedora-ds back samba onto specified ldap server
245 --quick run quick overall test
246 --one abort when the first test fails
247 --testenv run a shell in the requested test environment
248 --list list available tests
253 my $result = GetOptions
(
254 'help|h|?' => \
$opt_help,
255 'target=s' => \
$opt_target,
256 'prefix=s' => \
$prefix,
257 'socket-wrapper' => \
$opt_socket_wrapper,
258 'socket-wrapper-pcap' => \
$opt_socket_wrapper_pcap,
259 'socket-wrapper-keep-pcap' => \
$opt_socket_wrapper_keep_pcap,
260 'quick' => \
$opt_quick,
262 'exclude=s' => \
@opt_exclude,
263 'include=s' => \
@opt_include,
264 'exclude-env=s' => \
@opt_exclude_env,
265 'include-env=s' => \
@opt_include_env,
266 'srcdir=s' => \
$srcdir,
267 'bindir=s' => \
$bindir,
268 'testenv' => \
$opt_testenv,
269 'list' => \
$opt_list,
270 'mitkrb5' => \
$opt_mitkrb5,
272 'resetup-environment' => \
$opt_resetup_env,
273 'testlist=s' => \
@testlists,
274 'random-order' => \
$opt_random_order,
275 'load-list=s' => \
$opt_load_list,
276 'nss_wrapper_so_path=s' => \
$opt_libnss_wrapper_so_path,
277 'resolv_wrapper_so_path=s' => \
$opt_libresolv_wrapper_so_path,
278 'socket_wrapper_so_path=s' => \
$opt_libsocket_wrapper_so_path,
279 'uid_wrapper_so_path=s' => \
$opt_libuid_wrapper_so_path,
280 'asan_so_path=s' => \
$opt_libasan_so_path,
281 'use-dns-faking' => \
$opt_use_dns_faking
284 exit(1) if (not $result);
286 ShowHelp
() if ($opt_help);
288 die("--list and --testenv are mutually exclusive") if ($opt_list and $opt_testenv);
290 # we want unbuffered output
295 # quick hack to disable rpc validation when using valgrind - its way too slow
296 unless (defined($ENV{VALGRIND
})) {
297 $ENV{VALIDATE
} = "validate";
298 $ENV{MALLOC_CHECK_
} = 3;
301 # make all our python scripts unbuffered
302 $ENV{PYTHONUNBUFFERED
} = 1;
304 my $bindir_abs = abs_path
($bindir);
306 # Backwards compatibility:
307 if (defined($ENV{TEST_LDAP
}) and $ENV{TEST_LDAP
} eq "yes") {
308 if (defined($ENV{FEDORA_DS_ROOT
})) {
315 my $torture_maxtime = ($ENV{TORTURE_MAXTIME
} or 1200);
318 $torture_maxtime *= 2;
325 die("using an empty prefix isn't allowed") unless $prefix ne "";
327 # Ensure we have the test prefix around.
329 # We need restrictive
330 # permissions on this as some subdirectories in this tree will have
331 # wider permissions (ie 0777) and this would allow other users on the
332 # host to subvert the test process.
334 mkdir($prefix, 0700) unless -d
$prefix;
336 # We need to have no umask limitations for the tests.
339 my $prefix_abs = abs_path
($prefix);
340 my $tmpdir_abs = abs_path
("$prefix/tmp");
341 mkdir($tmpdir_abs, 0777) unless -d
$tmpdir_abs;
343 my $srcdir_abs = abs_path
($srcdir);
345 die("using an empty absolute prefix isn't allowed") unless $prefix_abs ne "";
346 die("using '/' as absolute prefix isn't allowed") unless $prefix_abs ne "/";
348 $ENV{SAMBA_SELFTEST
} = "1";
350 $ENV{PREFIX
} = $prefix;
351 $ENV{PREFIX_ABS
} = $prefix_abs;
352 $ENV{SRCDIR
} = $srcdir;
353 $ENV{SRCDIR_ABS
} = $srcdir_abs;
354 $ENV{GNUPGHOME
} = "$srcdir_abs/selftest/gnupg";
355 $ENV{BINDIR
} = $bindir_abs;
357 my $tls_enabled = not $opt_quick;
358 $ENV{TLS_ENABLED
} = ($tls_enabled?
"yes":"no");
360 sub prefix_pathvar
($$)
362 my ($name, $newpath) = @_;
363 if (defined($ENV{$name})) {
364 $ENV{$name} = "$newpath:$ENV{$name}";
366 $ENV{$name} = $newpath;
369 prefix_pathvar
("PKG_CONFIG_PATH", "$bindir_abs/pkgconfig");
370 prefix_pathvar
("PYTHONPATH", "$bindir_abs/python");
372 if ($opt_socket_wrapper_keep_pcap) {
373 # Socket wrapper keep pcap implies socket wrapper pcap
374 $opt_socket_wrapper_pcap = 1;
377 if ($opt_socket_wrapper_pcap) {
378 # Socket wrapper pcap implies socket wrapper
379 $opt_socket_wrapper = 1;
382 my $ld_preload = $ENV{LD_PRELOAD
};
384 if ($opt_libasan_so_path) {
386 $ld_preload = "$ld_preload:$opt_libasan_so_path";
388 $ld_preload = "$opt_libasan_so_path";
392 if ($opt_libnss_wrapper_so_path) {
394 $ld_preload = "$ld_preload:$opt_libnss_wrapper_so_path";
396 $ld_preload = "$opt_libnss_wrapper_so_path";
400 if ($opt_libresolv_wrapper_so_path) {
402 $ld_preload = "$ld_preload:$opt_libresolv_wrapper_so_path";
404 $ld_preload = "$opt_libresolv_wrapper_so_path";
408 if ($opt_libsocket_wrapper_so_path) {
410 $ld_preload = "$ld_preload:$opt_libsocket_wrapper_so_path";
412 $ld_preload = "$opt_libsocket_wrapper_so_path";
416 if ($opt_libuid_wrapper_so_path) {
418 $ld_preload = "$ld_preload:$opt_libuid_wrapper_so_path";
420 $ld_preload = "$opt_libuid_wrapper_so_path";
424 $ENV{LD_PRELOAD
} = $ld_preload;
425 print "LD_PRELOAD=$ENV{LD_PRELOAD}\n";
427 # Enable uid_wrapper globally
428 $ENV{UID_WRAPPER
} = 1;
430 # Disable RTLD_DEEPBIND hack for Samba bind dlz module
432 # This is needed in order to allow the ldb_*ldap module
433 # to work with a preloaded socket wrapper.
434 $ENV{LDB_MODULES_DISABLE_DEEPBIND
} = 1;
436 my $socket_wrapper_dir;
437 if ($opt_socket_wrapper) {
438 $socket_wrapper_dir = SocketWrapper
::setup_dir
("$prefix_abs/w", $opt_socket_wrapper_pcap);
439 print "SOCKET_WRAPPER_DIR=$socket_wrapper_dir\n";
440 } elsif (not $opt_list) {
442 warn("not using socket wrapper, but also not running as root. Will not be able to listen on proper ports");
446 if ($opt_use_dns_faking) {
447 print "DNS: Faking nameserver\n";
448 $ENV{SAMBA_DNS_FAKING
} = 1;
452 my $testenv_default = "none";
454 if ($opt_mitkrb5 == 1) {
455 $ENV{MITKRB5
} = $opt_mitkrb5;
458 # After this many seconds, the server will self-terminate. All tests
459 # must terminate in this time, and testenv will only stay alive this
464 # 1 year should be enough :-)
465 $server_maxtime = 365 * 24 * 60 * 60;
467 # make test should run under 5 hours
468 $server_maxtime = 5 * 60 * 60;
471 if (defined($ENV{SMBD_MAXTIME
}) and $ENV{SMBD_MAXTIME
} ne "") {
472 $server_maxtime = $ENV{SMBD_MAXTIME
};
475 $target = new Samba
($bindir, $ldap, $srcdir, $server_maxtime);
477 if ($opt_target eq "samba") {
478 $testenv_default = "ad_dc";
479 } elsif ($opt_target eq "samba3") {
480 $testenv_default = "nt4_member";
484 sub read_test_regexes
($)
488 open(LF
, "<$name") or die("unable to read $name: $!");
492 if (/^(.*?)([ \t]+)\#([\t ]*)(.*?)$/) {
493 push (@ret, [$1, $4]);
495 s/^(.*?)([ \t]+)\#([\t ]*)(.*?)$//;
496 push (@ret, [$_, undef]);
503 foreach (@opt_exclude) {
504 push (@excludes, read_test_regexes
($_));
507 foreach (@opt_include) {
508 push (@includes, read_test_regexes
($_));
511 my $interfaces = join(',', ("127.0.0.11/8",
518 my $clientdir = "$prefix_abs/client";
520 my $conffile = "$clientdir/client.conf";
521 $ENV{SMB_CONF_PATH
} = $conffile;
523 sub write_clientconf
($$$)
525 my ($conffile, $clientdir, $vars) = @_;
527 mkdir("$clientdir", 0777) unless -d
"$clientdir";
529 if ( -d
"$clientdir/private" ) {
530 unlink <$clientdir/private/*>;
532 mkdir("$clientdir/private", 0777);
535 if ( -d
"$clientdir/bind-dns" ) {
536 unlink <$clientdir/bind-dns/*>;
538 mkdir("$clientdir/bind-dns", 0777);
541 if ( -d
"$clientdir/lockdir" ) {
542 unlink <$clientdir/lockdir/*>;
544 mkdir("$clientdir/lockdir", 0777);
547 if ( -d
"$clientdir/statedir" ) {
548 unlink <$clientdir/statedir/*>;
550 mkdir("$clientdir/statedir", 0777);
553 if ( -d
"$clientdir/cachedir" ) {
554 unlink <$clientdir/cachedir/*>;
556 mkdir("$clientdir/cachedir", 0777);
559 # this is ugly, but the ncalrpcdir needs exactly 0755
560 # otherwise tests fail.
563 if ( -d
"$clientdir/ncalrpcdir/np" ) {
564 unlink <$clientdir/ncalrpcdir/np
/*>;
565 rmdir "$clientdir/ncalrpcdir/np";
567 if ( -d
"$clientdir/ncalrpcdir" ) {
568 unlink <$clientdir/ncalrpcdir/*>;
569 rmdir "$clientdir/ncalrpcdir";
571 mkdir("$clientdir/ncalrpcdir", 0755);
574 my $cadir = "$ENV{SRCDIR_ABS}/selftest/manage-ca/CA-samba.example.com";
575 my $cacert = "$cadir/Public/CA-samba.example.com-cert.pem";
576 my $cacrl_pem = "$cadir/Public/CA-samba.example.com-crl.pem";
577 my $ca_users_dir = "$cadir/Users";
579 if ( -d
"$clientdir/pkinit" ) {
580 unlink <$clientdir/pkinit/*>;
582 mkdir("$clientdir/pkinit", 0700);
585 # each user has a USER-${USER_PRINCIPAL_NAME}-cert.pem and
586 # USER-${USER_PRINCIPAL_NAME}-private-key.pem symlink
587 # We make a copy here and make the certificated easily
588 # accessable in the client environment.
591 opendir USERS
, "${ca_users_dir}" or die "Could not open dir '${ca_users_dir}': $!";
592 for my $d (readdir USERS
) {
593 my $user_dir = "${ca_users_dir}/${d}";
594 next if ${d
} =~ /^\./;
595 next if (! -d
"${user_dir}");
596 opendir USER
, "${user_dir}" or die "Could not open dir '${user_dir}': $!";
597 for my $l (readdir USER
) {
598 my $user_link = "${user_dir}/${l}";
599 next if ${l
} =~ /^\./;
600 next if (! -l
"${user_link}");
602 my $dest = "${clientdir}/pkinit/${l}";
603 Samba
::copy_file_content
(${user_link
}, ${dest
});
610 open(CF
, ">$conffile");
611 print CF
"[global]\n";
612 print CF
"\tnetbios name = client\n";
613 if (defined($vars->{DOMAIN
})) {
614 print CF
"\tworkgroup = $vars->{DOMAIN}\n";
616 if (defined($vars->{REALM
})) {
617 print CF
"\trealm = $vars->{REALM}\n";
619 if ($opt_socket_wrapper) {
620 print CF
"\tinterfaces = $interfaces\n";
623 private dir = $clientdir/private
624 binddns dir = $clientdir/bind-dns
625 lock dir = $clientdir/lockdir
626 state directory = $clientdir/statedir
627 cache directory = $clientdir/cachedir
628 ncalrpc dir = $clientdir/ncalrpcdir
629 panic action = $RealBin/gdb_backtrace \%d
631 notify:inotify = false
633 system:anonymous = true
634 client lanman auth = Yes
636 torture:basedir = $clientdir
637 #We don't want to pass our self-tests if the PAC code is wrong
638 gensec:require_pac = true
639 #We don't want to run 'speed' tests for very long
640 torture:timelimit = 1
641 winbind separator = /
642 tls cafile = ${cacert}
643 tls crlfile = ${cacrl_pem}
644 tls verify peer = no_check
645 include system krb5 conf = no
652 sub should_run_test
($)
658 for (my $i=0; $i <= $#tests; $i++) {
659 if ($name =~ /$tests[$i]/i) {
671 open(IN
, $filename) or die("Unable to open $filename: $!");
674 if (/-- TEST(-LOADLIST|) --\n/) {
675 my $supports_loadlist = (defined($1) and $1 eq "-LOADLIST");
681 if ($supports_loadlist) {
683 $loadlist =~ s/\n//g;
687 if (should_run_test
($name) == 1) {
688 push (@ret, [$name, $env, $cmdline, $loadlist]);
694 close(IN
) or die("Error creating recipe from $filename");
698 if ($#testlists == -1) {
699 die("No testlists specified");
702 $ENV{SELFTEST_PREFIX
} = "$prefix_abs";
703 $ENV{SELFTEST_TMPDIR
} = "$tmpdir_abs";
704 $ENV{TMPDIR
} = "$tmpdir_abs";
705 $ENV{TEST_DATA_PREFIX
} = "$tmpdir_abs";
706 if ($opt_socket_wrapper) {
707 $ENV{SELFTEST_INTERFACES
} = $interfaces;
709 $ENV{SELFTEST_INTERFACES
} = "";
712 $ENV{SELFTEST_QUICK
} = "1";
714 $ENV{SELFTEST_QUICK
} = "";
716 $ENV{SELFTEST_MAXTIME
} = $torture_maxtime;
718 my $selftest_krbt_ccache_path = "$tmpdir_abs/selftest.krb5_ccache";
719 $ENV{KRB5CCNAME
} = "FILE:${selftest_krbt_ccache_path}.global";
722 foreach my $fn (@testlists) {
723 foreach (read_testlist
($fn)) {
725 next if (@includes and not defined(find_in_list
(\
@includes, $name)));
726 push (@available, $_);
730 my $restricted = undef;
731 my $restricted_used = {};
733 if ($opt_load_list) {
735 open(LOAD_LIST
, "<$opt_load_list") or die("Unable to open $opt_load_list");
736 while (<LOAD_LIST
>) {
738 push (@
$restricted, $_);
743 my $individual_tests = undef;
744 $individual_tests = {};
746 foreach my $testsuite (@available) {
747 my $name = $$testsuite[0];
748 my $skipreason = skip
(@
$testsuite);
749 if (defined($restricted)) {
750 # Find the testsuite for this test
752 foreach my $r (@
$restricted) {
754 $individual_tests->{$name} = [];
756 $restricted_used->{$r} = 1;
757 } elsif (substr($r, 0, length($name)+1) eq "$name.") {
758 push(@
{$individual_tests->{$name}}, $r);
760 $restricted_used->{$r} = 1;
764 if (defined($skipreason)) {
766 Subunit
::skip_testsuite
($name, $skipreason);
769 push(@todo, $testsuite);
772 } elsif (defined($skipreason)) {
774 Subunit
::skip_testsuite
($name, $skipreason);
777 push(@todo, $testsuite);
781 if (defined($restricted)) {
782 foreach (@
$restricted) {
783 unless (defined($restricted_used->{$_})) {
784 print "No test or testsuite found matching $_\n";
787 } elsif ($#todo == -1) {
788 print STDERR
"No tests to run\n";
792 my $suitestotal = $#todo + 1;
795 Subunit
::progress
($suitestotal);
796 Subunit
::report_time
();
802 my %running_envs = ();
804 sub get_running_env
($)
812 return $running_envs{$envname};
815 my @exported_envvars = (
822 # stuff related to a trusted domain
833 # domain controller stuff
843 "MEMBER_SERVER_IPV6",
844 "MEMBER_NETBIOSNAME",
845 "MEMBER_NETBIOSALIAS",
847 # rpc proxy controller stuff
849 "RPC_PROXY_SERVER_IP",
850 "RPC_PROXY_SERVER_IPV6",
851 "RPC_PROXY_NETBIOSNAME",
852 "RPC_PROXY_NETBIOSALIAS",
854 # domain controller stuff for Vampired DC
856 "VAMPIRE_DC_SERVER_IP",
857 "VAMPIRE_DC_SERVER_IPV6",
858 "VAMPIRE_DC_NETBIOSNAME",
859 "VAMPIRE_DC_NETBIOSALIAS",
861 # domain controller stuff for RODC
864 "RODC_DC_SERVER_IPV6",
865 "RODC_DC_NETBIOSNAME",
867 # domain controller stuff for FL 2000 Vampired DC
868 "VAMPIRE_2000_DC_SERVER",
869 "VAMPIRE_2000_DC_SERVER_IP",
870 "VAMPIRE_2000_DC_SERVER_IPV6",
871 "VAMPIRE_2000_DC_NETBIOSNAME",
872 "VAMPIRE_2000_DC_NETBIOSALIAS",
874 "PROMOTED_DC_SERVER",
875 "PROMOTED_DC_SERVER_IP",
876 "PROMOTED_DC_SERVER_IPV6",
877 "PROMOTED_DC_NETBIOSNAME",
878 "PROMOTED_DC_NETBIOSALIAS",
895 # UID/GID for rfc2307 mapping tests
902 "SELFTEST_WINBINDD_SOCKET_DIR",
908 "UNACCEPTABLE_PASSWORD",
913 "NSS_WRAPPER_PASSWD",
916 "NSS_WRAPPER_HOSTNAME",
917 "NSS_WRAPPER_MODULE_SO_PATH",
918 "NSS_WRAPPER_MODULE_FN_PREFIX",
921 "RESOLV_WRAPPER_CONF",
922 "RESOLV_WRAPPER_HOSTS",
929 $SIG{INT
} = $SIG{QUIT
} = $SIG{TERM
} = 'DEFAULT';
930 $SIG{PIPE
} = 'IGNORE';
932 open(STDOUT
, ">&STDERR") or die "can't dup STDOUT to STDERR: $!";
934 print "$0: PID[$$]: Got SIG${signame} teardown environments.\n";
935 teardown_env
($_) foreach(keys %running_envs);
936 system("pstree -p $$");
937 print "$0: PID[$$]: Exiting...\n";
941 $SIG{INT
} = $SIG{QUIT
} = $SIG{TERM
} = $SIG{PIPE
} = \
&sighandler
;
945 my ($name, $prefix) = @_;
947 my $testenv_vars = undef;
953 $option =~ s/^[^:]*//;
956 $option = "client" if $option eq "";
958 # Initially clear out the environment for the provision, so previous envs'
959 # variables don't leak in. Provisioning steps must explicitly set their
960 # necessary variables when calling out to other executables
961 foreach (@exported_envvars) {
964 delete $ENV{SOCKET_WRAPPER_DEFAULT_IFACE
};
965 delete $ENV{SMB_CONF_PATH
};
967 $ENV{KRB5CCNAME
} = "FILE:${selftest_krbt_ccache_path}.${envname}/ignore";
969 if (defined(get_running_env
($envname))) {
970 $testenv_vars = get_running_env
($envname);
971 if (not $testenv_vars->{target
}->check_env($testenv_vars)) {
972 print $testenv_vars->{target
}->getlog_env($testenv_vars);
973 $testenv_vars = undef;
976 $testenv_vars = $target->setup_env($envname, $prefix);
977 if (defined($testenv_vars) and $testenv_vars eq "UNKNOWN") {
978 return $testenv_vars;
979 } elsif (defined($testenv_vars) && not defined($testenv_vars->{target
})) {
980 $testenv_vars->{target
} = $target;
982 if (not defined($testenv_vars)) {
983 warn("$opt_target can't start up known environment '$envname'");
987 return undef unless defined($testenv_vars);
989 $running_envs{$envname} = $testenv_vars;
991 if ($option eq "local") {
992 SocketWrapper
::set_default_iface
($testenv_vars->{SOCKET_WRAPPER_DEFAULT_IFACE
});
993 $ENV{SMB_CONF_PATH
} = $testenv_vars->{SERVERCONFFILE
};
994 } elsif ($option eq "client") {
995 SocketWrapper
::set_default_iface
(11);
996 write_clientconf
($conffile, $clientdir, $testenv_vars);
997 $ENV{SMB_CONF_PATH
} = $conffile;
999 die("Unknown option[$option] for envname[$envname]");
1002 foreach (@exported_envvars) {
1003 if (defined($testenv_vars->{$_})) {
1004 $ENV{$_} = $testenv_vars->{$_};
1010 my $krb5_ccache_path = "${selftest_krbt_ccache_path}.${envname}.${option}";
1011 unlink($krb5_ccache_path);
1012 $ENV{KRB5CCNAME
} = "FILE:${krb5_ccache_path}";
1013 return $testenv_vars;
1016 sub exported_envvars_str
($)
1018 my ($testenv_vars) = @_;
1021 foreach (@exported_envvars) {
1022 next unless defined($testenv_vars->{$_});
1023 $out .= $_."=".$testenv_vars->{$_}."\n";
1032 return "" if ($envname eq "none");
1033 my $env = get_running_env
($envname);
1034 return $env->{target
}->getlog_env($env);
1040 my $env = get_running_env
($envname);
1041 return $env->{target
}->check_env($env);
1047 return if ($envname eq "none");
1048 print STDERR
"teardown_env($envname)\n";
1049 my $env = get_running_env
($envname);
1050 $env->{target
}->teardown_env($env);
1051 delete $running_envs{$envname};
1054 # This 'global' file needs to be empty when we start
1055 unlink("$prefix_abs/dns_host_file");
1056 unlink("$prefix_abs/hosts");
1058 if ($opt_random_order) {
1060 my @newtodo = List
::Util
::shuffle
(@todo);
1065 my $testenv_name = $ENV{SELFTEST_TESTENV
};
1066 $testenv_name = $testenv_default unless defined($testenv_name);
1068 my $testenv_vars = setup_env
($testenv_name, $prefix);
1070 if (not $testenv_vars or $testenv_vars eq "UNKNOWN") {
1071 die("Unable to setup environment $testenv_name");
1074 $ENV{PIDDIR
} = $testenv_vars->{PIDDIR
};
1075 $ENV{ENVNAME
} = $testenv_name;
1077 my $envvarstr = exported_envvars_str
($testenv_vars);
1079 my @term_args = ("echo -e \"
1080 Welcome to the Samba4 Test environment '$testenv_name'
1082 This matches the client environment used in make test
1083 server is pid `cat \$PIDDIR/samba.pid`
1085 Some useful environment variables:
1086 TORTURE_OPTIONS=\$TORTURE_OPTIONS
1087 SMB_CONF_PATH=\$SMB_CONF_PATH
1090 \" && LD_LIBRARY_PATH=$ENV{LD_LIBRARY_PATH} bash");
1092 if ($ENV{TERMINAL
}) {
1093 @term = ($ENV{TERMINAL
});
1095 @term = ("xterm", "-e");
1096 unshift(@term_args, ("bash", "-c"));
1099 system(@term, @term_args);
1101 teardown_env
($testenv_name);
1102 } elsif ($opt_list) {
1105 my $envname = $$_[1];
1107 my $listcmd = $$_[3];
1109 unless (defined($listcmd)) {
1110 warn("Unable to list tests in $name");
1111 # Rather than ignoring this testsuite altogether, just pretend the entire testsuite is
1120 die("Unable to run $listcmd: $!");
1121 } elsif ($?
& 127) {
1122 die(sprintf("%s died with signal %d, %s coredump\n", $listcmd, ($?
& 127), ($?
& 128) ?
'with' : 'without'));
1125 my $exitcode = $?
>> 8;
1126 if ($exitcode != 0) {
1127 die("$cmd exited with exit code $exitcode");
1135 my $envname = $$_[1];
1136 my $envvars = setup_env
($envname, $prefix);
1138 if (not defined($envvars)) {
1139 Subunit
::start_testsuite
($name);
1140 Subunit
::end_testsuite
($name, "error",
1141 "unable to set up environment $envname - exiting");
1143 } elsif ($envvars eq "UNKNOWN") {
1144 Subunit
::start_testsuite
($name);
1145 Subunit
::end_testsuite
($name, "error",
1146 "environment $envname is unknown - exiting");
1150 # Generate a file with the individual tests to run, if the
1151 # test runner for this test suite supports it.
1152 if ($individual_tests and $individual_tests->{$name}) {
1154 my ($fh, $listid_file) = tempfile
(UNLINK
=> 0);
1155 foreach my $test (@
{$individual_tests->{$name}}) {
1156 print $fh substr($test, length($name)+1) . "\n";
1158 $cmd =~ s/\$LOADLIST/--load-list=$listid_file/g;
1160 warn("Unable to run individual tests in $name, it does not support --loadlist.");
1164 run_testsuite
($envname, $name, $cmd, $i, $suitestotal);
1166 teardown_env
($envname) if ($opt_resetup_env);
1172 teardown_env
($_) foreach (keys %running_envs);
1176 # if there were any valgrind failures, show them
1177 foreach (<$prefix/valgrind
.log*>) {
1178 next unless (-s
$_);
1179 print "VALGRIND FAILURE\n";