summaryrefslogtreecommitdiff
path: root/t/01_trigger.t
blob: 9418eb38c1513bdfe67fd1fc2b588fe33a97f35d (plain)
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
use strict;
use Test::More qw(no_plan);

use IO::Scalar;

use lib 't/lib';
use Foo;

ok(Foo->add_trigger(before_foo => sub { print "before_foo\n" }),
   'add_trigger in Foo');
ok(Foo->add_trigger(after_foo  => sub { print "after_foo\n" }),
   'add_trigger in foo');

my $foo = Foo->new;

{
    my $out;
    tie *STDOUT, 'IO::Scalar', \$out;
    $foo->foo;
    is $out, "before_foo\nfoo\nafter_foo\n";
}

ok(Foo->add_trigger(after_foo  => sub { print "after_foo2\n" }),
   'add_trigger in Foo');

{
    tie *STDOUT, 'IO::Scalar', \my $out;
    $foo->foo;
    is $out, "before_foo\nfoo\nafter_foo\nafter_foo2\n";
}

ok(Foo->add_trigger(after_foo  => sub { print ref $_[0] }),
   'add_trigger in Foo');

{
    tie *STDOUT, 'IO::Scalar', \my $out;
    $foo->foo;
    is $out, "before_foo\nfoo\nafter_foo\nafter_foo2\nFoo", 'class name';
}

# coverage tests

{
    # pass a non-code ref and catch the carp

    my @die;

    eval {
	local $SIG{__DIE__} = sub {push @die, @_};

	Foo->add_trigger(wrong_type => []);
    };

    like(pop(@die), qr(add_trigger[(][)] needs coderef at ), 'check for right callback param');
}
{
    # pass a multiple triggers and catch the carp

    my @die;

    eval {
       local $SIG{__DIE__} = sub {push @die, @_};

       Foo->add_trigger(hello => sub{}, world => sub{});
    };

    like(pop(@die), qr(mutiple trigger registration in one add_trigger[(][)] call is deprecated.), 'check for depricated multi-trigger add');
}