App-CamelPKI
view release on metacpan or search on metacpan
t/maintainer/dependencies.t view on Meta::CPAN
intended for running on the maintainer's system.
=cut
BEGIN {
my $errors;
foreach my $use (qw(Test::More File::Spec File::Slurp
File::Find Module::ScanDeps IO::File)) {
$errors .= $@ unless eval "use $use; 1";
}
if ($errors) {
plan(skip_all => "Some modules are missing "
. "in order to run this test");
warn $errors if $ENV{DEBUG};
exit;
}
}
plan tests => 3;
=pod
=head1 TWEAKABLES
=head2 %is_subpackage_of
A hash table that associates dependent packages
(e.g. C<DBIx::Class::Schema>, C<Catalyst::Controller>) to the
canonical top-level package in their distribution
(e.g. C<DBIx::Class>, C<Catalyst>). Requirements and dependencies
that name a key in %is_subpackage_of will be treated as though they
were the corresponding value instead.
=cut
# FIXME: use Module::Depends or some such to compute this
# automatically.
our %is_subpackage_of =
( "Catalyst::Controller" => "Catalyst",
"Catalyst::View" => "Catalyst",
"Catalyst::Model" => "Catalyst",
"Catalyst::Runtime" => "Catalyst",
"Catalyst::Utils" => "Catalyst",
"Catalyst::Action" => "Catalyst",
"Catalyst::Test" => "Catalyst",
"DBIx::Class::Schema" => "DBIx::Class",
"DateTime::Duration" => "DateTime",
);
=head2 @pervasives
The list of modules that can be assumed to always be present
regardless of the version of Perl, and need not be checked for. By
default only pragmatic modules (starting with a lowercase letter) and
modules that already were in 5.000 according to L<Module::CoreList>
are listed.
=cut
our @pervasives = qw(base warnings strict overload utf8 vars constant
Exporter Data::Dumper Carp
Getopt::Std Getopt::Long
DynaLoader ExtUtils::MakeMaker
POSIX Fcntl Cwd Sys::Hostname
IPC::Open2 IPC::Open3
File::Basename File::Find);
=head2 @maintainer_dependencies
The list of modules that are used in C<t/maintainer>, and for which
there should be provisions to bail out cleanly if they are missing (as
demonstrated at the top of this very test script). Provided such
modules are not listed as dependencies outside of C<t/maintainer>,
they will be ignored.
=cut
our @maintainer_dependencies = qw(Pod::Text Test::Pod Test::Pod::Coverage
Test::NoBreakpoints Module::ScanDeps
IO::File);
=head2 @sunken_dependencies
Put in there any modules that can get required without our crude
source code parser being able to spot them.
=cut
our @sunken_dependencies =
("Catalyst::Engine::Apache", # Required by simply running under mod_perl
);
=head2 @ignore
Put any other modules that cause false positives in there. Consider
adding them to Build.PL instead, or rewriting your source code in a
more contrived way so that L<Module::ScanDeps> won't spot them
anymore.
=cut
our @ignore = ("IO", # False positive by Module::ScanDeps
);
=head1 IMPLEMENTATION
We load the C<Build> script so as to be able to enumerate the
dependencies and call I<<find_pm_files()> and I<<find_test_files()>>
on it.
=cut
my $buildcode = read_file("Build");
die "Cannot read Build: $!" if ! defined $buildcode;
$buildcode =~ s|\$build->dispatch|\$build|g;
our $build = eval <<"STUFF"; die $@ if $@;
no warnings "redefine";
local *Module::Build::Base::up_to_date = sub {1}; # Shuts warning
$buildcode
STUFF
( run in 1.396 second using v1.01-cache-2.11-cpan-5a3173703d6 )