]> eyrie.org Git - kerberos/krb5-strength.git/blob - tests/perl/critic-t
Change my email address to eagle@eyrie.org
[kerberos/krb5-strength.git] / tests / perl / critic-t
1 #!/usr/bin/perl
2 #
3 # Check for perlcritic errors in included Perl scripts.
4 #
5 # Checks all Perl scripts in the tree for problems uncovered by perlcritic.
6 # This test is disabled unless RRA_MAINTAINER_TESTS is set, since coding style
7 # will not interfere with functionality.
8 #
9 # The canonical version of this file is maintained in the rra-c-util package,
10 # which can be found at <http://www.eyrie.org/~eagle/software/rra-c-util/>.
11 #
12 # Written by Russ Allbery <eagle@eyrie.org>
13 # Copyright 2012, 2013
14 #     The Board of Trustees of the Leland Stanford Junior University
15 #
16 # Permission is hereby granted, free of charge, to any person obtaining a
17 # copy of this software and associated documentation files (the "Software"),
18 # to deal in the Software without restriction, including without limitation
19 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
20 # and/or sell copies of the Software, and to permit persons to whom the
21 # Software is furnished to do so, subject to the following conditions:
22 #
23 # The above copyright notice and this permission notice shall be included in
24 # all copies or substantial portions of the Software.
25 #
26 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
29 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
30 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
31 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
32 # DEALINGS IN THE SOFTWARE.
33
34 use 5.006;
35 use strict;
36 use warnings;
37
38 use lib "$ENV{SOURCE}/tap/perl";
39
40 use Test::More;
41 use Test::RRA qw(skip_unless_maintainer use_prereq);
42 use Test::RRA::Automake qw(automake_setup perl_dirs test_file_path);
43 use Test::RRA::Config qw(@CRITIC_IGNORE);
44
45 # Skip tests unless we're running the test suite in maintainer mode.
46 skip_unless_maintainer('Coding style tests');
47
48 # Set up Automake testing.
49 automake_setup();
50
51 # Load prerequisite modules.
52 use_prereq('Test::Perl::Critic');
53
54 # Force the embedded Perl::Tidy check to use the correct configuration.
55 local $ENV{PERLTIDY} = test_file_path('/data/perltidyrc');
56
57 # Import the configuration file.
58 Test::Perl::Critic->import(-profile => test_file_path('data/perlcriticrc'));
59
60 # Finally, run the actual tests.
61 all_critic_ok(perl_dirs({ skip => [@CRITIC_IGNORE] }));