summaryrefslogtreecommitdiffstats
path: root/t/memoize.t
blob: b0125961b63bf5fe4aeab11c26fc4d97b802ebda (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
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
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Fatal;
use Test::Requires 'Test::Output';

use Eval::Closure;

# XXX this whole test isn't very useful anymore, since we no longer do
# memoization. it would be nice to bring it back at some point though, if there
# was a way to do this without breaking the other tests

plan skip_all => "disabling this test for now";

{
    my $source = 'BEGIN { warn "foo\n" } sub { $foo * 2 }';

    my $code;
    my $bar = 15;
    stderr_is {
        $code = eval_closure(
            source      => $source,
            environment => {
                '$foo' => \$bar,
            },
        );
    } "foo\n", "BEGIN was run";

    is($code->(), 30, "got the right sub");

    my $code2;
    my $baz = 8;
    stderr_is {
        $code2 = eval_closure(
            source      => $source,
            environment => {
                '$foo' => \$baz,
            },
        );
    } '', "BEGIN was not run twice";

    is($code2->(), 16, "got the right sub");
}

{
    my $source = 'BEGIN { warn "bar\n" } sub { $bar * 2 }';

    my $code;
    my $foo = 60;
    stderr_is {
        $code = eval_closure(
            source      => $source,
            environment => {
                '$bar' => \$foo,
            },
            description => 'foo',
        );
    } "bar\n", "BEGIN was run";

    is($code->(), 120, "got the right sub");

    my $code2;
    my $baz = 23;
    { local $TODO = "description breaks memoization";
    stderr_is {
        $code2 = eval_closure(
            source      => $source,
            environment => {
                '$bar' => \$baz,
            },
            description => 'baz',
        );
    } '', "BEGIN was not run twice";
    }

    is($code2->(), 46, "got the right sub");
}

{
    my $source = 'BEGIN { warn "baz\n" } sub { Carp::confess "baz" }';

    my $code;
    stderr_is {
        $code = eval_closure(
            source      => $source,
            description => 'first',
        );
    } "baz\n", "BEGIN was run";

    like(exception { $code->() }, qr/baz at first line 1/,
         "got the right description");

    my $code2;
    { local $TODO = "description breaks memoization";
    stderr_is {
        $code2 = eval_closure(
            source      => $source,
            description => 'second',
        );
    } '', "BEGIN was not run twice";
    }

    like(exception { $code2->() }, qr/baz at second line 1/,
         "got the right description");
}

done_testing;