/usr/lib/perl5/Devel/Cover/Test.pm is in libdevel-cover-perl 1.08-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 | # Copyright 2002-2013, Paul Johnson (paul@pjcj.net)
# This software is free. It is licensed under the same terms as Perl itself.
# The latest version of this software should be available from my homepage:
# http://www.pjcj.net
package Devel::Cover::Test;
use strict;
use warnings;
our $VERSION = '1.08'; # VERSION
use Carp;
use File::Spec;
use Test ();
use Devel::Cover::Inc;
sub new
{
my $class = shift;
my $test = shift;
croak "No test specified" unless $test;
my %params = @_;
my $criteria = delete $params{criteria} ||
"statement branch condition subroutine";
eval "use Test::Differences";
my $differences = $INC{"Test/Differences.pm"};
my $self = bless
{
test => $test,
criteria => [ $criteria ],
skip => "",
uncoverable_file => [],
select => "",
ignore => [],
changes => [],
test_parameters => [],
debug => $ENV{DEVEL_COVER_DEBUG} || 0,
differences => $differences,
no_coverage => $ENV{DEVEL_COVER_NO_COVERAGE} || 0,
%params
}, $class;
$self->get_params
}
sub shell_quote
{
my ($item) = @_;
$^O eq "MSWin32" ? (/ / and $_ = qq("$_")) : s/ /\\ /g for $item;
$item
};
sub get_params
{
my $self = shift;
my $test = $self->test_file;
if (open T, $test)
{
while (<T>)
{
push @{$self->{$1}}, $2 if /__COVER__\s+(\w+)\s+(.*)/;
}
close T or die "Cannot close $test: $!";
}
$self->{criteria} = $self->{criteria}[-1];
$self->{select} ||= "-select /tests/$self->{test}\\b";
$self->{test_parameters} = "$self->{select}"
. " -ignore blib Devel/Cover @{$self->{ignore}}"
. " -merge 0 -coverage $self->{criteria} "
. "@{$self->{test_parameters}}";
$self->{criteria} =~ s/-\w+//g;
$self->{cover_db} = "$Devel::Cover::Inc::Base/t/e2e/"
. "cover_db_$self->{test}/";
unless (mkdir $self->{cover_db})
{
die "Can't mkdir $self->{cover_db}: $!" unless -d $self->{cover_db};
}
$self->{cover_parameters} = join(" ", map "-coverage $_",
split " ", $self->{criteria})
. " -report text "
. shell_quote $self->{cover_db};
$self->{cover_parameters} .= " -uncoverable_file "
. "@{$self->{uncoverable_file}}"
if @{$self->{uncoverable_file}};
if (exists $self->{skip_test})
{
for my $s (@{$self->{skip_test}})
{
my $r = shift @{$self->{skip_reason}};
next unless eval "{$s}";
$self->{skip} = $r;
last;
}
}
$self
}
sub perl
{
my $self = shift;
join " ",
map shell_quote($_),
$Devel::Cover::Inc::Perl,
map "-I$Devel::Cover::Inc::Base/$_", "", "blib/lib", "blib/arch"
}
sub test_command
{
my $self = shift;
my $c = $self->perl;
unless ($self->{no_coverage})
{
$c .= " "
. shell_quote "-MDevel::Cover=" .
join(",", "-db", $self->{cover_db},
split " ", $self->{test_parameters});
}
$c .= " " . shell_quote $self->test_file;
$c .= " " . $self->test_file_parameters;
$c
}
sub cover_command
{
my $self = shift;
my $b = shell_quote $Devel::Cover::Inc::Base;
my $c = $self->perl . " $b/bin/cover $self->{cover_parameters}";
$c
}
sub test_file
{
my $self = shift;
"$Devel::Cover::Inc::Base/tests/$self->{test}"
}
sub test_file_parameters
{
my $self = shift;
exists $self->{test_file_parameters} ? $self->{test_file_parameters} : ""
}
sub cover_gold
{
my $self = shift;
my $test = $self->{golden_test} || $self->{test};
my $td = "$Devel::Cover::Inc::Base/test_output/cover";
opendir D, $td or die "Can't opendir $td: $!";
my @versions = sort { $a <=> $b }
map { /^$test\.(5\.\d+)$/ ? $1 : () }
readdir D;
closedir D or die "Can't closedir $td: $!";
my $v = "5.0";
for (@versions)
{
last if $_ > $];
$v = $_;
}
# die "Can't find golden results for $test" if $v eq "5.0";
$v = $ENV{DEVEL_COVER_GOLDEN_VERSION}
if exists $ENV{DEVEL_COVER_GOLDEN_VERSION};
("$td/$test", $v eq "5.0" ? 0 : $v)
}
sub run_command
{
my $self = shift;
my ($command) = @_;
print STDERR "Running test [$command]\n" if $self->{debug};
open T, "$command 2>&1 |" or die "Cannot run $command: $!";
while (<T>)
{
print STDERR if $self->{debug};
}
close T or die "Cannot close $command: $!";
1
}
sub run_test
{
my $self = shift;
if ($self->{skip})
{
Test::plan tests => 1;
Test::skip($self->{skip}, 1);
return;
}
my $version = int(($] - 5) * 1000 + 0.5);
if ($version % 2 && $version < 18)
{
Test::plan tests => 1;
Test::skip("Perl version $] is an obsolete development version", 1);
return;
}
if ($] > 5.019001 && $] < 5.019004)
{
Test::plan tests => 1;
Test::skip("Perl version $] contains a bug which causes this test " .
"to fail", 1);
return;
}
my ($base, $v) = $self->cover_gold;
return 1 unless $v; # assume we are generating the golden results
my $gold = "$base.$v";
open I, $gold or die "Cannot open $gold: $!";
my @cover = <I>;
close I or die "Cannot close $gold: $!";
$self->{cover} = \@cover;
# print STDERR "gold from $gold\n", @cover if $self->{debug};
Test::plan tests => $self->{differences}
? 1
: exists $self->{tests}
? $self->{tests}->(scalar @cover)
: scalar @cover;
local $ENV{PERL5OPT};
$self->{run_test}
? $self->{run_test}->($self)
: $self->run_command($self->test_command);
$self->run_cover unless $self->{no_report};
$self->{end}->() if $self->{end};
1
}
sub run_cover
{
my $self = shift;
my $cover_com = $self->cover_command;
print STDERR "Running cover [$cover_com]\n" if $self->{debug};
my @at;
my @ac;
my $change_line = sub
{
my ($get_line) = @_;
local *_;
LOOP:
while (1)
{
$_ = scalar $get_line->();
$_ = "" unless defined $_;
print STDERR $_ if $self->{debug};
redo if /^Devel::Cover: merging run/;
redo if /^Set up gcc environment/; # for MinGW
if (/Can't opendir\(.+\): No such file or directory/)
{
# parallel tests
scalar $get_line->();
redo;
}
s/^(Reading database from ).*/$1/;
s|(__ANON__\[) .* (/tests/ \w+ : \d+ \])|$1$2|x;
s/(Subroutine) +(Location)/$1 $2/;
s/-+/-/;
# s/.* Devel-Cover - \d+ \. \d+ \/*(\S+)\s*/$1/x;
s/^ \.\.\. .* - \d+ \. \d+ \/*(\S+)\s*/$1/x;
s/.* Devel \/ Cover \/*(\S+)\s*/$1/x;
s/^(Devel::Cover: merging run).*/$1/;
s/^(Run: ).*/$1/;
s/^(OS: ).*/$1/;
s/^(Perl version: ).*/$1/;
s/^(Start: ).*/$1/;
s/^(Finish: ).*/$1/;
s/copyright .*//ix;
no warnings "exiting";
eval join "; ", @{$self->{changes}};
return $_;
}
};
# use Devel::Cover::Dumper; print STDERR "--->", Dumper $self->{changes};
open T, "$cover_com 2>&1 |" or die "Cannot run $cover_com: $!";
while (!eof T)
{
my $t = $change_line->(sub { <T> });
my $c = $change_line->(sub { shift @{$self->{cover}} });
# print STDERR "[$t]\n[$c]\n" if $t ne $c;
do
{
chomp(my $tn = $t); chomp(my $cn = $c);
print STDERR "c-[$tn] $.\ng=[$cn]\n";
} if $self->{debug};
if ($self->{differences})
{
push @at, $t;
push @ac, $c;
}
else
{
$self->{no_coverage} ? Test::ok 1 : Test::ok $t, $c;
last if $self->{no_coverage} && !@{$self->{cover}};
}
}
if ($self->{differences})
{
no warnings "redefine";
local *Test::_quote = sub { "@_" };
$self->{no_coverage} ? Test::ok 1 : eq_or_diff(\@at, \@ac, "output");
}
elsif ($self->{no_coverage})
{
Test::ok 1 for @{$self->{cover}};
}
close T or die "Cannot close $cover_com: $!";
1
}
sub create_gold
{
my $self = shift;
# Pod::Coverage not available on all versions, but it must be there on
# 5.6.1 and 5.8.0
return if $self->{criteria} =~ /\bpod\b/ &&
$] != 5.006001 &&
$] != 5.008000;
my ($base, $v) = $self->cover_gold;
my $gold = "$base.$v";
my $new_gold = "$base.$]";
my $gv = $v;
my $ng = "";
unless (-e $new_gold)
{
open my $g, ">$new_gold" or die "Can't open $new_gold: $!";
unlink $new_gold;
}
# use Devel::Cover::Dumper; print STDERR Dumper $self;
if ($self->{skip})
{
print STDERR "Skipping: $self->{skip}\n";
return;
}
$self->{run_test}
? $self->{run_test}->($self)
: $self->run_command($self->test_command);
my $cover_com = $self->cover_command;
print STDERR "Running cover [$cover_com]\n" if $self->{debug};
open G, ">$new_gold" or die "Cannot open $new_gold: $!";
open T, "$cover_com 2>&1 |" or die "Cannot run $cover_com: $!";
while (my $l = <T>)
{
next if $l =~ /^Devel::Cover: merging run/;
$l =~ s/^($_: ).*$/$1.../
for "Run", "Perl version", "OS", "Start", "Finish";
$l =~ s/^(Reading database from ).*$/$1.../;
print STDERR $l if $self->{debug};
print G $l;
$ng .= $l;
}
close T or die "Cannot close $cover_com: $!";
close G or die "Cannot close $new_gold: $!";
print STDERR "gv is $gv and this is $]\n" if $self->{debug};
print STDERR "gold is $gold and new_gold is $new_gold\n" if $self->{debug};
unless ($gv eq "0" || $gv eq $])
{
open G, "$gold" or die "Cannot open $gold: $!";
my $g = do { local $/; <G> };
close G or die "Cannot close $gold: $!";
print STDERR "checking $new_gold against $gold\n" if $self->{debug};
# print "--[$ng]--\n";
# print "--[$g]--\n";
if ($ng eq $g)
{
print "matches $v";
unlink $new_gold;
}
}
$self->{end}->() if $self->{end};
1
}
1
__END__
=head1 NAME
Devel::Cover::Test - Internal module for testing
=head1 VERSION
version 1.08
=head1 METHODS
=cut
=head2 new
my $test = Devel::Cover::Test->new($test, criteria => $string)
Constructor.
"criteria" parameter (optional, defaults to "statement branch condition
subroutine") is a space separated list of tokens.
Supported tokens are "statement", "branch", "condition", "subroutine" and
"pod".
More optional parameters are supported. Refer to L</get_params> sub.
=head2 shell_quote
my $quoted_item = shell_quote($item)
Returns properly quoted item to cope with embedded spaces.
=head2 perl
my $perl = $self->perl()
Returns absolute path to Perl interpreter with proper -I options (blib-wise).
=head2 test_command
my $command = $self->test_command()
Returns test command, made of:
=over 4
=item absolute path to Perl interpreter
=item Devel::Cover -M option (if applicable)
=item test file
=item test file parameters (if applicable)
=back
=head2 cover_command
my $command = $self->cover_command()
Returns test command, made of:
=over 4
=item absolute path to Perl interpreter
=item absolute path to cover script
=item cover parameters
=back
=head2 test_file
my $file = $self->test_file()
Returns absolute path to test file.
=head2 test_file_parameters
my $parameters = $self->test_file_parameters()
Accessor to test_file_parameters property.
=head2 cover_gold
my ($base, $v) = $self->cover_gold;
Returns the absolute path of the base to the golden file and the suffix
version number.
$base comes from the name of the test and $v will be $] from the earliest perl
version for which the golden results should be the same as for the current $]
=head2 run_command
$self->run_command($command)
Runs command, most likely obtained from L</test_command> sub.
=head1 BUGS
Huh?
=head1 LICENCE
Copyright 2001-2013, Paul Johnson (paul@pjcj.net)
This software is free. It is licensed under the same terms as Perl itself.
The latest version of this software should be available from my homepage:
http://www.pjcj.net
=cut
|