| ExtUtils-MakeMaker-Coverage documentation | Contained in the ExtUtils-MakeMaker-Coverage distribution. |
ExtUtils::MakeMaker::Coverage - add a Makefile target to determine test coverage using Devel::Cover
Version 0.05
This module adds an additional target to the Makefile generated by
ExtUtils::MakeMaker. The target, testcover, calls cover,
the command-line script to generate test coverage statistics, to clean
up any data from a previous run. It then runs the tests, as if
make test was run, then calls cover again to generate the
coverage statistics.
# In Makefile.PL
use ExtUtils::MakeMaker;
use ExtUtils::MakeMaker::Coverage;
...
# if you already have a MY::postamble...
sub MY::postamble {
testcover();
...
}
# if you wish to tweak the testcover target that will be written,
# alter it's configuration.
$conf = ExtUtils::MakeMaker::Coverage->config;
In your shell
> perl Makefile.PL
> make
> make testcover
This method is exported for use when there already is a MY::postamble in the Makefile.PL. In that case, adding a call to the testcover method will add the necessary Makefile steps.
This method returns the internal config object used by this package
to create the testcover target for the Makefile.
You can change parts of the testcover target by setting accessors
of this object
The value to use for the cover binary. Defaults to cover.
The output format to use for cover -report. Defaults to none,
using cover's default settings. Consult perldoc cover for
documentation on its -report switch.
An array ref of patterns to ignore when generating the coverage
report. Defaults to an empty list. Consult perldoc cover for
documentation on its -ignore switch.
An array ref of test files to run for this coverage reprort.
Defaults to the $(TESTFILES) variable as defined in your
Makefile. Consult perldoc ExtUtils::MakeMaker for details.
Boolean indicating whether to run coverage on statements. Defaults
to true. Consult perldoc cover for documentation on its
-coverage switch.
Boolean indicating whether to run coverage on branches. Defaults
to true. Consult perldoc cover for documentation on its
-coverage switch.
Boolean indicating whether to run coverage on subroutines. Defaults
to true. Consult perldoc cover for documentation on its
-coverage switch.
Boolean indicating whether to run coverage on conditions. Defaults
to true. Consult perldoc cover for documentation on its
-coverage switch.
Boolean indicating whether to run coverage on POD. Defaults
to true. Consult perldoc cover for documentation on its
-coverage switch.
Example:
$config = ExtUtils::MakeMaker::Coverage->config;
$config->pod(0); # disable pod coverage
$config->files(['t/1.t', 't/2.t']); # use these test files only
$config->ignore(['SCCS']); # ignore files with these
# patterns in their path
This is alpha quality code in terms of features. For this module to be usable for as many modules as possible, the following additional features are needed.
From my testing, if you run the testcover step using a BSD make, you will get coverage statistics for the test scripts. This is not at all useful. gmake is suggested until this issue is resolved.
I have not tested this enough with nmake. I have done some initial changes to make it work, but it requires more refactoring to get to where I'd like to see it. Expect full support in a release or two.
Steve Peters, <steve@fisharerojo.org>
Please report any bugs or feature requests to
bug-extutils-makemaker-coverage@rt.cpan.org, or through the web interface at
http://rt.cpan.org. I will be notified, and then you'll automatically
be notified of progress on your bug as I make changes.
For developing Devel::Cover and enduring my many questions on IRC.
For helping to make me a test-infected Perl programmer.
For making many of the changes for the 0.05 release, including the testcover script.
Copyright 2005 Steve Peters, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| ExtUtils-MakeMaker-Coverage documentation | Contained in the ExtUtils-MakeMaker-Coverage distribution. |
package ExtUtils::MakeMaker::Coverage; use warnings; use strict; use base 'Object::Accessor';
our $VERSION = '0.05';
sub import { my $class = shift; my $caller = caller; my $arg = shift || ''; no strict 'refs'; *{$caller . "::testcover"} = \&{$class . "::testcover"}; *{"MY::postamble"} = \&{$class . "::testcover"}; }
sub testcover { ### our base object my $obj = __PACKAGE__->config; ### make a list of things to cover my $to_cover = join ",", map { s/cover_//; "-coverage,$_" } grep { /^cover/ && $obj->$_ } $obj->ls_accessors; ### make a list of patterns to ignore my $ignore = ref $obj->ignore ? join(',', map { "+ignore,$_" } @{$obj->ignore}) : ''; ### what files to run coverage on my $files = ref $obj->files ? join(' ', @{$obj->files}) : '$(TEST_FILES)'; ### what type of reporting tool to use my $report = $obj->format ? "-report " . $obj->format : ''; ### the path to the cover binary to use my $bin = $obj->binary; ### basic make fragment, this includes the coverable parts my $make_frag = qq[\n COVER = $bin coverclean: \$(COVER) -delete testcover: coverclean pure_all HARNESS_PERL_SWITCHES='-MDevel::Cover=$to_cover]; ### did you provide an ignore list? if so, add it to the make frag ### (dont forget the trailing "' ', or just add the trailing "' " if ### there are no ignore patterns $make_frag .= $ignore ? ",$ignore' " : "' "; ### add the invocation to test, where the files to test are ### determined by our config $make_frag .= q[PERL_DL_NONLAZY=1 $(FULLPERLRUN) ] . q["-MExtUtils::Command::MM" "-e" ] . q["test_harness($(TEST_VERBOSE), '$(INST_LIB)',] . q['$(INST_ARCHLIB)')" ] . $files; ### add the proper report format $make_frag .= qq[\n \$(COVER) $report \n]; return $make_frag; }
{ my %conf = ( binary => 'cover', format => '', ignore => '', files => '', cover_statement => 1, cover_branch => 1, cover_subroutine => 1, cover_condition => 1, cover_pod => 1, ); ### create a base object my $obj = __PACKAGE__->new; ### set all accessors $obj->mk_accessors( keys %conf ); ### initialize them for my $meth ( keys %conf ) { $obj->$meth( $conf{$meth} ); } ### accessor to return the base object sub config { return $obj } } 1; # End of ExtUtils::MakeMaker::Coverage __END__