From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

$Test::PerlTidy::VERSION = '20230226';
use 5.014;
use strict;
use English qw( -no_match_vars );
use vars qw( @EXPORT ); ## no critic (Modules::ProhibitAutomaticExportation)
@EXPORT = qw( run_tests );
use Carp qw( croak );
use Path::Tiny 0.100 qw( path );
use File::Spec ();
use IO::File ();
use Perl::Tidy 20220613;
use Text::Diff qw( diff );
my $test = Test::Builder->new;
our $MUTE = 0;
sub run_tests {
my %args = @_;
my @opts;
if ( my $perltidy_options = delete( $args{perltidy_options} ) ) {
push @opts, +{ perltidy_options => $perltidy_options, };
}
# Skip all tests if instructed to.
$test->skip_all('All tests skipped.') if $args{skip_all};
$MUTE = $args{mute} if exists $args{mute};
# Get files to work with and set the plan.
my @files = list_files(%args);
$test->plan( tests => scalar @files );
# Check each file in turn.
foreach my $file (@files) {
$test->ok( is_file_tidy( $file, $args{perltidyrc}, @opts, ),
"'$file'" );
}
return;
}
sub is_file_tidy {
my ( $file_to_tidy, $perltidyrc, $named_args ) = @_;
$named_args //= { perltidy_options => {}, };
my $code_to_tidy = load_file($file_to_tidy);
my $tidied_code = q{};
my $logfile = q{};
my $errorfile = q{};
my $stderr_fh = IO::File->new_tmpfile or croak "IO::File->new_tmpfile: $!";
$stderr_fh->autoflush(1);
Perl::Tidy::perltidy(
source => \$code_to_tidy,
destination => \$tidied_code,
stderr => $stderr_fh,
logfile => \$logfile,
errorfile => \$errorfile,
perltidyrc => $perltidyrc,
%{ $named_args->{perltidy_options} },
);
# If there were perltidy errors report them and return.
$stderr_fh->seek( 0, 0 );
binmode $stderr_fh, ':encoding(UTF-8)' or croak "error setting binmode $!";
my $stderr = do {
local $INPUT_RECORD_SEPARATOR = undef;
<$stderr_fh>;
};
if ($stderr) {
unless ($MUTE) {
$test->diag("perltidy reported the following errors:\n");
$test->diag($stderr);
}
return 0;
}
# Compare the pre and post tidy code and return result.
# Do not worry about trailing newlines.
#
$code_to_tidy =~ s/[\r\n]+$//;
$tidied_code =~ s/[\r\n]+$//;
if ( $code_to_tidy eq $tidied_code ) {
return 1;
}
else {
unless ($MUTE) {
$test->diag("The file '$file_to_tidy' is not tidy\n");
$test->diag(
diff( \$code_to_tidy, \$tidied_code, { STYLE => 'Table' } ) );
}
return 0;
}
}
sub list_files {
my (@params) = @_;
my %args;
my $path;
# Expect either a hashref of args, or a single "path" argument:
#
# The only reason for allowing a single path argument is for
# backward compatibility with Test::PerlTidy::list_files, on the
# off chance that someone was calling it directly...
#
if ( @params > 1 ) {
%args = @params;
$path = $args{path};
}
else {
%args = ();
$path = $params[0];
}
$path ||= q{.};
$test->BAIL_OUT(qq{The directory "$path" does not exist}) unless -d $path;
my $excludes = $args{exclude}
|| [ $OSNAME eq 'MSWin32' ? qr{^blib[/\\]} : 'blib/' ]
; # exclude blib by default
$test->BAIL_OUT('exclude should be an array')
unless ref $excludes eq 'ARRAY';
foreach my $exclude (@$excludes) {
if ( not ref($exclude) ) {
$exclude = qr/\A$exclude/;
}
}
my $DEBUG = ( $args{debug} // '' );
my @excluded = ();
my @filenames;
path($path)->visit(
sub {
my $fn = $_;
my $exclude_me;
EXCLUDES:
foreach my $exclude ( @{$excludes} ) {
$exclude_me = ( $fn =~ $exclude );
push @excluded, $fn if $DEBUG;
last EXCLUDES
if $exclude_me; # no need to check more exclusions...
}
return if $exclude_me;
if ( $fn->is_file && ( $fn =~ /\.(?:pl|pm|PL|t)\z/ ) ) {
push @filenames, $fn;
}
},
{ recurse => 1 }
);
my %keep = map { File::Spec->canonpath($_) => 1 } @filenames;
# Sort the output so that it is repeatable
@filenames = sort keys %keep;
if ($DEBUG) {
$test->diag( 'Files excluded: ', join( "\n\t", sort @excluded ), "\n" );
$test->diag( 'Files remaining ', join( "\n\t", @filenames ), "\n" );
}
return @filenames;
}
sub load_file {
my $filename = shift;
# If the file is not regular then return undef.
return unless -f $filename;
# Slurp the file.
my $content = path($filename)->slurp_utf8;
return $content;
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Test::PerlTidy - check that all your files are tidy.
=head1 VERSION
version 20230226
=head1 SYNOPSIS
# In a file like 't/perltidy.t':
use Test::PerlTidy qw( run_tests );
run_tests();
=head1 DESCRIPTION
This rather unflattering comment was made in a piece by Ken Arnold:
"Perl is a vast swamp of lexical and syntactic swill and nobody
knows how to format even their own code well, but it's the only
major language I can think of (with the possible exception of the
recent, yet very Java-like C#) that doesn't have at least one
style that's good enough."
Hmmm... He is sort of right in a way. Then again the piece he wrote
was related to Python which is somewhat strict about formatting
itself.
Fear not though - now you too can have your very own formatting
gestapo in the form of Test::PerlTidy! Simply add a test file as
suggested above and any file ending in .pl, .pm, .t or .PL will cause
a test fail unless it is exactly as perltidy would like it to be.
=for stopwords Hmmm perltidy cvs perltidyrc subdirectories listref canonified pre von der Leszczynski perl
=head1 REASONS TO DO THIS
If the style is mandated in tests then it will be adhered to.
If perltidy decides what is a good style then there should be no
quibbling.
If the style never changes then cvs diffs stop catching changes that
are not really there.
Readability might even improve.
=head1 HINTS
If you want to change the default style then muck around with
'.perltidyrc';
To quickly make a file work then try 'perltidy -b the_messy_file.pl'.
=head1 HOW IT WORKS
Runs B<perltidy> on files and reports errors if any of the files
differ after having been tidied. Does not permanently modify the
files being tested.
By default, B<perltidy> will be run on files under the current
directory and its subdirectories with extensions matching:
C<.pm .pl .PL .t>
=head1 METHODS
=head2 run_tests ( [ I<%args> ] )
This is the main entry point for running tests.
A number of options can be specified when running the tests, e.g.:
run_tests(
path => $start_dir,
perltidyrc => $path_to_config_file,
exclude => [ qr{\.t$}, 'inc/'],
);
=over 4
=item debug
Set C<debug> to a true value to enable additional diagnostic
output, in particular info about any processing done as a result of
specifying the C<exclude> option. Default is false.
=item exclude
C<run_tests()> will look for files to test under the current
directory and its subdirectories. By default, it will exclude files
in the "C<./blib/>" directory. Set C<exclude> to a listref of
exclusion criteria if you need to specify additional rules by which
files will be excluded.
If an item in the C<exclude> list is a string, e.g. "C<./blib/>",
it will be assumed to be a path prefix. Files will be excluded if
that string matches their path at the beginning.
If an item in the C<exclude> list is a regex object, e.g.
"C<qr{\.t$}>", files will be excluded if that regex matches their
path.
Note that the paths of files to be tested are canonified using
L<File::Spec|File::Spec>C<< ->canonpath >> before any matching is
attempted, which can impact how the exclusion rules apply. If your
exclusion rules do not seem to be working, turn on the C<debug>
option to see the paths of the files that are being kept/excluded.
=item path
Set C<path> to the path to the top-level directory which contains
the files to be tested. Defaults to the current directory (i.e.
"C<.>").
=item perltidyrc
By default, B<perltidy> will attempt to read its options from the
F<.perltidyrc> file on your system. Set C<perltidyrc> to the path
to a custom file if you would like to control the B<perltidy>
options used during testing.
=item mute
By default, C<run_tests()> will output diagnostics about any errors
reported by B<perltidy>, as well as any actual differences found
between the pre-tidied and post-tidied files. Set C<mute> to a
true value to turn off that diagnostic output.
=item skip_all
Set C<skip_all> to a true value to skip all tests. Default is false.
=item perltidy_options
Pass these to Perl::Tidy::perltidy().
(Added in version 20200411 .)
=back
=head2 list_files ( [ I<start_path> | I<%args> ] )
Generate the list of files to be tested. Generally not called directly.
=head2 load_file ( I<path_to_file> )
Load the file to be tested from disk and return the contents.
Generally not called directly.
=head2 is_file_tidy ( I<path_to_file> [ , I<path_to_perltidyrc> ] [, I<$named_args>] )
Test if a file is tidy or not. Generally not called directly.
$named_args can be a hash ref which may have a key called 'perltidy_options'
that refers to a hash ref of options that will be passed to Perl::Tidy::perltidy().
($named_args was added in version 20200411).
=head1 SEE ALSO
L<Perl::Tidy>
=head1 ORIGINAL AUTHOR
Edmund von der Burg, C<< <evdb at ecclestoad.co.uk> >>
=head1 CONTRIBUTORS
Duncan J. Ferguson, C<< <duncan_j_ferguson at yahoo.co.uk> >>
Stephen, C<< <stephen at enterity.com> >>
Larry Leszczynski, C<< <larryl at cpan.org> >>
=head1 SUGGESTIONS
Please let me know if you have any comments or suggestions.
=head1 COPYRIGHT
Copyright 2007 Edmund von der Burg, all rights reserved.
=head1 LICENSE
This library is free software . You can redistribute it and/or modify
it under the same terms as perl itself.
=for :stopwords cpan testmatrix url bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan
=head1 SUPPORT
=head2 Websites
The following websites have more information about this module, and may be of help to you. As always,
in addition to those websites please use your favorite search engine to discover more resources.
=over 4
=item *
MetaCPAN
A modern, open-source CPAN search engine, useful to view POD in HTML format.
=item *
RT: CPAN's Bug Tracker
The RT ( Request Tracker ) website is the default bug/issue tracking system for CPAN.
=item *
CPANTS
The CPANTS is a website that analyzes the Kwalitee ( code metrics ) of a distribution.
=item *
CPAN Testers
The CPAN Testers is a network of smoke testers who run automated tests on uploaded CPAN distributions.
=item *
CPAN Testers Matrix
The CPAN Testers Matrix is a website that provides a visual overview of the test results for a distribution on various Perls/platforms.
=item *
CPAN Testers Dependencies
The CPAN Testers Dependencies is a website that shows a chart of the test results of all dependencies for a distribution.
=back
=head2 Bugs / Feature Requests
Please report any bugs or feature requests by email to C<bug-test-perltidy at rt.cpan.org>, or through
the web interface at L<https://rt.cpan.org/Public/Bug/Report.html?Queue=Test-PerlTidy>. You will be automatically notified of any
progress on the request by the system.
=head2 Source Code
The code is open to the world, and available for you to hack on. Please feel free to browse it and play
with it, or whatever. If you want to contribute patches, please send me a diff or prod me to pull
from your repository :)
=head1 AUTHOR
Shlomi Fish <shlomif@cpan.org>
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website
When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2023 by Edmund von der Burg.
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