Fennec(3pm) | User Contributed Perl Documentation | Fennec(3pm) |
Fennec - A testers toolbox, and best friend
Fennec ties together several testing related modules and enhances their functionality in ways you don't get loading them individually. Fennec makes testing easier, and more useful.
This module is deprecated in favor of Test2::Suite, specifically Test2::Tools::Spec and Test2::Bundle::SpecDeclare.
There are 2 ways to use Fennec. You can use Fennec directly, or you can use the shiny sugar-coated interface provided by the add-on module Fennec::Declare.
If Devel::Declare and its awesome power of syntax specification scares you, you can always write your Fennec tests in the stone age like this... just don't miss any semicolons.
t/some_test.t:
package TEST::SomeTest; use strict; use warnings; use Fennec( parallel => 3, test_sort => 'random', ); # This is optional, there is a default 'new' if you do not override it. sub new { ... } # Test blocks are called as methods on an instance of your test package. tests group_1 => sub { my $self = shift; ok( 1, "1 is true" ); }; test group_2 => ( todo => 'This is not ready yet', code => sub { my $self = shift; ok( 0, "Not ready" ); } ); # It is important to always end a Fennec test with this function call. done_testing();
Note: In order to use this you MUST install Fennec::Declare which is a separate distribution on cpan. This module is separate because it uses the controversial Devel::Declare module.
t/some_test.t:
package TEST::SomeTest; use strict; use warnings; use Fennec::Declare( parallel => 3, test_sort => 'random', ); # This is optional, there is a default 'new' if you do not override it. sub new { ... } # Test blocks are called as methods on an instance of your test package. tests group_1 { # Note: $self is automatically shifted for you. ok( $self, "Got self automatically" ); }; test group_2 ( todo => 'This is not ready yet' ) { # Note: $self is automatically shifted for you. ok( 0, "Not ready" ); } # It is important to always end a Fennec test with this function call. done_testing;
With Fennec you can specify the "FENNEC_TEST" environment variable with either a line number or test block name. Only tests defined on that line, or with that name will be run.
Fennec always seeds rand with the current date. This means that on any given date the test run order will always be the same. However different days test different orders. You can always specify the "FENNEC_SEED" environment variable to override the value used to seed rand.
Provided by Test::Workflow
Provided by Test::Workflow
Provided by Mock::Quick
Note: These can be overridden either on import, or by subclassing Fennec.
use Fennec class => 'Foo::Bar'; ok( $INC{'Foo/Bar.pm'}, "Loaded 'Foo::Bar'" ); is( $CLASS, 'Foo::Bar', "We have \$CLASS" ); is( class(), 'Foo::Bar', "We have class()" ); tests method => sub { my $self = shift; is( $self->class(), 'Foo::Bar', "We have class() method" ); }; done_testing;
You can also set this using the $FENNEC_PARALLEL environment variable.
Example:
26150,26151,26152,26153,26154 0 26150 BLOCK 54->78 child: outer_wrap, , , , , ,1 26151 BLOCK 47->52 test: class_store, , , , 0 26150 MOCK Foo => (outer), , , , , 0 26150 BLOCK 58->61 before_all: ba, , , , , , ,2 26152 MOCK Foo => (outer), , , , ,2 26152 BLOCK 63->66 before_each: be, , , , ,2 26152 BLOCK 68->72 test: the_check, , , , , ,3 26153 BLOCK 16->31 test: object, , , , , ,4 26154 BLOCK 33->45 test: class,
You can use this in a spreadsheet program, or use this command to look at it in a more friendly way.
column -s, -t < '/path/to/tempfile' | less -#2 -S
You generally won't need to specify this, unless you use a test infrastructure that is neither TAP nore Test::Builder based.
Code block accepts a list of Test::Workflow::Test objects.
If you need to specify import arguments for any specific util class, you can use the class name as the key with an arrayref containing the arguments.
use Fennec( utils => [ 'Some::Module' ], 'Some::Module' => [ arg => $val, ... ], );
Never put tests below the done_testing call. If you want tests to run AFTER the RSPEC workflow completes, you can pass done_testing a coderef with the tests.
done_testing( sub { ok( 1, "This runs after the RSPEC workflow" ); });
See Test::Workflow or "EXAMPLES" for more details.
See Mock::Quick or "EXAMPLES" for more details.
See Test::More, Test::Warn, and Test::Exception
Examples can be the best form of documentation.
VANILLA SYNTAX
t/simple.t
use strict; use warnings; use Fennec; use_ok 'Data::Dumper'; tests dumper => sub { my $VAR1; is_deeply( eval Dumper({ a => 1 }), { a => 1 }, "Serialize and De-Serialize" ); }; tests future => ( todo => "Not ready yet", code => sub { ok( 0, "I still have to write these" ); }, ); done_testing;
DECLARE SYNTAX
t/simple.t
use strict; use warnings; use Fennec::Declare; use_ok 'Data::Dumper'; tests dumper { my $VAR1; is_deeply( eval Dumper({ a => 1 }), { a => 1 }, "Serialize and De-Serialize" ); is( eval { no strict; Dumper( { a => 1 } ) }, { a => 1 }, "Serialize and De-Serialize" ); } tests future( todo => "Not ready yet" ) { ok( 0, "I still have to write these" ); } done_testing;
This example shows 4 conditions ($letter as 'a', 'b', 'c', and 'd'). It also has 2 test blocks, one that verifies $letter is a letter, the other verifies it is lowercase. Each test block will be run once for each condition, 2*4=8, so in total 8 tests will be run.
VANILLA
sample.t:
use strict; use warnings; use Fennec; my $letter; case a => sub { $letter = 'a' }; case b => sub { $letter = 'b' }; case c => sub { $letter = 'c' }; case d => sub { $letter = 'd' }; tests is_letter => sub { like( $letter, qr/^[a-z]$/i, "Got a letter" ); }; tests is_lowercase => sub { is( $letter, lc( $letter ), "Letter is lowercase" ); }; done_testing;
OBJECT ORIENTED
sample.t
use strict; use warnings; use Fennec; sub letter { my $self = shift; ( $self->{letter} ) = @_ if @_; return $self->{letter}; } describe letters => sub { case a => sub { shift->letter('a') }; case b => sub { shift->letter('b') }; case c => sub { shift->letter('c') }; case d => sub { shift->letter('d') }; tests is_letter => sub { my $self = shift; like( $self->letter, qr/^[a-z]$/i, "Got a letter" ); }; tests is_lowercase => sub { my $self = shift; is( $self->letter, lc( $self->letter ), "Letter is lowercase" ); }; }; done_testing;
DECLARE
Note: no need to shift $self, it is done for you!
sample.t
use strict; use warnings; use Fennec::Declare; sub letter { my $self = shift; ( $self->{letter} ) = @_ if @_; return $self->{letter}; } describe letters { case a { $self->letter('a') } case b { $self->letter('b') } case c { $self->letter('c') } case d { $self->letter('d') } tests is_letter { like( $self->letter, qr/^[a-z]$/i, "Got a letter" ); } tests is_lowercase { is( $self->letter, lc( $self->letter ), "Letter is lowercase" ); } } done_testing;
See Mock::Quick for more details
OBJECT ON THE FLY
my $obj = qobj( foo => 'foo', bar => qmeth { 'bar' }, baz => sub { 'baz' }, ); is( $obj->foo, 'foo' ); is( $obj->bar, 'bar' ); is( ref $obj->baz, 'CODE', "baz is a method that returns a coderef" ); # All methods autovivify as read/write accessors: lives_ok { $obj->blah( 'x' ) }; # use qstrict() to make an object that does not autovivify accessors.
SCOPE OF MOCKS IN FENNEC
With vanilla Mock::Quick a mock is destroyed when the control object is destroyed.
my $control = qtakeover Foo => (blah => 'blah'); is( Foo->blah, 'blah', "got mock" ); $control = undef; ok( !Foo->can('blah'), "Mock destroyed" ); # WITHOUT FENNEC This issues a warning, the $control object is ignored so # the mock is destroyed before it can be used. qtakover Foo => (blah => 'blah'); ok( !Foo->can('blah'), "Mock destroyed before it could be used" );
With the workflow support provided by Fennec, you can omit the control object and let the mock be scoped implicitly.
tests implicit_mock_scope => sub { my $self = shift; can_ok( $self, 'QINTERCEPT' ); qtakeover Foo => (blah => sub { 'blah' }); is( Foo->blah, 'blah', "Mock not auto-destroyed" ); }; describe detailed_implicit_mock_scope => sub { qtakeover Foo => ( outer => 'outer' ); ok( !Foo->can( 'outer' ), "No Leak" ); before_all ba => sub { qtakeover Foo => ( ba => 'ba' ); can_ok( 'Foo', qw/outer ba/ ); }; before_each be => sub { qtakeover Foo => ( be => 'be' ); can_ok( 'Foo', qw/outer ba be/ ); }; tests the_check => sub { qtakeover Foo => ( inner => 'inner' ); can_ok( 'Foo', qw/outer ba be inner/ ); }; ok( !Foo->can( 'outer' ), "No Leak" ); ok( !Foo->can( 'ba' ), "No Leak" ); ok( !Foo->can( 'be' ), "No Leak" ); ok( !Foo->can( 'inner' ), "No Leak" ); };
TAKEOVER AN EXISTING CLASS
require Some::Class; my $control = qtakeover 'Some::Class' => ( # Override some methods: foo => sub { 'foo' }, bar => sub { 'bar' }, # For methods that return a simple value you don't actually need to # wrap them in a sub. baz => 'bat', ); is( Some::Class->foo, 'foo' ); is( Some::Class->bar, 'bar' ); # Use the control object to make another override $control->override( foo => 'FOO' ); is( Some::Class->foo, 'FOO' ); # Original class is restored when $control falls out of scope. $control = undef;
MOCK A CLASS INSTEAD OF LOADING THE REAL ONE
This will prevent the real class from loading if code tries to "require" or "use" it. However when the control object falls out of scope you will be able to load the real one again.
my $control = qimplement 'Some::Class' => ( my_method => sub { ... } simple => 'foo', );
MOCK AN ANONYMOUS CLASS
my $control = qclass( -with_new => 1, # Make a constructor for us method => sub { ... }, simple => 'foo', ); my $obj = $control->package->new;
This is a test library that verifies your test file uses strict in the first 3 lines. You can also pass "with_tests => [ 'Some::Test::Lib' ]" as an import argument to Fennec. This matters because you can subclass Fennec to always include this library.
t/test.t
use strict; use warnings; use Fennec; with_tests 'Some::Test::Lib'; done_testing;
lib/Some/Test/Lib.pm
package Some::Test::Lib; use Test::Workflow; use Test::More; use Scalar::Util qw/blessed/; tests check_use_strict => sub { my $self = shift; my $class = blessed $self; my $file = $class; $file =~ s{::}{/}g; $file .= '.pm'; my $full = $INC{$file}; ok( -e $full, "Found path and filename for $class" ); open( my $fh, '<', $full ) || die $!; my $found = 0; for ( 1 .. 3 ) { $found = <$fh> =~ m/^\s*use strict;\s*$/; last if $found; } close($fh); ok( $found, "'use strict;' is in the first 3 lines of the test file" ); } 1;
You cannot put any tests under "done_testing()" Doing so will cause problems. However you can put tests IN done_testing.
use strict; use warnings; use Fennec; my $foo = 1; is( $foo, 1, "foo is 1" ); done_testing( sub { is( $foo, 1, "foo is still 1" ); } );
The following test will produce output similar to the following. Keep in mind that the concurrent nature of Fennec means that the lines for each process may appear out of order relative to lines from other processes. Lines for any given process will always be in the correct order though.
Spacing has been added, and process output has been grouped together, except for the main process to demonstrate that after_all really does come last.
# PID OUTPUT #--------------------------------------------- 7253 describe runs long before everything else 7253 before_all runs first 7254 case runs between before_all and before_each 7254 before_each runs just before tests 7254 tests run in the middle 7254 after_each runs just after tests 7255 before_each runs just before tests 7255 This test inherits the before and after blocks from the parent describe. 7255 after_each runs just after tests 7253 after_all runs last.
sample.t
use strict; use warnings; use Fennec; describe order => sub { print "$$ describe runs long before everything else\n"; before_all setup_a => sub { print "$$ before_all runs first\n"; }; case a_case => sub { print "$$ case runs between before_all and before_each\n"; }; before_each setup_b => sub { print "$$ before_each runs just before tests\n"; }; tests a_test => sub { print "$$ tests run in the middle\n"; }; after_each teardown_b => sub { print "$$ after_each runs just after tests\n"; }; after_all teardown_a => sub { print "$$ after_all runs last.\n"; }; describe nested => sub { tests b_test => sub { print "$$ This test inherits the before/after/case blocks from the parent describe.\n"; }; }; }; done_testing;
The manual can be found here: Fennec::Manual it is a sort of Nexus for documentation, including this document.
Insert this into your .vimrc file to bind the F8 key to running the test block directly under your cursor. You can be on any line of the test block (except in some cases the first or last line.
function! RunFennecLine() let cur_line = line(".") exe "!FENNEC_TEST='" . cur_line . "' prove -v -I lib %" endfunction " Go to command mode, save the file, run the current test :map <F8> <ESC>:w<cr>:call RunFennecLine()<cr> :imap <F8> <ESC>:w<cr>:call RunFennecLine()<cr>
The best option is to use prove with the -j flag.
Note: The following is no longer a recommended practice, it is however still supported
You can also create a custom runner using a single .t file to run all your Fennec tests. This has caveats though, such as not knowing which test file had problems without checking the failure messages.
This will find all *.ft and/or *.pm modules under the t/ directory. It will load and run any found. These will be run in parallel
t/runner.t
#!/usr/bin/perl
use strict;
use warnings;
# Paths are optional, if none are specified it defaults to 't/' use Fennec::Finder( 't/' ); # The next lines are optional, if you have no custom configuration to apply # you can jump right to 'done_testing'. # Get the runner (singleton) my $runner = Fennec::Finder->new; $runner->parallel( 3 ); # You must call this. run();
Chad Granum exodist7@gmail.com
Copyright (C) 2013 Chad Granum
Fennec is free software; Standard perl license (GPL and Artistic).
Fennec is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the license for more details.
2022-12-02 | perl v5.36.0 |