/usr/share/perl5/Dist/Zilla/Tester.pm is in libdist-zilla-perl 5.043-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 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 | package Dist::Zilla::Tester;
# ABSTRACT: a testing-enabling stand-in for Dist::Zilla
$Dist::Zilla::Tester::VERSION = '5.043';
use Moose;
extends 'Dist::Zilla::Dist::Builder';
# XXX: Adding this autoclean causes problem. "Builder" and "Minter" do not
# show in tests. I'm really not sure why. -- rjbs, 2011-08-19
# use namespace::autoclean;
use autodie;
use Dist::Zilla::Chrome::Test;
use File::pushd ();
use File::Spec;
use File::Temp;
use Path::Tiny 0.052;
use Sub::Exporter::Util ();
use Sub::Exporter -setup => {
exports => [
Builder => sub { $_[0]->can('builder') },
Minter => sub { $_[0]->can('minter') },
],
groups => [ default => [ qw(Builder Minter) ] ],
};
sub from_config {
my ($self, @arg) = @_;
# The only thing using a local time zone should be NextRelease. Normally it
# defaults to "local," but since some users won't have an automatically
# determinable time zone, we'll switch to not-local times for testing.
# -- rjbs, 2015-11-26
local $Dist::Zilla::Plugin::NextRelease::DEFAULT_TIME_ZONE = 'GMT';
return $self->builder->from_config(@arg);
}
sub builder { 'Dist::Zilla::Tester::_Builder' }
sub minter { 'Dist::Zilla::Tester::_Minter' }
{
package
Dist::Zilla::Tester::_Role;
use Moose::Role;
has tempdir_root => (
is => 'rw', isa => 'Str|Undef',
writer => '_set_tempdir_root',
);
has tempdir_obj => (
is => 'ro', isa => 'File::Temp::Dir',
clearer => '_clear_tempdir_obj',
writer => '_set_tempdir_obj',
);
sub DEMOLISH {}
around DEMOLISH => sub {
my $orig = shift;
my $self = shift;
# File::Temp deletes the directory when it goes out of scope
$self->_clear_tempdir_obj;
rmdir $self->tempdir_root if $self->tempdir_root;
return $self->$orig(@_);
};
has tempdir => (
is => 'ro',
writer => '_set_tempdir',
init_arg => undef,
);
sub clear_log_events {
my ($self) = @_;
$self->chrome->logger->clear_events;
}
sub log_events {
my ($self) = @_;
$self->chrome->logger->events;
}
sub log_messages {
my ($self) = @_;
[ map {; $_->{message} } @{ $self->chrome->logger->events } ];
}
sub slurp_file {
my ($self, $filename) = @_;
Path::Tiny::path(
$self->tempdir->file($filename)
)->slurp_utf8;
}
sub slurp_file_raw {
my ($self, $filename) = @_;
Path::Tiny::path(
$self->tempdir->file($filename)
)->slurp_raw;
}
sub _metadata_generator_id { 'Dist::Zilla::Tester' }
no Moose::Role;
}
{
package Dist::Zilla::Tester::_Builder;
$Dist::Zilla::Tester::_Builder::VERSION = '5.043';
use Moose;
extends 'Dist::Zilla::Dist::Builder';
with 'Dist::Zilla::Tester::_Role';
use File::Copy::Recursive qw(dircopy);
use Path::Class;
our $Log_Events = [];
sub most_recent_log_events {
return @{ $Log_Events }
}
around from_config => sub {
my ($orig, $self, $arg, $tester_arg) = @_;
confess "dist_root required for from_config" unless $arg->{dist_root};
my $source = $arg->{dist_root};
my $tempdir_root = exists $tester_arg->{tempdir_root}
? $tester_arg->{tempdir_root}
: 'tmp';
mkdir $tempdir_root if defined $tempdir_root and not -d $tempdir_root;
my $tempdir_obj = File::Temp->newdir(
CLEANUP => 1,
(defined $tempdir_root ? (DIR => $tempdir_root) : ()),
);
my $tempdir = dir($tempdir_obj)->absolute;
my $root = $tempdir->subdir('source');
$root->mkpath;
dircopy($source, $root);
if ($tester_arg->{also_copy}) {
while (my ($src, $dest) = each %{ $tester_arg->{also_copy} }) {
dircopy($src, $tempdir->subdir($dest));
}
}
if (my $files = $tester_arg->{add_files}) {
while (my ($name, $content) = each %$files) {
die "File name '$name' does not seem to be legal on the current OS"
if !path_looks_legal($name);
my $unix_name = Path::Class::File->new_foreign("Unix", $name);
my $fn = $tempdir->file($unix_name);
$fn->dir->mkpath;
Path::Tiny::path($fn)->spew_utf8($content);
}
}
local $arg->{dist_root} = "$root";
local $arg->{chrome} = Dist::Zilla::Chrome::Test->new;
$Log_Events = $arg->{chrome}->logger->events;
local @INC = map {; ref($_) ? $_ : File::Spec->rel2abs($_) } @INC;
local $ENV{DZIL_GLOBAL_CONFIG_ROOT};
$ENV{DZIL_GLOBAL_CONFIG_ROOT} = $tester_arg->{global_config_root}
if defined $tester_arg->{global_config_root};
my $zilla = $self->$orig($arg);
$zilla->_set_tempdir_root($tempdir_root);
$zilla->_set_tempdir_obj($tempdir_obj);
$zilla->_set_tempdir($tempdir);
return $zilla;
};
around build_in => sub {
my ($orig, $self, $target) = @_;
# XXX: We *must eliminate* the need for this! It's only here because right
# now building a dist with (root <> cwd) doesn't work. -- rjbs, 2010-03-08
my $wd = File::pushd::pushd($self->root);
$target ||= do {
my $target = dir($self->tempdir)->subdir('build');
$target->mkpath;
$target;
};
return $self->$orig($target);
};
around ['test', 'release'] => sub {
my ($orig, $self) = @_;
# XXX: We *must eliminate* the need for this! It's only here because right
# now building a dist with (root <> cwd) doesn't work. -- rjbs, 2010-03-08
my $wd = File::pushd::pushd($self->root);
return $self->$orig;
};
no Moose;
sub path_looks_legal {
return 1 if $^O eq "linux";
my ($path) = @_;
my $unix_path = Path::Class::File->new_foreign("Unix", $path)->stringify;
return 0 if $path ne $unix_path;
my $round_tripped = file($path)->as_foreign("Unix")->stringify;
return $path eq $round_tripped;
}
}
{
package Dist::Zilla::Tester::_Minter;
$Dist::Zilla::Tester::_Minter::VERSION = '5.043';
use Moose;
extends 'Dist::Zilla::Dist::Minter';
with 'Dist::Zilla::Tester::_Role';
use File::Copy::Recursive qw(dircopy);
use Path::Class;
our $Log_Events = [];
sub most_recent_log_events {
return @{ $Log_Events }
}
sub _mint_target_dir {
my ($self) = @_;
my $name = $self->name;
my $dir = $self->tempdir->subdir('mint')->absolute;
$self->log_fatal("$dir already exists") if -e $dir;
return $dir;
}
sub _setup_global_config {
my ($self, $dir, $arg) = @_;
my $config_base = $dir->file('config');
my $stash_registry = {};
require Dist::Zilla::MVP::Assembler::GlobalConfig;
require Dist::Zilla::MVP::Section;
my $assembler = Dist::Zilla::MVP::Assembler::GlobalConfig->new({
chrome => $arg->{chrome},
stash_registry => $stash_registry,
section_class => 'Dist::Zilla::MVP::Section', # make this DZMA default
});
require Dist::Zilla::MVP::Reader::Finder;
my $reader = Dist::Zilla::MVP::Reader::Finder->new;
my $seq = $reader->read_config($config_base, { assembler => $assembler });
return $stash_registry;
}
around _new_from_profile => sub {
my ($orig, $self, $profile_data, $arg, $tester_arg) = @_;
my $tempdir_root = exists $tester_arg->{tempdir_root}
? $tester_arg->{tempdir_root}
: 'tmp';
mkdir $tempdir_root if defined $tempdir_root and not -d $tempdir_root;
my $tempdir_obj = File::Temp->newdir(
CLEANUP => 1,
(defined $tempdir_root ? (DIR => $tempdir_root) : ()),
);
my $tempdir = dir($tempdir_obj)->absolute;
local $arg->{chrome} = Dist::Zilla::Chrome::Test->new;
$Log_Events = $arg->{chrome}->logger->events;
local @INC = map {; ref($_) ? $_ : File::Spec->rel2abs($_) } @INC;
my $global_config_root = Path::Class::dir($tester_arg->{global_config_root})->absolute;
local $ENV{DZIL_GLOBAL_CONFIG_ROOT} = $global_config_root;
my $global_stashes = $self->_setup_global_config(
$global_config_root,
{ chrome => $arg->{chrome} },
);
local $arg->{_global_stashes} = $global_stashes;
my $zilla = $self->$orig($profile_data, $arg);
$zilla->_set_tempdir_root($tempdir_root);
$zilla->_set_tempdir_obj($tempdir_obj);
$zilla->_set_tempdir($tempdir);
return $zilla;
};
}
no Moose; # XXX: namespace::autoclean caused problems -- rjbs, 2011-08-19
__PACKAGE__->meta->make_immutable;
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Dist::Zilla::Tester - a testing-enabling stand-in for Dist::Zilla
=head1 VERSION
version 5.043
=head1 AUTHOR
Ricardo SIGNES <rjbs@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2016 by Ricardo SIGNES.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|