9b2ba87b4601899913f6238bbd451328f812059f
[dbsrgits/DBIx-Class.git] / xt / dist / postdistdir / whitespace.t
1 BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
2 use DBIx::Class::Optional::Dependencies -skip_all_without => 'test_whitespace';
3
4 use warnings;
5 use strict;
6
7 use Test::More;
8 use File::Glob 'bsd_glob';
9
10 use DBICTest ':GlobalLock';
11
12 # FIXME - temporary workaround for RT#82032, RT#82033
13 # also add all scripts (no extension) and some extra extensions
14 # we want to check
15 {
16   no warnings 'redefine';
17   my $is_pm = sub {
18     $_[0] !~ /\./ || $_[0] =~ /\.(?:pm|pod|skip|bash|sql|json|proto)$/i || $_[0] =~ /::/;
19   };
20
21   *Test::EOL::_is_perl_module = $is_pm;
22   *Test::NoTabs::_is_perl_module = $is_pm;
23 }
24
25 my @pl_targets = qw/t xt lib script examples maint/;
26 Test::EOL::all_perl_files_ok({ trailing_whitespace => 1 }, @pl_targets);
27 Test::NoTabs::all_perl_files_ok(@pl_targets);
28
29 # check some non-"perl files" in the root separately
30 # use .gitignore as a guide of what to skip
31 # (or do not test at all if no .gitignore is found)
32 if (open(my $gi, '<', '.gitignore')) {
33   my $skipnames;
34   while (my $ln = <$gi>) {
35     next if $ln =~ /^\s*$/;
36     chomp $ln;
37     $skipnames->{$_}++ for bsd_glob($ln);
38   }
39
40   # that we want to check anyway
41   delete $skipnames->{'META.yml'};
42
43   for my $fn (bsd_glob('*')) {
44     next if $skipnames->{$fn};
45     next unless -f $fn;
46     Test::EOL::eol_unix_ok($fn, { trailing_whitespace => 1 });
47     Test::NoTabs::notabs_ok($fn);
48   }
49 }
50
51 # FIXME - Test::NoTabs and Test::EOL declare 'no_plan' which conflicts with done_testing
52 # https://github.com/schwern/test-more/issues/14
53 #done_testing;