]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/blob - lib/Test/Valgrind/Action.pm
This is 1.19
[perl/modules/Test-Valgrind.git] / lib / Test / Valgrind / Action.pm
1 package Test::Valgrind::Action;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 Test::Valgrind::Action - Base class for Test::Valgrind actions.
9
10 =head1 VERSION
11
12 Version 1.19
13
14 =cut
15
16 our $VERSION = '1.19';
17
18 =head1 DESCRIPTION
19
20 This class is the base for L<Test::Valgrind> actions.
21
22 Actions are called each time a tool encounter an error and decide what to do with it (for example passing or failing tests).
23
24 =cut
25
26 use Test::Valgrind::Util;
27
28 use base qw<Test::Valgrind::Component Test::Valgrind::Carp>;
29
30 =head1 METHODS
31
32 =head2 C<new>
33
34     my $tva = Test::Valgrind::Action->new(action => $action);
35
36 Creates a new action object of type C<$action> by requiring and redispatching the method call to the module named C<$action> if it contains C<'::'> or to C<Test::Valgrind::Action::$action> otherwise.
37 The class represented by C<$action> must inherit this class.
38
39 =cut
40
41 sub new {
42  my $class = shift;
43  $class = ref($class) || $class;
44
45  my %args = @_;
46
47  if ($class eq __PACKAGE__) {
48   my ($action, $msg) = Test::Valgrind::Util::validate_subclass(
49    $args{action} || 'Test',
50   );
51   $class->_croak($msg) unless defined $action;
52   return $action->new(%args);
53  }
54
55  $class->SUPER::new(@_);
56 }
57
58 =head2 C<do_suppressions>
59
60 Indicates if the action wants C<valgrind> to run in suppression-generating mode or in analysis mode.
61
62 =cut
63
64 sub do_suppressions { 0 }
65
66 =head2 C<start>
67
68     $tva->start($session);
69
70 Called when the C<$session> starts.
71
72 Defaults to set L<Test::Valgrind::Component/started>.
73
74 =head2 C<report>
75
76     $tva->report($session, $report);
77
78 Invoked each time the C<valgrind> process attached to the C<$session> spots an error.
79 C<$report> is a L<Test::Valgrind::Report> object describing the error.
80
81 Defaults to check L<Test::Valgrind::Component/started>.
82
83 =cut
84
85 sub report {
86  my ($self) = @_;
87
88  $self->_croak('Action isn\'t started') unless $self->started;
89
90  return;
91 }
92
93 =head2 C<abort>
94
95     $tva->abort($session, $msg);
96
97 Triggered when the C<$session> has to interrupt the action.
98
99 Defaults to croak.
100
101 =cut
102
103 sub abort { $_[0]->_croak($_[2]) }
104
105 =head2 C<finish>
106
107     $tva->finish($session);
108
109 Called when the C<$session> finishes.
110
111 Defaults to clear L<Test::Valgrind::Component/started>.
112
113 =head2 C<status>
114
115     $tva->status($session);
116
117 Returns the status code corresponding to the last run of the action.
118
119 =cut
120
121 sub status {
122  my ($self, $sess) = @_;
123
124  my $started = $self->started;
125
126  $self->_croak("Action was never started") unless defined $started;
127  $self->_croak("Action is still running")  if $started;
128
129  return;
130 }
131
132 =head1 SEE ALSO
133
134 L<Test::Valgrind>, L<Test::Valgrind::Component>, L<Test::Valgrind::Session>.
135
136 =head1 AUTHOR
137
138 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
139
140 You can contact me by mail or on C<irc.perl.org> (vincent).
141
142 =head1 BUGS
143
144 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>.
145 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
146
147 =head1 SUPPORT
148
149 You can find documentation for this module with the perldoc command.
150
151     perldoc Test::Valgrind::Action
152
153 =head1 COPYRIGHT & LICENSE
154
155 Copyright 2009,2010,2011,2013,2015,2016 Vincent Pit, all rights reserved.
156
157 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
158
159 =cut
160
161 1; # End of Test::Valgrind::Action