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
|
#!perl
use strict;
use warnings;
use Test::More;
my $extra_frames;
BEGIN {
my $class = 'Moo';
$extra_frames = 0;
if ($Throwable::_TEST_MOOSE) {
$class = 'Moose';
$extra_frames++ # the "do" in xt/moose.t adds a frame
}
eval qq{
package MyError;
use $class;
extends 'Throwable::Error';
package MyError2;
use $class;
extends 'Throwable::Error';
}.q{
use Carp qw(cluck);
around _build_stack_trace_args => sub {
my ($orig, $self) = (shift, shift);
return [
@{$self->$orig(@_)},
no_refs => 1,
respect_overload => 1,
];
};
1;
} or die $@;
}
sub throw_x {
MyError->throw({ message => 'foo bar baz' });
}
sub call_throw_x {
throw_x;
}
eval { call_throw_x; };
my $error = $@;
isa_ok($error, 'MyError', 'the error');
isa_ok($error, 'Throwable::Error', 'the error');
is($error->message, q{foo bar baz}, "error message is correct");
my $trace = $error->stack_trace;
isa_ok($trace, 'Devel::StackTrace', 'the trace');
my @frames = $trace->frames;
is(@frames, 4 + $extra_frames, "we have four frames in our trace");
is($frames[0]->subroutine, q{Throwable::throw}, 'correct frame 0');
is($frames[1]->subroutine, q{main::throw_x}, 'correct frame 1');
is($frames[2]->subroutine, q{main::call_throw_x}, 'correct frame 2');
is($frames[3]->subroutine, q{(eval)}, 'correct frame 3');
{
eval { MyError->throw('shucks howdy'); };
my $error = $@;
isa_ok($error, 'MyError', 'the error');
is($error->message, q{shucks howdy}, "error message is correct");
}
{
package HasError;
sub new { bless { error => MyError->new("flabba") } }
}
sub create_error { HasError->new->{error} }
{
my $error = create_error();
my @frames = $error->stack_trace->frames;
is(@frames, 2 + $extra_frames, "two frames from constructor");
is($frames[0]->subroutine, q{HasError::new}, 'correct constructor in frame 0');
is($frames[1]->subroutine, q{main::create_error}, 'correct frame 1');
}
{
package MyTrace;
use base 'Devel::StackTrace';
}
# make sure to catch intermittent failures due to attribute initialisation order
for my $i (1..10) {
eval { MyError->throw({ message => 'aieee!', stack_trace_class => 'MyTrace' }) };
my $error = $@;
isa_ok($error->stack_trace, 'MyTrace', "the trace (run $i)")
}
{
eval {
local $SIG{ALRM} = sub { fail('no_refs + respect_overload finishes'); exit 1; };
alarm 10;
MyError2->throw('aiee!');
};
alarm 0;
my $error = $@;
isa_ok($error, 'MyError2', 'the error');
}
{
eval { MyError->throw( { message => 'yikes!' } ); };
my $first_error = $@;
is( $first_error->previous_exception, q{}, 'no previous exception' );
eval {
$@ = 'foo';
MyError->throw( { message => 'argh!' } );
};
my $second_error = $@;
is( $second_error->previous_exception, 'foo',
'found previous exception foo' );
}
{
eval {
eval { MyError->throw( { message => 'one' } ) };
eval { MyError->throw( { message => 'two' } ) };
MyError->throw( { message => 'argh!' } );
};
my $error = $@;
like( $error->previous_exception,
qr{two}, 'found previous exception two' );
is( $error->previous_exception->message,
'two', 'previous exception is an object' );
}
{
eval {
$@ = 0;
MyError->throw( { message => 'argh!' } );
};
my $second_error = $@;
is( $second_error->previous_exception, 0, 'found previous exception 0' );
}
done_testing();
|