1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
package Test::Snapshot;
use 5.008001;
use strict;
use warnings;
require Test::More;
use Test2::API qw(context);
use Exporter 'import';
require Carp;
require File::Spec;
require File::Path;
require File::Basename;
require Data::Dumper;
use Text::Diff;
our $VERSION = "0.06";
our @EXPORT = qw(is_deeply_snapshot);
sub is_deeply_snapshot {
my ($got, $description) = @_;
my $expected = "undef\n";
my $filename = _get_filename($description);
if (-f $filename) {
no strict;
local $@;
$expected = eval { _read_file($filename) };
Test::More::diag("Error in snapshot '$filename': $@") if $@;
} else {
Test::More::diag("No snapshot filename '$filename' found");
}
my $dumper = Data::Dumper->new([$got]);
$dumper->Indent(1)->Terse(1);
$dumper->Sortkeys(1) if $dumper->can("Sortkeys");
my $dump = $dumper->Dump;
my $result = $dump eq $expected;
local $Test::Builder::Level = $Test::Builder::Level + 1;
if ($result) {
Test::More::pass($description);
} else {
Test::More::fail($description);
Test::More::diag(diff \$expected, \$dump);
if ($ENV{TEST_SNAPSHOT_UPDATE}) {
_make_dir_for($filename);
_write_file($filename, $dump);
}
}
$result;
}
sub _get_filename {
my ($description) = @_;
Carp::croak("No description given") if !defined $description;
my $ctx = context();
my ($topfile, @stack) = map $_->get_meta('Test::Builder')->{Name},
$ctx->stack->all;
$ctx->release;
push @stack, $description if defined $description;
# turn the test-file location into its sibling called "snapshots/$basename"
my ($v, $d, $f) = File::Spec->splitpath(File::Spec->rel2abs($topfile));
unshift @stack, $f;
@stack = map { my $t = $_; $t =~ s#[^a-z\-0-9]+#_#gi; $t } @stack;
my $basename = pop @stack;
File::Spec->catpath(
$v,
File::Spec->catdir($d, 'snapshots', @stack),
$basename,
);
}
sub _read_file {
my ($filename) = @_;
local $/;
open my $fh, '<', $filename or die "$filename: $!\n";
<$fh>;
}
sub _write_file {
my ($filename, $data) = @_;
open my $fh, '>', $filename or die "$filename: $!\n";
print $fh $data or die "$filename: $!\n";
}
sub _make_dir_for {
my ($filename) = @_;
my $dir = File::Basename::dirname($filename);
File::Path::make_path($dir); # will croak if fails
}
=encoding utf-8
=head1 NAME
Test::Snapshot - test against data stored in automatically-named file
=begin markdown
# PROJECT STATUS
| OS | Build status |
|:-------:|--------------:|
| Linux | [](https://travis-ci.org/mohawk2/Test-Snapshot) |
[](https://metacpan.org/pod/Test::Snapshot)
=end markdown
=head1 SYNOPSIS
use Test::Snapshot;
my $got = function_generating_data();
is_deeply_snapshot $got, 'test description'; # could also be in a subtest
# command line:
TEST_SNAPSHOT_UPDATE=1 prove -lr t
# or
TEST_SNAPSHOT_UPDATE=1 make test
# if your code means the expected data should change, then inspect with
git diff -w
=head1 DESCRIPTION
Not connected with L<Test::Snapshots>, which is based on a similar
concept but for running executables.
Implements a function to automate the storing and updating of expected
test outputs. This is based on the idea known in frontend development
circles as "snapshot testing", hence the module name.
These snapshots will be stored in files whose names are automatically
generated from:
=over
=item the test filename (C<$0>)
=item any subtests' names surrounding and including this one
=item the test description if any
=back
If that file is not present, it will be treated as though it contains
an C<undef>.
=head1 FUNCTIONS
=head2 is_deeply_snapshot
Exported by default. Takes two mandatory arguments:
=over
=item
The "got" data (mandatory), a scalar which might be a reference. It will
be passed to L<Test::More/is_deeply> to be compared to the snapshotted
data.
=item
A text description of this test (mandatory). It will be used for reporting
results, but also to derive the filename in which the "expected" data
is stored.
=back
Will return the truth value of whether the test passed this time -
see below for automatic updating of "expected" data.
=head1 ENVIRONMENT
To have this module automatically update its "expected" data, set
environment variable C<TEST_SNAPSHOT_UPDATE> to a true value. If the
got and expected data do not match, a test failure will be reported,
but the "expected" data will be updated anyway.
This means it is safe to always have the variable set to a true value,
so long as you are using source control (you I<are> using source control,
right?) and check your diffs before committing.
=head1 FILE FORMAT
The "expected" data will be stored in a format generated by
L<Data::Dumper/Dumper>, with these values set to true, to maximise
readability (and to minimise diffs) of the stored data:
=over
=item Sortkeys
=item Indent
=item Terse
=back
=head1 AUTHOR
Ed J, C<< <etj at cpan.org> >>
=head1 LICENSE
Copyright (C) Ed J
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
1;
|