The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
use Moose;
with 'Dist::Zilla::Role::FileGatherer', 'Dist::Zilla::Role::BeforeRelease';
use Capture::Tiny 'capture';
# for every file leaving the test suite, we must replace it with an empty file so ->_test_data can
# filter it out, because File::ShareDir::Install cannot remove old files when installing a new
has removed => ( is => 'ro', isa => 'ArrayRef[Str]', required => 1 );
sub mvp_multivalue_args { qw(removed) };
sub gather_files {
my $self = shift;
foreach my $filename (@{$self->removed}) {
my $content = path('share/tests')->subsumes($filename) ? '[]'
: path('share/remotes')->subsumes($filename) ? '{}'
: die "don't know how to handle filename '$filename'";
$self->add_file(Dist::Zilla::File::InMemory->new({ name => $filename, content => $content }))
}
return;
}
sub before_release {
my $self = shift;
my $distname = $self->zilla->name;
my $version = $self->zilla->version;
my ($diff, $error) = capture {
system('diff', '-u', $distname.'-'.sprintf("%.3f", $version-0.001).'/MANIFEST', $distname.'-'.$version.'/MANIFEST');
};
die $error if $error;
# skip old share/tests/draft-future -- not officially supported by any implementation
# (now known as draft-next)
$diff =~ s{^-share/tests/draft-future/.+\n}{}gm;
# note: if a removed file was re-added in the submodule, we will get a "aborting; duplicate files
# would be produced" fatal error from Gather plugins, so we don't need to explicitly check for
# this case
if (my @missing = map s/^-//r, grep m{^-share/}, split /\n/, $diff) {
$self->log_fatal(join "\n", '',
'These files were removed from the test suite and must be added to the config for [=inc::OldShareDirFiles]:',
@missing,
'',
);
}
}
1;