use strict;
our $VERSION = '1.000016';
use Test2::Harness::Util qw/mod2file/;
option_group {prefix => 'finder', category => "Finder Options", builds => 'Test2::Harness::Finder'} => sub {
option finder => (
type => 's',
default => 'Test2::Harness::Finder',
description => 'Specify what Finder subclass to use when searching for files/processing the file list. Use the "+" prefix to specify a fully qualified namespace, otherwise Test2::Harness::Finder::XXX namespace is assumed.',
long_examples => [' MyFinder', ' +Test2::Harness::Finder::MyFinder'],
pre_command => 1,
adds_options => 1,
pre_process => \&finder_pre_process,
action => \&finder_action,
builds => undef, # This option is not for the build
);
option extension => (
field => 'extensions',
type => 'm',
alt => ['ext'],
description => 'Specify valid test filename extensions, default: t and t2',
);
option search => (
type => 'm',
description => 'List of tests and test directories to use instead of the default search paths. Typically these can simply be listed as command line arguments without the --search prefix.',
);
option no_long => (
description => "Do not run tests that have their duration flag set to 'LONG'",
);
option only_long => (
description => "Only run tests that have their duration flag set to 'LONG'",
);
option durations => (
type => 's',
long_examples => [' file.json', ' http://example.com/durations.json'],
short_examples => [' file.json', ' http://example.com/durations.json'],
description => "Point at a json file or url which has a hash of relative test filenames as keys, and 'SHORT', 'MEDIUM', or 'LONG' as values. This will override durations listed in the file headers. An exception will be thrown if the durations file or url does not work.",
);
option maybe_durations => (
type => 's',
long_examples => [' file.json', ' http://example.com/durations.json'],
short_examples => [' file.json', ' http://example.com/durations.json'],
description => "Point at a json file or url which has a hash of relative test filenames as keys, and 'SHORT', 'MEDIUM', or 'LONG' as values. This will override durations listed in the file headers. An exception will be thrown if the durations file or url does not work.",
);
option exclude_file => (
field => 'exclude_files',
type => 'm',
long_examples => [' t/nope.t'],
short_examples => [' t/nope.t'],
description => "Exclude a file from testing",
);
option exclude_pattern => (
field => 'exclude_patterns',
type => 'm',
long_examples => [' t/nope.t'],
short_examples => [' t/nope.t'],
description => "Exclude a pattern from testing, matched using m/\$PATTERN/",
);
option exclude_list => (
field => 'exclude_lists',
type => 'm',
long_examples => [' file.txt', ' http://example.com/exclusions.txt'],
short_examples => [' file.txt', ' http://example.com/exclusions.txt'],
description => "Point at a file or url which has a new line separated list of test file names to exclude from testing. Starting a line with a '#' will comment it out (for compatibility with Test2::Aggregate list files).",
);
option default_search => (
type => 'm',
description => "Specify the default file/dir search. defaults to './t', './t2', and 'test.pl'. The default search is only used if no files were specified at the command line",
);
option default_at_search => (
type => 'm',
description => "Specify the default file/dir search when 'AUTHOR_TESTING' is set. Defaults to './xt'. The default AT search is only used if no files were specified at the command line",
);
post \&_post_process;
};
sub _post_process {
my %params = @_;
my $settings = $params{settings};
$settings->finder->field(default_search => ['./t', './t2', 'test.pl'])
unless $settings->finder->default_search && @{$settings->finder->default_search};
$settings->finder->field(default_at_search => ['./xt'])
unless $settings->finder->default_at_search && @{$settings->finder->default_at_search};
@{$settings->finder->extensions} = ('t', 't2')
unless @{$settings->finder->extensions};
s/^\.//g for @{$settings->finder->extensions};
}
sub normalize_class {
my ($class) = @_;
$class = "Test2::Harness::Finder::$class"
unless $class =~ s/^\+//;
my $file = mod2file($class);
require $file;
return $class;
}
sub finder_pre_process {
my %params = @_;
my $class = $params{val} or return;
$class = normalize_class($class);
return unless $class->can('options');
$params{options}->include_from($class);
}
sub finder_action {
my ($prefix, $field, $raw, $norm, $slot, $settings, $handler, $options) = @_;
my $class = $norm;
$class = normalize_class($class);
if ($class->can('options')) {
$options->populate_pre_defaults();
$options->populate_cmd_defaults();
}
$class->munge_settings($settings, $options) if $class->can('munge_settings');
$handler->($slot, $class);
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
App::Yath::Options::Finder - Finder options for Yath.
=head1 DESCRIPTION
This is where the command line options for discovering test files are defined.
=head1 PROVIDED OPTIONS
=head2 YATH OPTIONS (PRE-COMMAND)
=head3 Finder Options
=over 4
=item --finder MyFinder
=item --finder +Test2::Harness::Finder::MyFinder
=item --no-finder
Specify what Finder subclass to use when searching for files/processing the file list. Use the "+" prefix to specify a fully qualified namespace, otherwise Test2::Harness::Finder::XXX namespace is assumed.
=back
=head2 COMMAND OPTIONS
=head3 Finder Options
=over 4
=item --default-at-search ARG
=item --default-at-search=ARG
=item --no-default-at-search
Specify the default file/dir search when 'AUTHOR_TESTING' is set. Defaults to './xt'. The default AT search is only used if no files were specified at the command line
Can be specified multiple times
=item --default-search ARG
=item --default-search=ARG
=item --no-default-search
Specify the default file/dir search. defaults to './t', './t2', and 'test.pl'. The default search is only used if no files were specified at the command line
Can be specified multiple times
=item --durations file.json
=item --no-durations
Point at a json file or url which has a hash of relative test filenames as keys, and 'SHORT', 'MEDIUM', or 'LONG' as values. This will override durations listed in the file headers. An exception will be thrown if the durations file or url does not work.
=item --exclude-file t/nope.t
=item --no-exclude-file
Exclude a file from testing
Can be specified multiple times
=item --exclude-list file.txt
=item --no-exclude-list
Point at a file or url which has a new line separated list of test file names to exclude from testing. Starting a line with a '#' will comment it out (for compatibility with Test2::Aggregate list files).
Can be specified multiple times
=item --exclude-pattern t/nope.t
=item --no-exclude-pattern
Exclude a pattern from testing, matched using m/$PATTERN/
Can be specified multiple times
=item --extension ARG
=item --extension=ARG
=item --ext ARG
=item --ext=ARG
=item --no-extension
Specify valid test filename extensions, default: t and t2
Can be specified multiple times
=item --maybe-durations file.json
=item --maybe-durations http://example.com/durations.json
=item --no-maybe-durations
Point at a json file or url which has a hash of relative test filenames as keys, and 'SHORT', 'MEDIUM', or 'LONG' as values. This will override durations listed in the file headers. An exception will be thrown if the durations file or url does not work.
=item --no-long
=item --no-no-long
Do not run tests that have their duration flag set to 'LONG'
=item --only-long
=item --no-only-long
Only run tests that have their duration flag set to 'LONG'
=item --search ARG
=item --search=ARG
=item --no-search
List of tests and test directories to use instead of the default search paths. Typically these can simply be listed as command line arguments without the --search prefix.
Can be specified multiple times
=back
=head1 SOURCE
The source code repository for Test2-Harness can be found at
=head1 MAINTAINERS
=over 4
=item Chad Granum E<lt>exodist@cpan.orgE<gt>
=back
=head1 AUTHORS
=over 4
=item Chad Granum E<lt>exodist@cpan.orgE<gt>
=back
=head1 COPYRIGHT
Copyright 2020 Chad Granum E<lt>exodist7@gmail.comE<gt>.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
=cut