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 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
|
#!perl -T
use strict;
use warnings;
use Test::More tests => (13 + 5 + 4) * 2 + 1 + (3 + 3 + 1) + 2 + 4 + 11;
use Scope::Upper qw<uplevel HERE UP>;
# Basic
sub check (&$$) {
my ($code, $exp_in, $desc) = @_;
local $Test::Builder::Level = ($Test::Builder::Level || 0) + 1;
my $exp_out = [ 'A', map("X$_", @$exp_in), 'Z' ];
my @ret_in;
my @ret_out = sub {
@ret_in = &uplevel($code, HERE);
is_deeply \@ret_in, $exp_in, "$desc: inside";
@$exp_out;
}->('dummy');
is_deeply \@ret_out, $exp_out, "$desc: outside";
@ret_in;
}
check { return } [ ], 'empty explicit return';
check { () } [ ], 'empty implicit return';
check { return 1 } [ 1 ], 'one const scalar explicit return';
check { 2 } [ 2 ], 'one const scalar implicit return';
{
my $x = 3;
check { return $x } [ 3 ], 'one lexical scalar explicit return';
}
{
my $x = 4;
check { $x } [ 4 ], 'one lexical scalar implicit return';
}
{
our $x = 3;
check { return $x } [ 3 ], 'one global scalar explicit return';
}
{
our $x = 4;
check { $x } [ 4 ], 'one global scalar implicit return';
}
check { return 1 .. 5 } [ 1 .. 5 ], 'five const scalar explicit return';
check { 6 .. 10 } [ 6 .. 10 ], 'five const scalar implicit return';
check { 'a' .. 'z' } [ 'a' .. 'z' ], '26 const scalar implicit return';
check { [ qw<A B C> ] } [ [ qw<A B C> ] ],'one array reference implicit return';
my $cb = sub { 123 };
my ($ret) = check { $cb } [ $cb ], 'one anonymous sub implicit return';
is $ret->(), $cb->(), 'anonymous sub returned by uplevel still works';
for my $run (1 .. 3) {
my ($cb) = sub {
uplevel {
my $id = 123;
sub { ++$id };
};
}->('dummy');
is $cb->(), 124, "near closure returned by uplevel still works";
}
{
my $id = 456;
for my $run (1 .. 3) {
my ($cb) = sub {
uplevel {
my $step = 2;
sub { $id += $step };
};
}->('dummy');
is $cb->(), 456 + 2 * $run, "far closure returned by uplevel still works";
}
is $id, 456 + 2 * 3, 'captured lexical has the right value at the end';
}
# Mark
{
my $desc = 'one scalar explict return between two others, without args';
my @ret = sub {
my @ret = (1, uplevel(sub { return 2 }), 3);
is_deeply \@ret, [ 1 .. 3 ], "$desc: inside";
qw<X Y>;
}->('dummy');
is_deeply \@ret, [ qw<X Y> ], "$desc: outside";
}
{
my $desc = 'one scalar implict return between two others, without args';
my @ret = sub {
my @ret = (4, uplevel(sub { 5 }), 6);
is_deeply \@ret, [ 4 .. 6 ], "$desc: inside";
qw<X Y>;
}->('dummy');
is_deeply \@ret, [ qw<X Y> ], "$desc: outside";
}
{
my $desc = 'one scalar explict return between two others, with args';
my @ret = sub {
my @ret = (1, uplevel(sub { return 2 }, 7 .. 9, HERE), 3);
is_deeply \@ret, [ 1 .. 3 ], "$desc: inside";
qw<X Y>;
}->('dummy');
is_deeply \@ret, [ qw<X Y> ], "$desc: outside";
}
{
my $desc = 'one scalar implict return between two others, with args';
my @ret = sub {
my @ret = (4, uplevel(sub { 5 }, 7 .. 9, HERE), 6);
is_deeply \@ret, [ 4 .. 6 ], "$desc: inside";
qw<X Y>;
}->('dummy');
is_deeply \@ret, [ qw<X Y> ], "$desc: outside";
}
{
my $desc = 'complex chain of calls';
sub one { "<", two("{", @_, "}"), ">" }
sub two { "(", three("[", @_, "]"), ")" }
sub three { (uplevel { "A", "B", four(@_) } @_, UP), "Z" }
sub four {
is_deeply \@_, [ qw|[ { * } ]| ], "$desc: inside";
@_
}
my @ret = one('*');
is_deeply \@ret, [ qw|< ( A B [ { * } ] Z ) >| ], "$desc: outside";
}
# goto
SKIP: {
skip "goto to an uplevel'd stack frame does not work on perl 5\.6"
=> 2 if "$]" < 5.008;
{
my $desc = 'values returned from goto';
local $@;
my $cb = sub { 'hello' };
my @ret = eval {
'a', sub {
'b', sub {
'c', &uplevel(sub {
'd', (goto $cb), 'w'
} => UP), 'x'
}->(), 'y'
}->(), 'z'
};
is $@, '', "$desc: did not croak";
is_deeply \@ret, [ qw<a b c hello x y z> ], "$desc: returned values";
}
}
# uplevel() to uplevel()
{
my $desc = '\&uplevel as the uplevel() callback';
local $@;
eval {
my @ret = sub {
my $cxt = HERE;
my @ret = sub {
my @ret = sub {
# Note that an XS call does not need a context, so after the first uplevel
# call UP will point to the scope above the first target.
'a', uplevel(\&uplevel => (sub {
return qw<x y z>;
} => UP) => UP), 'b';
}->();
is "@ret", 'a x y z b', "$desc: returned from uplevel";
return qw<u v w>;
}->();
is "@ret", 'u v w', "$desc: returned from the first target";
return qw<m n>;
}->();
is "@ret", 'm n', "$desc: returned from the second target";
};
is $@, '', "$desc: no error";
}
# Magic
{
package Scope::Upper::TestMagic;
sub TIESCALAR {
my ($class, $cb) = @_;
bless { cb => $cb }, $class;
}
sub FETCH { $_[0]->{cb}->(@_) }
sub STORE { die "Read only magic scalar" }
}
{
tie my $mg, 'Scope::Upper::TestMagic', sub { $$ };
check { return $mg } [ $$ ], 'one magical scalar explicit return';
check { $mg } [ $$ ], 'one magical scalar implicit return';
tie my $mg2, 'Scope::Upper::TestMagic', sub { $mg };
check { return $mg2 } [ $$ ], 'one double magical scalar explicit return';
check { $mg2 } [ $$ ], 'one double magical scalar implicit return';
}
# Destruction
{
package Scope::Upper::TestTimelyDestruction;
sub new {
my ($class, $flag) = @_;
$$flag = 0;
bless { flag => $flag }, $class;
}
sub DESTROY {
${$_[0]->{flag}}++;
}
}
{
my $destroyed;
{
sub {
my $z = Scope::Upper::TestTimelyDestruction->new(\$destroyed);
is $destroyed, 0, 'destruction 1: not yet 1';
uplevel {
is $destroyed, 0, 'destruction 1: not yet 2';
$z;
}, do { is $destroyed, 0, 'destruction 1: not yet 3'; () }
}->('dummy');
is $destroyed, 1, 'destruction 1: destroyed 1';
}
is $destroyed, 1, 'destruction 1: destroyed 2';
}
SKIP: {
skip 'This fails even with a plain subroutine call on 5.8.x' => 6
if "$]" < 5.009;
my $destroyed;
{
my $z = Scope::Upper::TestTimelyDestruction->new(\$destroyed);
is $destroyed, 0, 'destruction 2: not yet 1';
sub {
is $destroyed, 0, 'destruction 2: not yet 2';
(uplevel {
is $destroyed, 0, 'destruction 2: not yet 3';
return $z;
}), do { is $destroyed, 0, 'destruction 2: not yet 4'; () }
}->('dummy');
is $destroyed, 0, 'destruction 2: not yet 5';
}
is $destroyed, 1, 'destruction 2: destroyed';
}
|