NAME
CPAN::Reporter::Smoker::Safer - Turnkey smoking of installed distros
VERSION
Version 0.04
SYNOPSIS
# Default usage
perl -MCPAN::Reporter::Smoker::Safer -e start
# Control the 'trust' params for the default filter
perl -MCPAN::Reporter::Smoker::Safer -e 'start( safer=>{min_reports=>0, min_days_old=>2} )'
# Smoke all installed modules from a specific namespace
perl -MCPAN::Reporter::Smoker::Safer -e 'start( safer=>{min_reports=>0, min_days_old=>0, mask=>"/MyFoo::/"} )'
# Custom filter (in this case, specific authorid)
perl -MCPAN::Reporter::Smoker::Safer -e 'start( safer=>{filter=>sub{$_[1]->pretty_id =~ m#^DAVIDRW/#}} )'
# Preview mode - display distros found
perl -MCPAN::Reporter::Smoker::Safer -MData::Dumper -e 'print Dumper start(safer=>{preview=>1})'
DESCRIPTION
This is a subclass of CPAN::Reporter::Smoker that will limit the set of tested distributions to ones that are "trusted". This means that the distribution is already installed on the system, and that the new version it has been on CPAN for a certain amount of time, and has already received a certain number of test reporters. The assumption is that is it is safe (as in "safer") to install distributions (and their dependencies) that meet that criteria.
This can be used to run partial smoke testing on a box that normally wouldn't be desired for full smoke testing (i.e. isn't a dedicated/isolated environment). Another potential use is to vet everything before upgrading.
GETTING STARTED
See the CPAN Testers Quick Start guide http://wiki.cpantesters.org/wiki/QuickStart. Once CPAN::Reporter is installed and configured, you should be all set.
There are also some very good hints and notes in the CPAN::Reporter::Smoker documentation.
WARNING -- smoke testing is risky
While in theory this is much safer than full CPAN smoke testing, ALL of the same risks (see CPAN::Reporter::Smoker) still apply:
Smoke testing will download and run programs that other people have uploaded to CPAN. These programs could do *anything* to your system, including deleting everything on it. Do not run CPAN::Reporter::Smoker unless you are prepared to take these risks.
USAGE
start()
This is an overload of CPAN::Reporter::Smoker::start, and supports the same arguments, with the exception of list
which is set internally. In addition, supports the following argument:
safer
Hashref with the following possible keys:
- mask
-
Scalar; Defaults to
'/./'
; Value is passed toCPAN::Shell::expand()
for filtering the module list (applies to module names, not distro names). - filter
-
Code ref; Defaults to "__filter". First argument is the CPAN::Reporter::Smoker::Safer class/object; Second argument is a CPAN::Distribution object. Return value should be
1
(true) to accept, and0
(false) to reject the distribution.filter => sub { my ($safer, $dist) = @_; ... return 1; },
- min_reports
-
Defaults to 0 (since this involves extra http fetches). This is used by the default filter -- distros are 'trusted' if they have at least this many CPAN testers reports already.
- min_days_old
-
Defaults to 14. This is used by the default filter -- distros are 'trusted' if they were uploaded to CPAN at least this many days ago.
- exclusions
-
Defaults to
[ qr#/perl-5\.#, qr#/mod_perl-\d# ]
. This is used by the default filter to exclude any distro whose name (e.g. A/AU/AUTHOR/Foo-Bar-1.23.tar.gz) matches one of these regexes.Note that the disabled.yml functionality might be more suitable. See CPAN::Reporter::Smoker, CPAN, and CPAN::Distroprefs for more details.
- preview
-
Default false. If true, instead of invoking
CPAN::Reporter::Smoker::start()
will just return the args (as hashref) that would have been passsed tostart()
. This is usefull for debugging/testing without kicking off the actual smoke tester. - exclude_tested
-
Default true. This is used by the default filter -- if true, distros are skipped if they were previously tested. CPAN::Reporter::Smoker does this anyways, so doing up front is more efficient. (Use in test suite is the only reason this is provided as a config option.)
INTERNAL METHODS
__filter
Used as the default "filter" code ref.
Excludes any distro who's name (e.g. A/AU/AUTHOR/Foo-Bar-1.23.tar.gz) matches a list of "exclusions".
If "exclude_tested" is true, excludes any distro that was already tested, as determined by CPAN::Reporter::History.
Exclude any distro that was uploaded to CPAN less than "min_days_old" days ago.
Exclude any distro that has less than "min_reports" CPAN Testers reports.
__installed_dists
Returns an array ref of dist names (e.g. 'ANDK/CPAN-1.9301.tar.gz' ).
CPAN::Reporter::Smoker::Safer->__installed_dists( $mask, $filter );
mask
is optional, and is same value as "mask". filter
is optional, and is same value as "filter".
AUTHOR
David Westbrook (CPAN: davidrw), <dwestbrook at gmail.com>
BUGS
Please report any bugs or feature requests to bug-cpan-reporter-smoker-safer at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=CPAN-Reporter-Smoker-Safer. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc CPAN::Reporter::Smoker::Safer
You can also look for information at:
RT: CPAN's request tracker
http://rt.cpan.org/NoAuth/Bugs.html?Dist=CPAN-Reporter-Smoker-Safer
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
SEE ALSO
http://cpantesters.org - CPAN Testers site
http://groups.google.com/group/perl.cpan.testers.discuss/browse_thread/thread/4ae7f4960beda1d4 - The 1/2009 thread with initial discussion for this module.
ACKNOWLEDGEMENTS
The cpan-testers-discuss mailling list for supporting and enhancing the concept.
COPYRIGHT & LICENSE
Copyright 2009 David Westbrook, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.