Test2::Harness::Finder(3pm) | User Contributed Perl Documentation | Test2::Harness::Finder(3pm) |
Test2::Harness::Finder - Library that searches for test files
The finder is responsible for locating test files that should be run. You can subclass the finder and instruct yath to use your subclass.
To use Test2::Harness::Finder::MyFinder:
$ yath test --finder MyFinder
To use Another::Finder
$ yath test --finder +Another::Finder
By default "Test2::Harness::Finder::" is prefixed onto your custom finder, use '+' before the class name or prevent this.
use parent 'Test2::Harness::Finder'; use Test2::Harness::TestFile; # Custom finders may provide their own options if desired. # This is optional. use App::Yath::Options; option foo => ( ... ); # This is the main method to override. sub find_project_files { my $self = shift; my ($plugins, $settings, $search) = @_; return [ Test2::Harness::TestFile->new(...), Test2::Harness::TestFile->new(...), ..., ]; }
These are important state methods, as well as utility methods for use in your subclasses.
$plugins is a list of plugins, some may be class names, others may be instances.
$settings is an Test2::Harness::Settings instance.
Note: In many cases it is better to override "find_project_files()" in your subclasses.
Note: The result is cached, see pull_durations() to refresh the data.
This is a utility method that verifies the file is not in an exclude list/pattern. The reasons are provided back in case you need to inform the user.
The default "find_files()" implementation is this:
sub find_files { my $self = shift; my ($plugins, $settings) = @_; return $self->find_multi_project_files($plugins, $settings) if $self->multi_project; return $self->find_project_files($plugins, $settings, $self->search); }
Each one returns an arrayref of Test2::Harness::TestFile instances.
Note that "find_multi_project_files()" uses "find_project_files()" internall, once per project directory.
$plugins is a list of plugins, some may be class names, others may be instances.
$settings is an Test2::Harness::Settings instance.
$search is an arrayref of search paths.
duration_data() is a cached version of this. This method will refresh the cache for the other.
See App::Yath::Options::Finder for up to date documentation on these.
The source code repository for Test2-Harness can be found at http://github.com/Test-More/Test2-Harness/.
Copyright 2020 Chad Granum <exodist7@gmail.com>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See http://dev.perl.org/licenses/
2023-10-04 | perl v5.36.0 |