File Coverage

blib/lib/App/GitHooks/Plugin/PerlCompile.pm
Criterion Covered Total %
statement 35 35 100.0
branch 3 4 75.0
condition n/a
subroutine 9 9 100.0
pod 3 3 100.0
total 50 51 98.0


line stmt bran cond sub pod time code
1             package App::GitHooks::Plugin::PerlCompile;
2              
3 17     17   2923898 use strict;
  17         35  
  17         516  
4 17     17   67 use warnings;
  17         21  
  17         422  
5              
6 17     17   71 use base 'App::GitHooks::Plugin';
  17         22  
  17         2661  
7              
8             # External dependencies.
9 17     17   1175 use File::Spec qw();
  17         32  
  17         259  
10 17     17   1472 use System::Command;
  17         50230  
  17         136  
11              
12             # Internal dependencies.
13 17     17   2195 use App::GitHooks::Constants qw( :PLUGIN_RETURN_CODES );
  17         845  
  17         6325  
14              
15              
16             =head1 NAME
17              
18             App::GitHooks::Plugin::PerlCompile - Verify that Perl files compile without errors.
19              
20              
21             =head1 DESCRIPTION
22              
23             This plugin verifies that staged Perl files compile without errors before
24             allowing the commit to be completed.
25              
26              
27             =head1 VERSION
28              
29             Version 1.0.2
30              
31             =cut
32              
33             our $VERSION = '1.0.2';
34              
35              
36             =head1 METHODS
37              
38             =head2 get_file_pattern()
39              
40             Return a pattern to filter the files this plugin should analyze.
41              
42             my $file_pattern = App::GitHooks::Plugin::PerlCompile->get_file_pattern(
43             app => $app,
44             );
45              
46             =cut
47              
48             sub get_file_pattern
49             {
50 15     15 1 969015 return qr/\.(?:pl|pm|t|cgi)$/x;
51             }
52              
53              
54             =head2 get_file_check_description()
55              
56             Return a description of the check performed on files by the plugin and that
57             will be displayed to the user, if applicable, along with an indication of the
58             success or failure of the plugin.
59              
60             my $description = App::GitHooks::Plugin::PerlCompile->get_file_check_description();
61              
62             =cut
63              
64             sub get_file_check_description
65             {
66 13     13 1 9657 return 'The file passes perl -c';
67             }
68              
69              
70             =head2 run_pre_commit_file()
71              
72             Code to execute for each file as part of the pre-commit hook.
73              
74             my $success = App::GitHooks::Plugin::PerlCompile->run_pre_commit_file();
75              
76             =cut
77              
78             sub run_pre_commit_file
79             {
80 6     6 1 7429 my ( $class, %args ) = @_;
81 6         111 my $file = delete( $args{'file'} );
82 6         109 my $git_action = delete( $args{'git_action'} );
83 6         70 my $app = delete( $args{'app'} );
84 6         223 my $repository = $app->get_repository();
85              
86             # Ignore deleted files.
87 6 50       551 return $PLUGIN_RETURN_SKIPPED
88             if $git_action eq 'D';
89              
90             # Execute perl -cw.
91 6         213 my $path = File::Spec->catfile( $repository->work_tree(), $file );
92 6         595 my ( $pid, $stdin, $stdout, $stderr ) = System::Command->spawn( $^X, '-cw', $path );
93              
94             # Retrieve the output.
95 6         64763 my $output;
96             {
97 6         32 local $/ = undef;
  6         33  
98 6         13513 $output = <$stderr>;
99 6         80 chomp( $output );
100             }
101              
102             # Raise an exception if we didn't get "syntax OK".
103 6 100       674 die "$output\n"
104             if $output !~ /\Q$file syntax OK\E$/x;
105              
106 1         48 return $PLUGIN_RETURN_PASSED;
107             }
108              
109              
110             =head1 BUGS
111              
112             Please report any bugs or feature requests through the web interface at
113             L.
114             I will be notified, and then you'll automatically be notified of progress on
115             your bug as I make changes.
116              
117              
118             =head1 SUPPORT
119              
120             You can find documentation for this module with the perldoc command.
121              
122             perldoc App::GitHooks::Plugin::PerlCompile
123              
124              
125             You can also look for information at:
126              
127             =over
128              
129             =item * GitHub's request tracker
130              
131             L
132              
133             =item * AnnoCPAN: Annotated CPAN documentation
134              
135             L
136              
137             =item * CPAN Ratings
138              
139             L
140              
141             =item * MetaCPAN
142              
143             L
144              
145             =back
146              
147              
148             =head1 AUTHOR
149              
150             L,
151             C<< >>.
152              
153              
154             =head1 COPYRIGHT & LICENSE
155              
156             Copyright 2013-2015 Guillaume Aubert.
157              
158             This program is free software: you can redistribute it and/or modify it under
159             the terms of the GNU General Public License version 3 as published by the Free
160             Software Foundation.
161              
162             This program is distributed in the hope that it will be useful, but WITHOUT ANY
163             WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
164             PARTICULAR PURPOSE. See the GNU General Public License for more details.
165              
166             You should have received a copy of the GNU General Public License along with
167             this program. If not, see http://www.gnu.org/licenses/
168              
169             =cut
170              
171             1;