No longer blindly assume utf8 on input files (RT#59877)
[catagits/Test-EOL.git] / lib / Test / EOL.pm
CommitLineData
a83ae797 1package Test::EOL;
94bc2901 2# ABSTRACT: Check the correct line endings in your project
a83ae797 3
4use strict;
5use warnings;
6
7use Test::Builder;
8use File::Spec;
9use FindBin qw($Bin);
10use File::Find;
11
94bc2901 12use vars qw( $PERL $UNTAINT_PATTERN $PERL_PATTERN);
a83ae797 13
14$PERL = $^X || 'perl';
15$UNTAINT_PATTERN = qr|^([-+@\w./:\\]+)$|;
16$PERL_PATTERN = qr/^#!.*perl/;
17
18my %file_find_arg = ($] <= 5.006) ? () : (
19 untaint => 1,
20 untaint_pattern => $UNTAINT_PATTERN,
21 untaint_skip => 1,
22);
23
24my $Test = Test::Builder->new;
25my $updir = File::Spec->updir();
26
27sub import {
28 my $self = shift;
29 my $caller = caller;
30 {
31 no strict 'refs';
32 *{$caller.'::eol_unix_ok'} = \&eol_unix_ok;
33 *{$caller.'::all_perl_files_ok'} = \&all_perl_files_ok;
34 }
35 $Test->exported_to($caller);
36 $Test->plan(@_);
37}
38
39sub _all_perl_files {
40 my @all_files = _all_files(@_);
41 return grep { _is_perl_module($_) || _is_perl_script($_) } @all_files;
42}
43
44sub _all_files {
45 my @base_dirs = @_ ? @_ : File::Spec->catdir($Bin, $updir);
46 my @found;
47 my $want_sub = sub {
5bcec1c9 48 return if ($File::Find::dir =~ m![\\/]?CVS[\\/]|[\\/]?.svn[\\/]!); # Filter out cvs or subversion dirs/
a83ae797 49 return if ($File::Find::dir =~ m![\\/]?blib[\\/]libdoc$!); # Filter out pod doc in dist
50 return if ($File::Find::dir =~ m![\\/]?blib[\\/]man\d$!); # Filter out pod doc in dist
51 return if ($File::Find::name =~ m!Build$!i); # Filter out autogenerated Build script
52 return unless (-f $File::Find::name && -r _);
53 push @found, File::Spec->no_upwards( $File::Find::name );
54 };
55 my $find_arg = {
56 %file_find_arg,
57 wanted => $want_sub,
58 no_chdir => 1,
59 };
60 find( $find_arg, @base_dirs);
61 return @found;
62}
63
f17f4176 64# Formats various human invisible symbols
65# to similar visible ones.
fe02d07d 66# Perhaps ^M or something like that
f17f4176 67# would be more appropriate?
68
fe02d07d 69sub _show_whitespace {
f17f4176 70 my $string = shift;
71 $string =~ s/\r/[\\r]/g;
72 $string =~ s/\t/[\\t]/g;
73 $string =~ s/ /[\\s]/g;
74 return $string;
75}
76
77# Format a line record for diagnostics.
78
fe02d07d 79sub _debug_line {
f17f4176 80 my ( $options, $line ) = @_;
81 $line->[2] =~ s/\n\z//g;
939ef613 82 return "line $line->[1]: $line->[0] " . (
fe02d07d 83 $options->{show_lines} ? qq{: } . _show_whitespace( $line->[2] ) : q{}
f17f4176 84 );
85}
86
a83ae797 87sub eol_unix_ok {
88 my $file = shift;
91613276 89 my $test_txt;
90 $test_txt = shift if !ref $_[0];
939ef613 91 $test_txt ||= "No incorrect line endings in '$file'";
91613276 92 my $options = shift if ref $_[0] eq 'HASH';
93 $options ||= {
94 trailing_whitespace => 0,
f17f4176 95 all_reasons => 0,
91613276 96 };
a83ae797 97 $file = _module_to_path($file);
fe02d07d 98
a83ae797 99 open my $fh, $file or do { $Test->ok(0, $test_txt); $Test->diag("Could not open $file: $!"); return; };
f17f4176 100 # Windows-- , default is :crlf, which hides \r\n -_-
a2bfe7c3 101 binmode( $fh, ':raw' );
a83ae797 102 my $line = 0;
f17f4176 103 my @fails;
a83ae797 104 while (<$fh>) {
105 $line++;
f17f4176 106 if ( !$options->{trailing_whitespace} && /(\r+)$/ ) {
107 my $match = $1;
108 push @fails, [ _show_whitespace( $match ) , $line , $_ ];
a83ae797 109 }
f17f4176 110 if ( $options->{trailing_whitespace} && /([ \t]*\r+|[ \t]+)$/ ) {
111 my $match = $1;
112 push @fails, [ _show_whitespace($match), $line , $_ ];
113 }
114 # Minor short-circuit for people who don't need the whole file scanned
115 # once there's an err.
116 last if( @fails > 0 && !$options->{all_reasons} );
117 }
fe02d07d 118 if( @fails ){
f17f4176 119 $Test->ok( 0, $test_txt . " on " . _debug_line({ show_lines => 0 } , $fails[0] ) );
120 if ( $options->{all_reasons} || 1 ){
121 $Test->diag( " Problem Lines: ");
fe02d07d 122 for ( @fails ){
f17f4176 123 $Test->diag(_debug_line({ show_lines => 1 } , $_ ) );
124 }
125 }
126 return 0;
a83ae797 127 }
128 $Test->ok(1, $test_txt);
129 return 1;
130}
a83ae797 131sub all_perl_files_ok {
91613276 132 my $options = shift if ref $_[0] eq 'HASH';
a83ae797 133 my @files = _all_perl_files( @_ );
134 _make_plan();
135 foreach my $file ( @files ) {
91613276 136 eol_unix_ok($file, $options);
a83ae797 137 }
138}
139
140sub _is_perl_module {
141 $_[0] =~ /\.pm$/i || $_[0] =~ /::/;
142}
143
144sub _is_perl_script {
145 my $file = shift;
146 return 1 if $file =~ /\.pl$/i;
147 return 1 if $file =~ /\.t$/;
7ebe98c1 148 open (my $fh, $file) or return;
a83ae797 149 my $first = <$fh>;
150 return 1 if defined $first && ($first =~ $PERL_PATTERN);
151 return;
152}
153
154sub _module_to_path {
155 my $file = shift;
156 return $file unless ($file =~ /::/);
157 my @parts = split /::/, $file;
158 my $module = File::Spec->catfile(@parts) . '.pm';
159 foreach my $dir (@INC) {
160 my $candidate = File::Spec->catfile($dir, $module);
161 next unless (-e $candidate && -f _ && -r _);
162 return $candidate;
163 }
164 return $file;
165}
166
167sub _make_plan {
168 unless ($Test->has_plan) {
169 $Test->plan( 'no_plan' );
170 }
171 $Test->expected_tests;
172}
173
174sub _untaint {
175 my @untainted = map { ($_ =~ $UNTAINT_PATTERN) } @_;
176 return wantarray ? @untainted : $untainted[0];
177}
178
1791;
a83ae797 180
181=head1 SYNOPSIS
182
29330dd1 183C<Test::EOL> lets you check the presence of windows line endings in your
184perl code. It
a83ae797 185report its results in standard C<Test::Simple> fashion:
186
187 use Test::EOL tests => 1;
29330dd1 188 eol_unix_ok( 'lib/Module.pm', 'Module is ^M free');
a83ae797 189
91613276 190and to add checks for trailing whitespace:
191
192 use Test::EOL tests => 1;
193 eol_unix_ok( 'lib/Module.pm', 'Module is ^M and trailing whitespace free', { trailing_whitespace => 1 });
194
a83ae797 195Module authors can include the following in a t/eol.t and have C<Test::EOL>
196automatically find and check all perl files in a module distribution:
197
198 use Test::EOL;
199 all_perl_files_ok();
200
201or
202
203 use Test::EOL;
204 all_perl_files_ok( @mydirs );
205
91613276 206and if authors would like to check for trailing whitespace:
207
208 use Test::EOL;
209 all_perl_files_ok({ trailing_whitespace => 1 });
210
211or
212
213 use Test::EOL;
214 all_perl_files_ok({ trailing_whitespace => 1 }, @mydirs );
215
a83ae797 216=head1 DESCRIPTION
217
218This module scans your project/distribution for any perl files (scripts,
29330dd1 219modules, etc) for the presence of windows line endings.
a83ae797 220
221=head1 EXPORT
222
223A list of functions that can be exported. You can delete this section
224if you don't export anything, such as for a purely object-oriented module.
225
94bc2901 226=func all_perl_files_ok( [ \%options ], [ @directories ] )
a83ae797 227
228Applies C<eol_unix_ok()> to all perl files found in C<@directories> (and sub
229directories). If no <@directories> is given, the starting point is one level
230above the current running script, that should cover all the files of a typical
231CPAN distribution. A perl file is *.pl or *.pm or *.t or a file starting
232with C<#!...perl>
233
234If the test plan is defined:
235
236 use Test::EOL tests => 3;
237 all_perl_files_ok();
238
239the total number of files tested must be specified.
240
94bc2901 241=func eol_unix_ok( $file [, $text] [, \%options ] )
a83ae797 242
243Run a unix EOL check on C<$file>. For a module, the path (lib/My/Module.pm) or the
244name (My::Module) can be both used.
245
a83ae797 246=head1 ACKNOWLEDGEMENTS
247
248Shamelessly ripped off from L<Test::NoTabs>.
249
250=head1 SEE ALSO
251
252L<Test::More>, L<Test::Pod>. L<Test::Distribution>, L<Test:NoWarnings>,
253L<Test::NoTabs>, L<Module::Install::AuthorTests>.
254
a83ae797 255=cut