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 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
|
#!./perl
BEGIN {
chdir 't' if -d 't';
require './test.pl';
set_up_inc('../lib');
}
plan tests => 26;
my @expect = qw(
b1
b2
b3
b4
b6-c
b7
u6
u5-c
u1
c3
c2-c
c1
i1
i2
b5
u2
u3
u4
b6-r
u5-r
e2
e1
);
my $expect = ":" . join(":", @expect);
fresh_perl_is(<<'SCRIPT', $expect,{switches => [''], stdin => '', stderr => 1 },'Order of execution of special blocks');
BEGIN {print ":b1"}
END {print ":e1"}
BEGIN {print ":b2"}
{
BEGIN {BEGIN {print ":b3"}; print ":b4"}
}
CHECK {print ":c1"}
INIT {print ":i1"}
UNITCHECK {print ":u1"}
eval 'BEGIN {print ":b5"}';
eval 'UNITCHECK {print ":u2"}';
eval 'UNITCHECK {print ":u3"; UNITCHECK {print ":u4"}}';
"a" =~ /(?{UNITCHECK {print ":u5-c"};
CHECK {print ":c2-c"};
BEGIN {print ":b6-c"}})/x;
{
use re 'eval';
my $runtime = q{
(?{UNITCHECK {print ":u5-r"};
CHECK {print ":c2-r"};
BEGIN {print ":b6-r"}})/
};
"a" =~ /$runtime/x;
}
eval {BEGIN {print ":b7"}};
eval {UNITCHECK {print ":u6"}};
eval {INIT {print ":i2"}};
eval {CHECK {print ":c3"}};
END {print ":e2"}
SCRIPT
@expect =(
# BEGIN
qw( main bar myfoo foo ),
# UNITCHECK
qw( foo myfoo bar main ),
# CHECK
qw( foo myfoo bar main ),
# INIT
qw( main bar myfoo foo ),
# END
qw(foo myfoo bar main ));
$expect = ":" . join(":", @expect);
fresh_perl_is(<<'SCRIPT2', $expect,{switches => [''], stdin => '', stderr => 1 },'blocks interact with packages/scopes');
BEGIN {$f = 'main'; print ":$f"}
UNITCHECK {print ":$f"}
CHECK {print ":$f"}
INIT {print ":$f"}
END {print ":$f"}
package bar;
BEGIN {$f = 'bar';print ":$f"}
UNITCHECK {print ":$f"}
CHECK {print ":$f"}
INIT {print ":$f"}
END {print ":$f"}
package foo;
{
my $f;
BEGIN {$f = 'myfoo'; print ":$f"}
UNITCHECK {print ":$f"}
CHECK {print ":$f"}
INIT {print ":$f"}
END {print ":$f"}
}
BEGIN {$f = "foo";print ":$f"}
UNITCHECK {print ":$f"}
CHECK {print ":$f"}
INIT {print ":$f"}
END {print ":$f"}
SCRIPT2
@expect = qw(begin unitcheck check init end);
$expect = ":" . join(":", @expect);
fresh_perl_is(<<'SCRIPT3', $expect,{switches => [''], stdin => '', stderr => 1 },'can name blocks as sub FOO');
sub BEGIN {print ":begin"}
sub UNITCHECK {print ":unitcheck"}
sub CHECK {print ":check"}
sub INIT {print ":init"}
sub END {print ":end"}
SCRIPT3
fresh_perl_is(<<'SCRIPT70614', "still here",{switches => [''], stdin => '', stderr => 1 },'eval-UNITCHECK-eval (bug 70614)');
eval "UNITCHECK { eval 0 }"; print "still here";
SCRIPT70614
# [perl #78634] Make sure block names can be used as constants.
use constant INIT => 5;
::is INIT, 5, 'constant named after a special block';
# [perl #108794] context
fresh_perl_is(<<'SCRIPT3', <<expEct,{stderr => 1 },'context');
sub context {
print qw[void scalar list][wantarray + defined wantarray], "\n"
}
BEGIN {context}
UNITCHECK {context}
CHECK {context}
INIT {context}
END {context}
SCRIPT3
void
void
void
void
void
expEct
fresh_perl_is('END { print "ok\n" } INIT { bless {} and exit }', "ok\n",
{}, 'null PL_curcop in newGP');
# [perl #2754] exit(0) didn't exit from inside a UNITCHECK or CHECK block
my $testblocks =
join(" ",
"BEGIN { \$| = 1; }",
(map { "@{[uc($_)]} { print \"$_\\n\"; }" }
qw(begin unitcheck check init end)),
"print \"main\\n\";"
);
fresh_perl_is(
$testblocks,
"begin\nunitcheck\ncheck\ninit\nmain\nend",
{},
'blocks execute in right order'
);
SKIP: {
skip "VMS doesn't have the perl #2754 bug", 3 if $^O eq 'VMS';
fresh_perl_is(
"$testblocks BEGIN { exit 0; }",
"begin\nunitcheck\ncheck\nend",
{},
"BEGIN{exit 0} doesn't exit yet"
);
fresh_perl_is(
"$testblocks UNITCHECK { exit 0; }",
"begin\nunitcheck\ncheck\nend",
{},
"UNITCHECK{exit 0} doesn't exit yet"
);
fresh_perl_is(
"$testblocks CHECK { exit 0; }",
"begin\nunitcheck\ncheck\nend",
{},
"CHECK{exit 0} doesn't exit yet"
);
}
SKIP: {
fresh_perl_is(
"$testblocks BEGIN { exit 1; }",
"begin\nunitcheck\ncheck\nend",
{},
"BEGIN{exit 1} should exit"
);
fresh_perl_like(
"$testblocks BEGIN { die; }",
qr/\Abegin\nDied[^\n]*\.\nBEGIN failed[^\n]*\.\nunitcheck\ncheck\nend\z/,
{},
"BEGIN{die} should exit"
);
fresh_perl_is(
"$testblocks UNITCHECK { exit 1; }",
"begin\nunitcheck\ncheck\nend",
{},
"UNITCHECK{exit 1} should exit"
);
fresh_perl_like(
"$testblocks UNITCHECK { die; }",
qr/\Abegin\nDied[^\n]*\.\nUNITCHECK failed[^\n]*\.\nunitcheck\ncheck\nend\z/,
{},
"UNITCHECK{die} should exit"
);
fresh_perl_is(
"$testblocks CHECK { exit 1; }",
"begin\nunitcheck\ncheck\nend",
{},
"CHECK{exit 1} should exit"
);
fresh_perl_like(
"$testblocks CHECK { die; }",
qr/\Abegin\nunitcheck\nDied[^\n]*\.\nCHECK failed[^\n]*\.\ncheck\nend\z/,
{},
"CHECK{die} should exit"
);
}
fresh_perl_is(
"$testblocks INIT { exit 0; }",
"begin\nunitcheck\ncheck\ninit\nend",
{},
"INIT{exit 0} should exit"
);
fresh_perl_is(
"$testblocks INIT { exit 1; }",
"begin\nunitcheck\ncheck\ninit\nend",
{},
"INIT{exit 1} should exit"
);
fresh_perl_like(
"$testblocks INIT { die; }",
qr/\Abegin\nunitcheck\ncheck\ninit\nDied[^\n]*\.\nINIT failed[^\n]*\.\nend\z/,
{},
"INIT{die} should exit"
);
fresh_perl_is(
"BEGIN{} BEGIN(){1} print 'done'",
"Prototype on BEGIN block ignored at - line 1.\ndone",
{},
"Prototypes on BEGIN blocks should warn"
);
SKIP: {
skip "Test requires full perl, this is miniperl", 1
if is_miniperl;
fresh_perl_is(
"use attributes; BEGIN{} sub BEGIN :blerg {1} print 'done'",
"Attribute on BEGIN block ignored at - line 1.\ndone",
{},
"Attributes on BEGIN blocks should warn"
);
}
fresh_perl_is(
'BEGIN() {10} foreach my $p (sort {lc($a) cmp lc($b)} keys %v)',
"Prototype on BEGIN block ignored at - line 1.\n"
. "syntax error at - line 1, at EOF\n"
. "Execution of - aborted due to compilation errors.",
{},
"Prototype on BEGIN blocks should warn"
);
TODO: {
local $TODO = 'RT #2917: INIT{} in eval is wrongly considered too late';
fresh_perl_is('eval "INIT { print qq(in init); };";', 'in init', {}, 'RT #2917: No constraint on how late INIT blocks can run');
}
fresh_perl_is('eval "BEGIN {goto end}"; end:', '', {}, 'RT #113934: goto out of BEGIN causes assertion failure');
fresh_perl_is('package Module::Install::DSL; BEGIN { eval "INIT { print q(INIT fired in eval) }" }',
"Treating Module::Install::DSL::INIT block as BEGIN block as workaround at (eval 1) line 1.\n"
."INIT fired in eval", {},
'GH Issue #16300: Module::Install::DSL workaround');
|