1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
|
#!/usr/bin/env perl
use warnings;
use strict;
use File::Spec;
use File::Basename;
use lib qw(tests lib);
# test env at home
$ENV{PERL5LIB} .= qw(:/home/markov/shared/perl/IMAPClient/lib)
if $ENV{MARKOV_DEVEL};
delete $ENV{PERLIO};
use Config;
use Tools; # test tools
use Mail::Reporter; # to avoid 'too late for INIT'
use IO::Dir;
use TAP::Harness ();
use TAP::Parser::Aggregator ();
# we use Test::More without a plan here, but we don't want
# Test::Builder to mess with the exit code
Test::More->builder->no_ending(1);
chdir 'tests' ##### CHANGE DIR TO tests
or die "Cannot go to test scripts directory: $!\n";
my $verbose = 0;
if(@ARGV && $ARGV[0] eq '-v')
{ $verbose = 1;
shift @ARGV;
}
my $select_tests;
if(@ARGV)
{ my $pat = join '|', @ARGV;
$select_tests = qr/$pat/o;
}
# The versions of the following packages are reported to help understanding
# the environment in which the tests are run. This is certainly not a
# full list of all installed modules.
my @show_versions = defined $select_tests ? ()
: qw/Mail::Box Mail::Box::Parser::C
User::Identity Object::Realize::Later MIME::Types
TAP::Harness Encode MIME::Entity Mail::Internet HTML::FormatText
/;
my $skip_tests = -f 'skiptests' || -f '../skiptests'
|| ($ENV{MAILBOX_RUN_TESTS} || 'yes') eq 'no';
#warn "SKIP? ", (-f 'skiptests' ? 'Y' : 'N'), (-f '../skiptests' ? 'Y' : 'N'),
# "#$ENV{MAILBOX_RUN_TESTS}#", `pwd`;
sub package_of($);
sub testnames($);
sub run_in_harness(@);
sub report();
sub dl_format($@);
warn <<'WARN' unless $select_tests;
*
* Testing MailBox
WARN
if($skip_tests)
{ warn <<'WARN';
* Tests are disabled, because you said so when the Makefile was created.
* remove the file "skiptests" if you want to run them and/or clear
* environment variable MAILBOX_RUN_TESTS
*
WARN
exit 0;
}
warn <<'WARN' unless $select_tests;
*
* Sometimes installing MailBox breaks because of the huge size
* of the whole package. Simply restarting the installation is in
* most cases enough to solve the problems. You may require a new
* version of ExtUtils::MakeMaker.
*
* On *Windows* you will get a large number of failing tests, but they
* are usually harmless. Please help me to get rit of them.
*
WARN
warn "Running on $^O ($Config{archname} $Config{osvers}), with Perl $]\n";
foreach my $package (@show_versions)
{ eval "require $package";
my $report
= !$@ ? "version ". ($package->VERSION || 'unknown')
: $@ =~ m/^Can't locate/ ? "not installed"
: "reports error";
warn "$package $report\n";
}
warn "\n";
#
# Get all the test-sets.
#
my $testdir = '.';
my $setdir = IO::Dir->new($testdir);
die "Cannot open directory $testdir: $!"
unless $setdir;
my @sets = sort grep { /^\d/ && -d File::Spec->catfile($testdir, $_) }
$setdir->read;
$setdir->close;
my (%success, %skipped);
my $tests_run = 0;
foreach my $set (@sets)
{
my $script = File::Spec->catfile($testdir, $set, 'Definition.pm');
eval "require '$script'";
if($@)
{ warn "Errors while requiring $script:\n$@";
next;
}
my $package = package_of $set;
if(my $reason = $package->skip)
{ $skipped{$set} = $reason;
printf "%-15s -- %s\n", $set, $reason;
next;
}
my @tests = testnames $set;
@tests = grep { $_ =~ $select_tests } @tests
if defined $select_tests;
if(@tests)
{ printf "%-15.15s -- %d %s %s\n", $set, scalar @tests,
(@tests==1 ? "script; " : "scripts;"), $package->name;
}
elsif(defined $select_tests) { ; } # silence
else
{ printf "%-15.15s -- skip all tests for %s\n", $set, $package->name;
}
next unless @tests;
$success{$set} = run_in_harness @tests;
$tests_run += @tests;
}
my $critical = $tests_run ? report : 0;
exit $critical;
#
# PACKAGE_OF SET
# Returns the name of the package which contains details about the test-set.
#
sub package_of($) { "MailBox::Test::$_[0]::Definition" }
#
# TESTNAMES SET
# Returns a list of all the test for a certain test-set.
#
sub testnames($)
{ my $set = shift;
my $dirname = File::Spec->catdir($testdir, $set);
my $dir = IO::Dir->new($dirname)
or return ();
sort
map { File::Spec->catfile($dirname, $_) }
grep /\.t$/, $dir->read;
}
#
# RUN_IN_HARNESS @files
# Run the specified test files in a harness, but then the MailBox
# way doing things.
#
sub run_in_harness(@)
{ my @files = @_;
return 1 unless @files;
# cannot use $harness->runtests() because it always shows summary
my $harness = TAP::Harness->new( {verbosity => ($verbose ? 1 : 0)} );
my $aggregate = TAP::Parser::Aggregator->new;
$harness->aggregate_tests($aggregate, @files);
not $aggregate->has_problems;
}
#
# PRINT_REPORT
#
sub report()
{
print "--- Test report\n";
my @success = sort grep {$success{$_}} keys %success;
local $" = ', ';
dl_format(Success => @success) if @success;
my @failed;
my $critical = 0;
foreach my $set (sort grep {not $success{$_}} keys %success)
{ push @failed, $set;
my $package = package_of $set;
if($package->critical)
{ $failed[-1] .= '(*)';
$critical++;
}
}
dl_format(Failure => @failed) if @failed;
print " Marked (*) are critical errors.\n" if $critical;
my @skipped = sort keys %skipped;
dl_format(Skipped => @skipped) if @skipped;
$critical;
}
#
# DL_FORMAT DT, DD-LIST
# Print in an HTML description-list fashion, with $" between the elements.
#
sub dl_format($@)
{ my $line = (shift) . ': ';
my $elem = shift;
while(defined $elem)
{ $elem .= $" if @_;
if(length($line) + length($elem) > 72)
{ print "$line\n";
$line = " ";
}
$line .= $elem;
$elem = shift;
}
print "$line\n" if $line =~ /[^ ]/;
}
|