summaryrefslogtreecommitdiffstats
path: root/t/lib/Test/Handlebars.pm
blob: c2d1fa79e59fca24e846a3bc6895a57229cf5728 (plain) (blame)
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
package Test::Handlebars;
use strict;
use warnings;

use Test::Builder;
use Test::Fatal;
use Text::Handlebars;

use Sub::Exporter -setup => {
    exports => [
        qw(render_ok render_file_ok)
    ],
    groups => {
        default => [
            qw(render_ok render_file_ok)
        ],
    },
};

my $Test = Test::Builder->new;

sub render_ok {
    return _render_ok('render_string', @_);
}

sub render_file_ok {
    return _render_ok('render', @_);
}

sub _render_ok {
    local $Test::Builder::Level = $Test::Builder::Level + 1;
    my $render_method = shift;
    my $opts = ref($_[0]) && ref($_[0]) eq 'HASH' ? shift : {};
    my ($template, $env, $expected, $desc) = @_;

    $opts->{cache} = 0;

    my $tx = Text::Handlebars->new(%$opts);

    my $exception = exception {
        local $Test::Builder::Level = $Test::Builder::Level + 5;
        $Test->is_eq($tx->$render_method($template, $env), $expected, $desc);
    };
    $Test->ok(0, "$desc (threw an exception)") if $exception;
    {
        no strict 'refs';
        local ${ caller(1) . '::TODO' } = undef unless $exception;
        use strict;
        $Test->is_eq(
            $exception,
            undef,
            "no exceptions for $desc"
        );
    }
}

1;