File Coverage

File:t/lib/Test/BinRegression.pm
Coverage:69.1%

linestmtbrancondsubpodtimecode
1package Test::BinRegression;
2
3
2
2
2
0
0
0
use warnings;
4
2
2
2
0
0
0
use strict;
5
2
2
2
0
0
0
use FileHandle;
6
7 - 15
=head1 NAME

Test::Regression - Test library that can be run in two modes; one to generate outputs and a second to compare against them

=head1 VERSION

Version 0.05

=cut
16
17our $VERSION = '0.05';
18
19 - 40
=head1 SYNOPSIS

  use Test::Regression;

  # read and write the regression file while generating os-specific newlines
  ok_regression(sub {return "hello world"}, "t/out/hello_world.txt");

  # read and write the file without generating os-specific newlines
  ok_regression(sub {return "hello world"}, "t/out/hello_world.txt", 'binmode');

=head1 DESCRIPTION

Using the various Test:: modules you can compare the output of a function against what you expect.
However if the output is complex and changes from version to version, maintenance of the expected
output could be costly. This module allows one to use the test code to generate the expected output,
so that if the differences with model output are expected, one can easily refresh the model output.

=head1 EXPORT

ok_regression

=cut
41
42
2
2
2
0
0
0
use Test::Builder::Module;
43
2
2
2
0
0
0
use Test::Differences;
44
2
2
2
0
0
0
use base qw(Test::Builder::Module);
45our @EXPORT = qw(ok_regression);
46my $CLASS = __PACKAGE__;
47
48 - 62
=head1 FUNCTIONS

=head2 ok_regression

This function requires two arguments: a CODE ref and a file path.
The CODE ref is expected to return a SCALAR string which
can be compared against previous runs.
If the TEST_REGRESSION_GEN is set to a true value, then the CODE ref is run and the
output written to the file. Otherwise the output of the
file is compared against the contents of the file.
There is a third optional argument which is the test name.
There is a fourth optional argument which is a boolean which enables read/write
with bin mode if set to true.

=cut
63
64sub ok_regression {
65
8
0
0
        my $code_ref = shift;
66
8
0
        my $file = shift;
67
8
0
        my $test_name = shift;
68
8
0
        my $bin_mode = shift;
69
8
8
0
0
        my $output = eval {&$code_ref();};
70
8
0
        my $tb = $CLASS->builder;
71
8
0
        if ($@) {
72
0
0
                $tb->diag($@);
73
0
0
                return $tb->ok(0, $test_name);
74        }
75
76        # generate the output files if required
77
8
0
        if ($ENV{TEST_REGRESSION_GEN}) {
78
0
0
                my $fh = FileHandle->new;
79
0
0
                $fh->open(">$file") || return $tb->ok(0, "$test_name: cannot open $file");
80
0
0
                $fh->binmode if $bin_mode;
81
0
0
                if (length $output) {
82
0
0
                        $fh->print($output) || return $tb->ok(0, "actual write failed: $file");
83                }
84
0
0
                return $tb->ok(1, $test_name);
85        }
86
87        # compare the files
88
8
0
        return $tb->ok(0, "$test_name: cannot read $file") unless -r $file;
89
8
0
        my $fh = FileHandle->new;
90
8
0
        $fh->open("<$file") || return $tb->ok(0, "$test_name: cannot open $file");
91
8
15625
        $fh->binmode if $bin_mode;
92
8
0
        my $content = join '', (<$fh>);
93
8
0
        eq_or_diff($output, $content, $test_name);
94
8
0
        return $output eq $file;
95}
96
97 - 172
=head1 ENVIRONMENT VARIABLES

=head2 TEST_REGRESSION_GEN

If the TEST_REGRESSION_GEN environment file is unset or false in a perl sense, then the named output files must exist and be readable and the
test will run normally comparing the outputs of the CODE refs against the contents of those files. If the environment variable is true in
a perl sense, then model output files will be overwritten with the output of the CODE ref.

=head1 AUTHOR

Nicholas Bamber, C<< <nicholas at periapt.co.uk> >>

=head1 BUGS

Please report any bugs or feature requests to C<bug-test-regression at rt.cpan.org>, or through
the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Regression>.  I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.

=head2 testing of STDERR

The testing of stderr from this module is not as thorough as I would like. L<Test::Builder::Tester> allows turning
off of stderr checking but not matching by regular expression. Handcrafted efforts currently fall foul of L<Test::Harness>.
Still it is I believe adequately tested in terms of coverage.

=head1 SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Test::Regression


You can also look for information at:

=over 4

=item * RT: CPAN's request tracker

L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-Regression>

=item * AnnoCPAN: Annotated CPAN documentation

L<http://annocpan.org/dist/Test-Regression>

=item * CPAN Ratings

L<http://cpanratings.perl.org/d/Test-Regression>

=item * Search CPAN

L<http://search.cpan.org/dist/Test-Regression/>

=back


=head1 ACKNOWLEDGEMENTS

=over

=item Some documentation improvements have been suggested by toolic (http://perlmonks.org/?node_id=622051).

=item Thanks to Filip GraliE<0x144>ski for pointing out I need to test against output of zero length and providing a patch.

=back

=head1 COPYRIGHT & LICENSE

Copyright 2009 Nicholas Bamber.

This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.


=cut
173
1741; # End of Test::Regression