File Coverage

blib/lib/Perl/Critic/Policy/TestingAndDebugging/ProhibitNoStrict.pm
Criterion Covered Total %
statement 42 42 100.0
branch 10 12 83.3
condition 6 6 100.0
subroutine 14 14 100.0
pod 4 5 80.0
total 76 79 96.2


line stmt bran cond sub pod time code
1             package Perl::Critic::Policy::TestingAndDebugging::ProhibitNoStrict;
2              
3 40     40   28439 use 5.010001;
  40         199  
4 40     40   271 use strict;
  40         127  
  40         896  
5 40     40   216 use warnings;
  40         122  
  40         947  
6 40     40   230 use Readonly;
  40         136  
  40         2045  
7              
8 40     40   297 use List::SomeUtils qw(all);
  40         111  
  40         1832  
9              
10 40     40   252 use Perl::Critic::Utils qw{ :characters :severities :data_conversion };
  40         119  
  40         1969  
11 40     40   12147 use parent 'Perl::Critic::Policy';
  40         122  
  40         222  
12              
13             our $VERSION = '1.148';
14              
15             #-----------------------------------------------------------------------------
16              
17             Readonly::Scalar my $DESC => q{Stricture disabled};
18             Readonly::Scalar my $EXPL => [ 429 ];
19              
20             #-----------------------------------------------------------------------------
21              
22             sub supported_parameters {
23             return (
24             {
25 100     100 0 2203 name => 'allow',
26             description => 'Allow vars, subs, and/or refs.',
27             default_string => $EMPTY,
28             parser => \&_parse_allow,
29             },
30             );
31             }
32              
33 80     80 1 368 sub default_severity { return $SEVERITY_HIGHEST }
34 92     92 1 400 sub default_themes { return qw( core pbp bugs certrec ) }
35 46     46 1 169 sub applies_to { return 'PPI::Statement::Include' }
36              
37             #-----------------------------------------------------------------------------
38              
39             sub _parse_allow {
40 98     98   474 my ($self, $parameter, $config_string) = @_;
41              
42 98         397 $self->{_allow} = {};
43              
44 98 100       518 if( defined $config_string ) {
45 9         35 my $allowed = lc $config_string; #String of words
46 9         79 my %allowed = hashify( $allowed =~ m/ (\w+) /gxms );
47 9         38 $self->{_allow} = \%allowed;
48             }
49              
50 98         341 return;
51             }
52              
53             #-----------------------------------------------------------------------------
54              
55             sub violates {
56 73     73 1 239 my ( $self, $elem, undef ) = @_;
57              
58 73 100       247 return if $elem->type() ne 'no';
59 10 50       334 return if $elem->pragma() ne 'strict';
60              
61             #Arguments to 'no strict' are usually a list of literals or a qw()
62             #list. Rather than trying to parse the various PPI elements, I
63             #just use a regex to split the statement into words. This is
64             #kinda lame, but it does the trick for now.
65              
66             # TODO consider: a possible alternate implementation:
67             # my $re = join q{|}, keys %{$self->{allow}};
68             # return if $re && $stmnt =~ m/\b(?:$re)\b/mx;
69             # May need to detaint for that to work... Not sure.
70              
71 10         438 my $stmnt = $elem->statement();
72 10 50       157 return if !$stmnt;
73 10         38 my @words = $stmnt =~ m/ ([[:lower:]]+) /gxms;
74 10 100 100     402 @words = grep { $_ ne 'qw' && $_ ne 'no' && $_ ne 'strict' } @words;
  48         253  
75 10 100 100 19   99 return if @words && all { exists $self->{_allow}->{$_} } @words;
  19         98  
76              
77             #If we get here, then it must be a violation
78 6         49 return $self->violation( $DESC, $EXPL, $elem );
79             }
80              
81             1;
82              
83             __END__
84              
85             #-----------------------------------------------------------------------------
86              
87             =pod
88              
89             =head1 NAME
90              
91             Perl::Critic::Policy::TestingAndDebugging::ProhibitNoStrict - Prohibit various flavors of C<no strict>.
92              
93              
94             =head1 AFFILIATION
95              
96             This Policy is part of the core L<Perl::Critic|Perl::Critic>
97             distribution.
98              
99              
100             =head1 DESCRIPTION
101              
102             There are good reasons for disabling certain kinds of strictures, But
103             if you were wise enough to C<use strict> in the first place, then it
104             doesn't make sense to disable it completely. By default, any C<no
105             strict> statement will violate this policy. However, you can
106             configure this Policy to allow certain types of strictures to be
107             disabled (See L</CONFIGURATION>). A bare C<no strict> statement will
108             always raise a violation.
109              
110              
111             =head1 CONFIGURATION
112              
113             The permitted strictures can be configured via the C<allow> option.
114             The value is a list of whitespace-delimited stricture types that you
115             want to permit. These can be C<vars>, C<subs> and/or C<refs>. An
116             example of this customization:
117              
118             [TestingAndDebugging::ProhibitNoStrict]
119             allow = vars subs refs
120              
121              
122             =head1 SEE ALSO
123              
124             L<Perl::Critic::Policy::TestingAndDebugging::RequireUseStrict|Perl::Critic::Policy::TestingAndDebugging::RequireUseStrict>
125              
126              
127             =head1 AUTHOR
128              
129             Jeffrey Ryan Thalhammer <jeff@imaginative-software.com>
130              
131              
132             =head1 COPYRIGHT
133              
134             Copyright (c) 2005-2021 Imaginative Software Systems. All rights reserved.
135              
136             This program is free software; you can redistribute it and/or modify
137             it under the same terms as Perl itself. The full text of this license
138             can be found in the LICENSE file included with this module
139              
140             =cut
141              
142             ##############################################################################
143             # Local Variables:
144             # mode: cperl
145             # cperl-indent-level: 4
146             # fill-column: 78
147             # indent-tabs-mode: nil
148             # c-indentation-style: bsd
149             # End:
150             # ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :