This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Convert t/op/die_except.t to test.pl, strict and warnings.
[perl5.git] / t / op / caller.t
1 #!./perl
2 # Tests for caller()
3
4 BEGIN {
5     chdir 't' if -d 't';
6     @INC = '../lib';
7     require './test.pl';
8     plan( tests => 81 );
9 }
10
11 my @c;
12
13 BEGIN { print "# Tests with caller(0)\n"; }
14
15 @c = caller(0);
16 ok( (!@c), "caller(0) in main program" );
17
18 eval { @c = caller(0) };
19 is( $c[3], "(eval)", "subroutine name in an eval {}" );
20 ok( !$c[4], "hasargs false in an eval {}" );
21
22 eval q{ @c = (Caller(0))[3] };
23 is( $c[3], "(eval)", "subroutine name in an eval ''" );
24 ok( !$c[4], "hasargs false in an eval ''" );
25
26 sub { @c = caller(0) } -> ();
27 is( $c[3], "main::__ANON__", "anonymous subroutine name" );
28 ok( $c[4], "hasargs true with anon sub" );
29
30 # Bug 20020517.003, used to dump core
31 sub foo { @c = caller(0) }
32 my $fooref = delete $::{foo};
33 $fooref -> ();
34 is( $c[3], "main::__ANON__", "deleted subroutine name" );
35 ok( $c[4], "hasargs true with deleted sub" );
36
37 BEGIN {
38  require strict;
39  is +(caller 0)[1], __FILE__,
40   "[perl #68712] filenames after require in a BEGIN block"
41 }
42
43 print "# Tests with caller(1)\n";
44
45 sub f { @c = caller(1) }
46
47 sub callf { f(); }
48 callf();
49 is( $c[3], "main::callf", "subroutine name" );
50 ok( $c[4], "hasargs true with callf()" );
51 &callf;
52 ok( !$c[4], "hasargs false with &callf" );
53
54 eval { f() };
55 is( $c[3], "(eval)", "subroutine name in an eval {}" );
56 ok( !$c[4], "hasargs false in an eval {}" );
57
58 eval q{ f() };
59 is( $c[3], "(eval)", "subroutine name in an eval ''" );
60 ok( !$c[4], "hasargs false in an eval ''" );
61
62 sub { f() } -> ();
63 is( $c[3], "main::__ANON__", "anonymous subroutine name" );
64 ok( $c[4], "hasargs true with anon sub" );
65
66 sub foo2 { f() }
67 my $fooref2 = delete $::{foo2};
68 $fooref2 -> ();
69 is( $c[3], "main::__ANON__", "deleted subroutine name" );
70 ok( $c[4], "hasargs true with deleted sub" );
71
72 # See if caller() returns the correct warning mask
73
74 sub show_bits
75 {
76     my $in = shift;
77     my $out = '';
78     foreach (unpack('W*', $in)) {
79         $out .= sprintf('\x%02x', $_);
80     }
81     return $out;
82 }
83
84 sub check_bits
85 {
86     local $Level = $Level + 2;
87     my ($got, $exp, $desc) = @_;
88     if (! ok($got eq $exp, $desc)) {
89         diag('     got: ' . show_bits($got));
90         diag('expected: ' . show_bits($exp));
91     }
92 }
93
94 sub testwarn {
95     my $w = shift;
96     my $id = shift;
97     check_bits( (caller(0))[9], $w, "warnings match caller ($id)");
98 }
99
100 {
101     no warnings;
102     # Build the warnings mask dynamically
103     my ($default, $registered);
104     BEGIN {
105         for my $i (0..$warnings::LAST_BIT/2 - 1) {
106             vec($default, $i, 2) = 1;
107         }
108         $registered = $default;
109         vec($registered, $warnings::LAST_BIT/2, 2) = 1;
110     }
111
112     # The repetition number must be set to the value of $BYTES in
113     # lib/warnings.pm
114     BEGIN { check_bits( ${^WARNING_BITS}, "\0" x 13, 'all bits off via "no warnings"' ) }
115     testwarn("\0" x 13, 'no bits');
116
117     use warnings;
118     BEGIN { check_bits( ${^WARNING_BITS}, $default,
119                         'default bits on via "use warnings"' ); }
120     BEGIN { testwarn($default, 'all'); }
121     # run-time :
122     # the warning mask has been extended by warnings::register
123     testwarn($registered, 'ahead of w::r');
124
125     use warnings::register;
126     BEGIN { check_bits( ${^WARNING_BITS}, $registered,
127                         'warning bits on via "use warnings::register"' ) }
128     testwarn($registered, 'following w::r');
129 }
130
131
132 # The next two cases test for a bug where caller ignored evals if
133 # the DB::sub glob existed but &DB::sub did not (for example, if 
134 # $^P had been set but no debugger has been loaded).  The tests
135 # thus assume that there is no &DB::sub: if there is one, they 
136 # should both pass  no matter whether or not this bug has been
137 # fixed.
138
139 my $debugger_test =  q<
140     my @stackinfo = caller(0);
141     return scalar @stackinfo;
142 >;
143
144 sub pb { return (caller(0))[3] }
145
146 my $i = eval $debugger_test;
147 is( $i, 11, "do not skip over eval (and caller returns 10 elements)" );
148
149 is( eval 'pb()', 'main::pb', "actually return the right function name" );
150
151 my $saved_perldb = $^P;
152 $^P = 16;
153 $^P = $saved_perldb;
154
155 $i = eval $debugger_test;
156 is( $i, 11, 'do not skip over eval even if $^P had been on at some point' );
157 is( eval 'pb()', 'main::pb', 'actually return the right function name even if $^P had been on at some point' );
158
159 print "# caller can now return the compile time state of %^H\n";
160
161 sub hint_exists {
162     my $key = shift;
163     my $level = shift;
164     my @results = caller($level||0);
165     exists $results[10]->{$key};
166 }
167
168 sub hint_fetch {
169     my $key = shift;
170     my $level = shift;
171     my @results = caller($level||0);
172     $results[10]->{$key};
173 }
174
175 {
176     my $tmpfile = tempfile();
177
178     open my $fh, '>', $tmpfile or die "open $tmpfile: $!";
179     print $fh <<'EOP';
180 #!perl -wl
181 use strict;
182
183 {
184     package KAZASH ;
185
186     sub DESTROY {
187         print "DESTROY";
188     }
189 }
190
191 @DB::args = bless [], 'KAZASH';
192
193 print $^P;
194 print scalar @DB::args;
195
196 {
197     local $^P = shift;
198 }
199
200 @DB::args = (); # At this point, the object should be freed.
201
202 print $^P;
203 print scalar @DB::args;
204
205 # It shouldn't leak.
206 EOP
207     close $fh;
208
209     foreach (0, 1) {
210         my $got = runperl(progfile => $tmpfile, args => [$_]);
211         $got =~ s/\s+/ /gs;
212         like($got, qr/\s*0 1 DESTROY 0 0\s*/,
213              "\@DB::args doesn't leak with \$^P = $_");
214     }
215 }
216
217 $::testing_caller = 1;
218
219 do './op/caller.pl' or die $@;