/usr/share/perl5/Module/Install/ExtraTests.pm is in libmodule-install-extratests-perl 0.008-1.
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 | use strict;
use warnings;
use 5.006;
package Module::Install::ExtraTests;
use Module::Install::Base;
BEGIN {
our $VERSION = '0.008';
our $ISCORE = 1;
our @ISA = qw{Module::Install::Base};
}
our $use_extratests = 0;
sub extra_tests {
my ($self) = @_;
return unless -d 'xt';
return unless my @content = grep { $_ !~ /^[.]/ } <xt/*>;
die "unknown files found in ./xt" if grep { !-d } @content;
my %known = map {; "xt/$_" => 1 } qw(author smoke release);
my @unknown = grep { not $known{$_} } @content;
die "unknown directories found in ./xt: @unknown" if @unknown;
$use_extratests = 1;
return;
}
{
no warnings qw(once);
package # The newline tells PAUSE, "DO NOT INDEXING!"
MY;
sub test_via_harness {
my $self = shift;
return $self->SUPER::test_via_harness(@_)
unless $use_extratests;
my ($perl, $tests) = @_;
my $a_str = -d 'xt/author' ? 'xt/author' : '';
my $r_str = -d 'xt/release' ? 'xt/release' : '';
my $s_str = -d 'xt/smoke' ? 'xt/smoke' : '';
my $is_author = $Module::Install::AUTHOR ? 1 : 0;
return qq{\t$perl "-Iinc" "-MModule::Install::ExtraTests" }
. qq{"-e" "Module::Install::ExtraTests::__harness('Test::Harness', $is_author, '$a_str', '$r_str', '$s_str', \$(TEST_VERBOSE), '\$(INST_LIB)', '\$(INST_ARCHLIB)')" $tests\n};
}
sub dist_test {
my ($self, @args) = @_;
return $self->SUPER::dist_test(@args)
unless $use_extratests;
my $text = $self->SUPER::dist_test(@args);
my @lines = split /\n/, $text;
$_ =~ s/ (\S*MAKE\S* test )/ RELEASE_TESTING=1 $1 / for grep { m/ test / } @lines;
return join "\n", @lines;
}
}
sub __harness {
my $harness_class = shift;
my $is_author = shift;
my $author_tests = shift;
my $release_tests = shift;
my $smoke_tests = shift;
eval "require $harness_class; 1" or die;
require File::Spec;
my $verbose = shift;
eval "\$$harness_class\::verbose = $verbose; 1" or die;
# Because Windows doesn't do this for us and listing all the *.t files
# out on the command line can blow over its exec limit.
require ExtUtils::Command;
push @ARGV, __PACKAGE__->_deep_t($author_tests)
if $author_tests and (exists $ENV{AUTHOR_TESTING} ? $ENV{AUTHOR_TESTING} : $is_author);
push @ARGV, __PACKAGE__->_deep_t($release_tests)
if $release_tests and $ENV{RELEASE_TESTING};
push @ARGV, __PACKAGE__->_deep_t($smoke_tests)
if $smoke_tests and $ENV{AUTOMATED_TESTING};
my @argv = ExtUtils::Command::expand_wildcards(@ARGV);
local @INC = @INC;
unshift @INC, map { File::Spec->rel2abs($_) } @_;
$harness_class->can('runtests')->(sort { lc $a cmp lc $b } @argv);
}
sub _wanted {
my $href = shift;
no warnings 'once';
sub { /\.t$/ and -f $_ and $href->{$File::Find::dir} = 1 }
}
sub _deep_t {
my ($self, $dir) = @_;
require File::Find;
my %test_dir;
File::Find::find(_wanted(\%test_dir), $dir);
return map { "$_/*.t" } sort keys %test_dir;
}
1;
__END__
=head1 NAME
Module::Install::ExtraTests - contextual tests that the harness can ignore
=head1 VERSION
0.008
=head1 COMMANDS
This plugin adds one Module::Install command:
=head2 extra_tests
extra_tests;
This declares that the test files found in the directory F<./xt> should be run
only in certain instances:
./xt/author - run when the tests are being run in an author's working copy
./xt/smoke - run when the dist is being smoked (AUTOMATED_TESTING=1)
./xt/release - run during "make disttest"
These directories are recurisvely scanned for *.t files. If any directories or
files exist in F<./xt> that are not recognized, the Makefile.PL will die.
B<Achtung!> This is pretty scary, experimental code, mostly because it relies
on the pretty scary, non-experimental-but-seriously-sketchy underlying
customization system for ExtUtils::MakeMaker. I may remove this warning when
I've decided that this is stable enough, but until then:
HIC SUNT DRACONES
=head1 AUTHOR TESTS
"Is this being run by an author?" is determined internally by Module::Install,
but at the time of the writing of this version it's determined by the existence
of a directory called F<.author> in F<./inc>. (On VMS, it's F<_author>.) This
directory is created when Module::Install's F<Makefile.PL> is run in a
directory where no F<./inc> directory exists.
=head1 BUGS
Please report any bugs or feature requests through the web interface at
L<http://rt.cpan.org>. I will be notified, and then you'll automatically be
notified of progress on your bug as I make changes.
=head1 COPYRIGHT
Copyright 2008, Ricardo SIGNES. This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.
|