]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/blob - lib/Test/Valgrind.pm
Capture STDOUT so that its output doesn't mix with our test results
[perl/modules/Test-Valgrind.git] / lib / Test / Valgrind.pm
1 package Test::Valgrind;
2
3 use strict;
4 use warnings;
5
6 use Carp qw/croak/;
7 use POSIX qw/SIGTERM/;
8 use Fcntl qw/F_SETFD/;
9 use Test::Builder;
10
11 use Perl::Destruct::Level level => 3;
12
13 use Test::Valgrind::Suppressions;
14
15 =head1 NAME
16
17 Test::Valgrind - Test Perl code through valgrind.
18
19 =head1 VERSION
20
21 Version 0.06
22
23 =cut
24
25 our $VERSION = '0.06';
26
27 =head1 SYNOPSIS
28
29     use Test::More;
30     eval 'use Test::Valgrind';
31     plan skip_all => 'Test::Valgrind is required to test your distribution with valgrind' if $@;
32
33     # Code to inspect for memory leaks/errors.
34
35 =head1 DESCRIPTION
36
37 This module lets you run some code through the B<valgrind> memory debugger, to test it for memory errors and leaks. Just add C<use Test::Valgrind> at the beginning of the code you want to test. Behind the hood, C<Test::Valgrind::import> forks so that the child can basically C<exec 'valgrind', $^X, $0> (except that of course C<$0> isn't right there). The parent then parses the report output by valgrind and pass or fail tests accordingly.
38
39 You can also use it from the command-line to test a given script :
40
41     perl -MTest::Valgrind leaky.pl
42
43 Due to the nature of perl's memory allocator, this module can't track leaks of Perl objects. This includes non-mortalized scalars and memory cycles. However, it can track leaks of chunks of memory allocated in XS extensions with C<Newx> and friends or C<malloc>. As such, it's complementary to the other very good leak detectors listed in the L</SEE ALSO> section.
44
45 =head1 CONFIGURATION
46
47 You can pass parameters to C<import> as a list of key / value pairs, where valid keys are :
48
49 =over 4
50
51 =item *
52
53 C<< supp => $file >>
54
55 Also use suppressions from C<$file> besides perl's.
56
57 =item *
58
59 C<< no_supp => $bool >>
60
61 If true, do not use any suppressions.
62
63 =item *
64
65 C<< callers => $number >>
66
67 Specify the maximum stack depth studied when valgrind encounters an error. Raising this number improves granularity. Default is 12.
68
69 =item *
70
71 C<< extra => [ @args ] >>
72
73 Add C<@args> to valgrind parameters.
74
75 =item *
76
77 C<< diag => $bool >>
78
79 If true, print the raw output of valgrind as diagnostics (may be quite verbose).
80
81 =item *
82
83 C<< no_test => $bool >>
84
85 If true, do not actually output the plan and the tests results.
86
87 =item *
88
89 C<< cb => sub { my ($val, $name) = @_; ...; return $passed } >>
90
91 Specifies a subroutine to execute for each test instead of C<Test::More::is>. It receives the number of bytes leaked in C<$_[0]> and the test name in C<$_[1]>, and is expected to return true if the test passed and false otherwise. Defaults to
92
93     sub {
94      is($_[0], 0, $_[1]);
95      (defined $_[0] and $_[0] == 0) : 1 : 0
96     }
97
98 =back
99
100 =cut
101
102 my $Test = Test::Builder->new;
103
104 my $run;
105
106 sub _counter {
107  (defined $_[0] and $_[0] == 0) ? 1 : 0;
108 }
109
110 sub _tester {
111  $Test->is_num($_[0], 0, $_[1]);
112  _counter(@_);
113 }
114
115 sub import {
116  shift;
117  croak 'Optional arguments must be passed as key => value pairs' if @_ % 2;
118  my %args = @_;
119  if (!defined $args{run} && !$run) {
120   my ($file, $pm, $next);
121   my $l = 0;
122   while ($l < 1000) {
123    $next = (caller $l++)[1];
124    last unless defined $next;
125    next unless $next ne '-e' and $next !~ /^\s*\(\s*eval\s*\d*\s*\)\s*$/
126                              and -f $next;
127    if ($next =~ /\.pm$/) {
128     $pm = $next;
129    } else {
130     $file = $next;
131    }
132   }
133   unless (defined $file) {
134    $file = $pm;
135    return unless defined $pm;
136   }
137   my $callers = $args{callers};
138   $callers = 12 unless defined $callers;
139   $callers = int $callers;
140   my $vg = Test::Valgrind::Suppressions::VG_PATH;
141   if (!$vg || !-x $vg) {
142    for (split /:/, $ENV{PATH}) {
143     $_ .= '/valgrind';
144     if (-x) {
145      $vg = $_;
146      last;
147     }
148    }
149    if (!$vg) {
150     $Test->skip_all('No valgrind executable could be found in your path');
151     return;
152    } 
153   }
154   pipe my $ordr, my $owtr or die "pipe(\$ordr, \$owtr): $!";
155   pipe my $vrdr, my $vwtr or die "pipe(\$vrdr, \$vwtr): $!";
156   my $pid = fork;
157   if (!defined $pid) {
158    die "fork(): $!";
159   } elsif ($pid == 0) {
160    setpgrp 0, 0 or die "setpgrp(0, 0): $!";
161    close $ordr or die "close(\$ordr): $!";
162    open STDOUT, '>&=', $owtr or die "open(STDOUT, '>&=', \$owtr): $!";
163    close $vrdr or die "close(\$vrdr): $!";
164    fcntl $vwtr, F_SETFD, 0 or die "fcntl(\$vwtr, F_SETFD, 0): $!";
165    my @args = (
166     '--tool=memcheck',
167     '--leak-check=full',
168     '--leak-resolution=high',
169     '--num-callers=' . $callers,
170     '--error-limit=yes',
171     '--log-fd=' . fileno($vwtr)
172    );
173    unless ($args{no_supp}) {
174     for (Test::Valgrind::Suppressions::supp_path(), $args{supp}) {
175      push @args, '--suppressions=' . $_ if $_;
176     }
177    }
178    if (defined $args{extra} and ref $args{extra} eq 'ARRAY') {
179     push @args, @{$args{extra}};
180    }
181    push @args, $^X;
182    push @args, '-I' . $_ for @INC;
183    push @args, '-MTest::Valgrind=run,1', $file;
184    print STDOUT "valgrind @args\n";
185    local $ENV{PERL_DESTRUCT_LEVEL} = 3;
186    local $ENV{PERL_DL_NONLAZY} = 1;
187    exec $vg, @args;
188   }
189   local $SIG{INT} = sub { kill -(SIGTERM) => $pid };
190   $Test->plan(tests => 5) unless $args{no_test} or defined $Test->has_plan;
191   my @tests = (
192    'errors',
193    'definitely lost', 'indirectly lost', 'possibly lost', 'still reachable'
194   );
195   my %res = map { $_ => 0 } @tests;
196   close $owtr or die "close(\$owtr): $!";
197   $Test->diag(do { local $/; <$ordr> }) if $args{diag};
198   close $ordr or die "close(\$ordr): $!";
199   close $vwtr or die "close(\$vwtr): $!";
200   while (<$vrdr>) {
201    $Test->diag($_) if $args{diag};
202    if (/^=+\d+=+\s*FATAL\s*:\s*(.*)/) {
203     chomp(my $err = $1);
204     $Test->diag("Valgrind error: $err");
205     $res{$_} = undef for @tests;
206    }
207    if (/ERROR\s+SUMMARY\s*:\s+(\d+)/) {
208     $res{errors} = int $1;
209    } elsif (/([a-z][a-z\s]*[a-z])\s*:\s*([\d.,]+)/) {
210     my ($cat, $count) = ($1, $2);
211     if (exists $res{$cat}) {
212      $cat =~ s/\s+/ /g;
213      $count =~ s/[.,]//g;
214      $res{$cat} = int $count;
215     }
216    }
217   }
218   waitpid $pid, 0;
219   my $failed = 5;
220   my $cb = ($args{no_test} ? \&_counter
221                            : ($args{cb} ? $args{cb} : \&_tester));
222   for (@tests) {
223    $failed -= $cb->($res{$_}, 'valgrind ' . $_) ? 1 : 0;
224   }
225   exit $failed;
226  } else {
227   $run = 1;
228  }
229 }
230
231 =head1 CAVEATS
232
233 You can't use this module to test code given by the C<-e> command-line switch.
234
235 Results will most likely be better if your perl is built with debugging enabled. Using the latest valgrind available will also help.
236
237 This module is not really secure. It's definitely not taint safe. That shouldn't be a problem for test files.
238
239 If your tests output to STDERR, everything will be eaten in the process. In particular, running this module against test files will obliterate their original test results.
240
241 =head1 DEPENDENCIES
242
243 Valgrind 3.1.0 (L<http://valgrind.org>).
244
245 L<Carp>, L<Fcntl>, L<POSIX> (core modules since perl 5) and L<Test::Builder> (since 5.6.2).
246
247 L<Perl::Destruct::Level>.
248
249 =head1 SEE ALSO
250
251 L<Devel::Leak>, L<Devel::LeakTrace>, L<Devel::LeakTrace::Fast>.
252
253 =head1 AUTHOR
254
255 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
256
257 You can contact me by mail or on #perl @ FreeNode (vincent or Prof_Vince).
258
259 =head1 BUGS
260
261 Please report any bugs or feature requests to C<bug-test-valgrind at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Valgrind>.  I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
262
263 =head1 SUPPORT
264
265 You can find documentation for this module with the perldoc command.
266
267     perldoc Test::Valgrind
268
269 =head1 ACKNOWLEDGEMENTS
270
271 RafaĆ«l Garcia-Suarez, for writing and instructing me about the existence of L<Perl::Destruct::Level> (Elizabeth Mattijsen is a close second).
272
273 H.Merijn Brand, for daring to test this thing.
274
275 =head1 COPYRIGHT & LICENSE
276
277 Copyright 2008 Vincent Pit, all rights reserved.
278
279 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
280
281 =cut
282
283 1; # End of Test::Valgrind