]> eyrie.org Git - kerberos/krb5-strength.git/blob - tests/perl/strict-t
Update to rra-c-util 5.4
[kerberos/krb5-strength.git] / tests / perl / strict-t
1 #!/usr/bin/perl
2 #
3 # Check Perl scripts for strict, warnings, and syntax.
4 #
5 # Checks all Perl scripts in the tree for problems uncovered by Test::Strict.
6 # This includes using strict and warnings for every script and ensuring they
7 # all pass a syntax check.  Currently, test suite coverage is not checked.
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, 2014
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_automated use_prereq);
42 use Test::RRA::Automake qw(automake_setup perl_dirs);
43 use Test::RRA::Config qw(@STRICT_IGNORE @STRICT_PREREQ);
44
45 # Skip for normal user installs since this doesn't affect functionality.
46 skip_unless_automated('Strictness tests');
47
48 # Load prerequisite modules.
49 use_prereq('Test::Strict');
50
51 # Check whether all prerequisites are available, and skip the test if any of
52 # them are not.
53 for my $module (@STRICT_PREREQ) {
54     use_prereq($module);
55 }
56
57 # Set up Automake testing.  This must be done after loading Test::Strict,
58 # since it wants to use FindBin to locate this script.
59 automake_setup();
60
61 # Run the actual tests.  We also want to check warnings.
62 $Test::Strict::TEST_WARNINGS = 1;
63 all_perl_files_ok(perl_dirs({ skip => [@STRICT_IGNORE] }));
64
65 # Suppress "used only once" warnings.
66 END { $Test::Strict::TEST_WARNINGS = 0 }