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 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
|
#!./perl
# NOTE this script messes with the perl debugger flags, if you run
# it under the perl debugger (perl -d) it might not work as expected.
# Look for code related to $^P below and adjust accordingly.
BEGIN {
chdir 't' if -d 't';
@INC = '.';
push @INC, '../lib', '../ext/re';
}
sub do_require {
%INC = ();
write_file('bleah.pm',@_);
eval { require "bleah.pm" };
my @a; # magic guard for scope violations (must be first lexical in file)
}
# don't make this lexical
our $i = 1;
our @module_true_tests; # this is set up in a BEGIN later on.
our $module_true_test_count; # this is set up in a BEGIN later on.
my @files_to_delete = qw (bleah.pm bleah.do bleah.flg blorn.pm blunge.pm
urkkk.pm urkkk.pmc krunch.pm krunch.pmc whap.pm whap.pmc
Demo1.pm Demo2.pm Demo3.pm Demo4.pm);
push @files_to_delete, "$_->[0].pm" for @module_true_tests;
# there may be another copy of this test script running, or the files may
# just not have been deleted at the end of the last run; if the former, we
# wait a while so that creating and unlinking these files won't interfere
# with the other process; if the latter, then the delay is harmless. As
# to why there might be multiple execution of this test file, I don't
# know; but this is an experiment to see if random smoke failures go away.
if (!$ENV{NO_SLEEP} and grep -e, @files_to_delete) {
print "# Sleeping for 20 secs waiting for other process to finish\n";
sleep 20;
}
my $Is_UTF8 = (${^OPEN} || "") =~ /:utf8/;
my $total_tests = 58 + $module_true_test_count;
if ($Is_UTF8) { $total_tests -= 3; }
print "1..$total_tests\n";
sub write_file {
my $f = shift;
open(REQ,">$f") or die "Can't write '$f': $!";
binmode REQ;
print REQ @_;
close REQ or die "Could not close $f: $!";
}
eval {require 5.005};
print "# $@\nnot " if $@;
print "ok ",$i++," - require 5.005 try 1\n";
eval { require 5.005 };
print "# $@\nnot " if $@;
print "ok ",$i++," - require 5.005 try 2\n";
eval { require 5.005; };
print "# $@\nnot " if $@;
print "ok ",$i++," - require 5.005 try 3\n";
eval {
require 5.005
};
print "# $@\nnot " if $@;
print "ok ",$i++," - require 5.005 try 4\n";
# new style version numbers
eval { require v5.5.630; };
print "# $@\nnot " if $@;
print "ok ",$i++," - require 5.5.630\n";
eval { require(v5.5.630); };
print "# $@\nnot " if $@;
print "ok ",$i++," - require(v5.5.630) with parens [perl #124153]\n";
sub v5 { die }
eval { require v5; };
print "# $@\nnot " if $@;
print "ok ",$i++," - require v5 ignores sub named v5\n";
eval { require 10.0.2; };
print "# $@\nnot " unless $@ =~ /^\QPerl v10.0.2 required\E/;
print "ok ",$i++," - require 10.0.2\n";
my $ver = 5.005_63;
eval { require $ver; };
print "# $@\nnot " if $@;
print "ok ",$i++," - require 5.005_63\n";
# check inaccurate fp
$ver = 10.2;
eval { require $ver; };
print "# $@\nnot " unless $@ =~ /^\QPerl v10.200.0 required\E/;
print "ok ",$i++," - require 10.2\n";
$ver = 10.000_02;
eval { require $ver; };
print "# $@\nnot " unless $@ =~ /^\QPerl v10.0.20 required\E/;
print "ok ",$i++," - require 10.000_02\n";
print "not " unless 5.5.1 gt v5.5;
print "ok ",$i++," - 5.5.1 gt v5.5\n";
{
print "not " unless v5.5.640 eq "\x{5}\x{5}\x{280}";
print "ok ",$i++," - v5.5.640 eq \\x{5}\\x{5}\\x{280}\n";
print "not " unless v7.15 eq "\x{7}\x{f}";
print "ok ",$i++," - v7.15 eq \\x{7}\\x{f}\n";
print "not "
unless v1.20.300.4000.50000.600000 eq "\x{1}\x{14}\x{12c}\x{fa0}\x{c350}\x{927c0}";
print "ok ",$i++," - v1.20.300.4000.50000.600000 eq ...\n";
}
# "use 5.11.0" (and higher) loads strictures.
# check that this doesn't happen with require
eval 'require 5.11.0; ${"foo"} = "bar";';
print "# $@\nnot " if $@;
print "ok ",$i++," - require 5.11.0\n";
eval 'BEGIN {require 5.11.0} ${"foo"} = "bar";';
print "# $@\nnot " if $@;
print "ok ",$i++,"\ - BEGIN { require 5.11.0}\n";
# interaction with pod (see the eof)
write_file('bleah.pm', "print 'ok $i - require bleah.pm\n'; 1;\n");
require "bleah.pm";
$i++;
# run-time failure in require
do_require "0;\n";
print "# $@\nnot " unless $@ =~ /did not return a true/;
print "ok ",$i++," - require returning 0\n";
print "not " if exists $INC{'bleah.pm'};
print "ok ",$i++," - %INC not updated\n";
my $flag_file = 'bleah.flg';
# run-time error in require
for my $expected_compile (1,0) {
write_file($flag_file, 1);
print "not " unless -e $flag_file;
print "ok ",$i++," - exp $expected_compile; bleah.flg\n";
write_file('bleah.pm', "unlink '$flag_file' or die; \$a=0; \$b=1/\$a; 1;\n");
print "# $@\nnot " if eval { require 'bleah.pm' };
print "ok ",$i++," - exp $expected_compile; require bleah.pm with flag file\n";
print "not " unless -e $flag_file xor $expected_compile;
print "ok ",$i++," - exp $expected_compile; -e flag_file\n";
print "not " unless exists $INC{'bleah.pm'};
print "ok ",$i++," - exp $expected_compile; exists \$INC{'bleah.pm}\n";
}
# compile-time failure in require
do_require "1)\n";
# bison says 'parse error' instead of 'syntax error',
# various yaccs may or may not capitalize 'syntax'.
print "# $@\nnot " unless $@ =~ /(?:syntax|parse) error/mi;
print "ok ",$i++," - syntax error\n";
# previous failure cached in %INC
print "not " unless exists $INC{'bleah.pm'};
print "ok ",$i++," - cached %INC\n";
write_file($flag_file, 1);
write_file('bleah.pm', "unlink '$flag_file'; 1");
print "# $@\nnot " if eval { require 'bleah.pm' };
print "ok ",$i++," - eval { require 'bleah.pm' }\n";
print "# $@\nnot " unless $@ =~ /Compilation failed/i;
print "ok ",$i++," - Compilation failed\n";
print "not " unless -e $flag_file;
print "ok ",$i++," - -e flag_file\n";
print "not " unless exists $INC{'bleah.pm'};
print "ok ",$i++," - \$INC{'bleah.pm'}\n";
# successful require
do_require "1";
print "# $@\nnot " if $@;
print "ok ",$i++," - do_require '1';\n";
# do FILE shouldn't see any outside lexicals
my $x = "ok $i - bleah.do\n";
write_file("bleah.do", <<EOT);
\$x = "not ok $i - bleah.do\\n";
EOT
do "bleah.do" or die $@;
dofile();
sub dofile { do "bleah.do" or die $@; };
print $x;
# Test that scalar context is forced for require
write_file('bleah.pm', <<'**BLEAH**'
print "not " if !defined wantarray || wantarray ne '';
print "ok $i - require() context\n";
1;
**BLEAH**
);
my ($foo,@foo);
delete $INC{"bleah.pm"}; ++$::i;
$foo = eval q{require bleah}; delete $INC{"bleah.pm"}; ++$::i;
@foo = eval q{require bleah}; delete $INC{"bleah.pm"}; ++$::i;
eval q{require bleah}; delete $INC{"bleah.pm"}; ++$::i;
eval q{$_=$_+2;require bleah}; delete $INC{"bleah.pm"}; ++$::i;
eval q{return require bleah}; delete $INC{"bleah.pm"}; ++$::i;
$foo = eval {require bleah}; delete $INC{"bleah.pm"}; ++$::i;
@foo = eval {require bleah}; delete $INC{"bleah.pm"}; ++$::i;
eval {require bleah}; delete $INC{"bleah.pm"}; ++$::i;
eval 'require ::bleah;';
print "# $@\nnot " unless $@ =~ /^Bareword in require must not start with a double-colon:/;
print "ok ", $i," - require ::bleah is banned\n";
# Test for fix of RT #24404 : "require $scalar" may load a directory
my $r = "threads";
eval { require $r };
$i++;
if($@ =~ /Can't locate threads in \@INC/) {
print "ok $i - RT #24404\n";
} else {
print "not ok - RT #24404$i\n";
}
# require CORE::foo
eval ' require CORE::lc "THREADS" ';
$i++;
if($@ =~ /Can't locate threads in \@INC/) {
print "ok $i - [perl #24482] require CORE::foo\n";
} else {
print "not ok - [perl #24482] require CORE::foo\n";
}
write_file('bleah.pm', qq(die "This is an expected error";\n));
delete $INC{"bleah.pm"}; ++$::i;
eval { CORE::require bleah; };
if ($@ =~ /^This is an expected error/) {
print "ok $i - expected error\n";
} else {
print "not ok $i - expected error\n";
}
sub write_file_not_thing {
my ($file, $thing, $test) = @_;
write_file($file, <<"EOT");
print "not ok $test - write_file_not_thing $file\n";
die "The $thing file should not be loaded";
EOT
}
{
# Right. We really really need Config here.
require Config;
die "Failed to load Config for some reason"
unless $Config::Config{version};
my $simple = ++$i;
my $pmc_older = ++$i;
my $pmc_dies = ++$i;
my $no_pmc;
foreach(Config::non_bincompat_options()) {
if($_ eq "PERL_DISABLE_PMC"){
$no_pmc = 1;
last;
}
}
if ($no_pmc) {
print "# .pmc files are ignored, so test that\n";
write_file_not_thing('krunch.pmc', '.pmc', $pmc_older);
write_file('urkkk.pm', qq(print "ok $simple - urkkk.pm branch A\n"));
write_file('whap.pmc', qq(die "This is not an expected error"));
print "# Sleeping for 2 seconds before creating some more files\n";
sleep 2;
write_file('krunch.pm', qq(print "ok $pmc_older - krunch.pm branch A\n"));
write_file_not_thing('urkkk.pmc', '.pmc', $simple);
write_file('whap.pm', qq(die "This is an expected error"));
} else {
print "# .pmc files should be loaded, so test that\n";
write_file('krunch.pmc', qq(print "ok $pmc_older - krunch.pm branch B\n";));
write_file_not_thing('urkkk.pm', '.pm', $simple);
write_file('whap.pmc', qq(die "This is an expected error"));
print "# Sleeping for 2 seconds before creating some more files\n";
sleep 2;
write_file_not_thing('krunch.pm', '.pm', $pmc_older);
write_file('urkkk.pmc', qq(print "ok $simple - urkkk.pm branch B\n";));
write_file_not_thing('whap.pm', '.pm', $pmc_dies);
}
require urkkk;
require krunch;
eval {CORE::require whap; 1} and die;
if ($@ =~ /^This is an expected error/) {
print "ok $pmc_dies - pmc_dies\n";
} else {
print "not ok $pmc_dies - pmc_dies\n";
}
}
{
# if we 'require "op"', since we're in the t/ directory and '.' is the
# first thing in @INC, it will try to load t/op/; it should fail and
# move onto the next path; however, the previous value of $! was
# leaking into implementation if it was EACCES and we're accessing a
# directory.
$! = eval 'use Errno qw(EACCES); EACCES' || 0;
eval q{require 'op'};
$i++;
print "not " if $@ =~ /Permission denied/;
print "ok $i - require op\n";
}
# Test "require func()" with abs path when there is no .pmc file.
++$::i;
if (defined &DynaLoader::boot_DynaLoader) {
require Cwd;
require File::Spec::Functions;
eval {
CORE::require(File::Spec::Functions::catfile(Cwd::getcwd(),"bleah.pm"));
};
if ($@ =~ /^This is an expected error/) {
print "ok $i - require(func())\n";
} else {
print "not ok $i - require(func())\n";
}
} else {
print "ok $i # SKIP Cwd may not be available in miniperl\n";
}
{
BEGIN { ${^OPEN} = ":utf8\0"; }
%INC = ();
write_file('bleah.pm',"package F; \$x = '\xD1\x9E';\n");
eval { require "bleah.pm" };
$i++;
my $not = $F::x eq "\xD1\x9E" ? "" : "not ";
print "${not}ok $i - require ignores I/O layers\n";
}
{
BEGIN { ${^OPEN} = ":utf8\0"; }
%INC = ();
write_file('bleah.pm',"require re; re->import('/x'); 1;\n");
my $not = eval 'use bleah; "ab" =~ /a b/' ? "" : "not ";
$i++;
print "${not}ok $i - require does not localise %^H at run time\n";
}
BEGIN {
# These are the test for feature 'module_true', which when in effect
# avoids the requirement for a module to return a true value, and
# in fact forces the return value to be a simple "true"
# (eg, PL_sv_yes, aka 1).
# we have a lot of permutations of how this code might trigger, and
# etc. so we set up the test set here.
my @params = (
'use v5.37',
'use feature ":5.38"',
'use feature ":all"',
'use feature "module_true"',
'no feature "module_true"',
'',
);
my @module_code = (
'',
'sub foo {};',
'sub foo {}; 0;',
'sub foo {}; return 0;',
'sub foo {}; return (0,0,"some_true_value");',
'sub foo {}; return ("some_true_value",1,1);',
'sub foo {}; (0, return 0);',
'sub foo {}; "some_true_value";',
'sub foo {}; return "some_true_value";',
'sub foo {}; (0, return "some_true_value");',
'sub foo {}; (0, return "some_true_value");',
undef,
);
my @eval_code = (
'use PACK;',
'require PACK;',
'$return_val = require PACK;',
'@return_val = require PACK;',
'require "PACK.pm";',
'$return_val = require "PACK.pm";',
'@return_val = require "PACK.pm";',
);
# build a list of tuples. for now this just keeps the test
# indent level reasonable for the main test loop, but we could
# compute this at BEGIN time and then add the number of tests
# to the total count
my %seen;
foreach my $debugger_state (0,0xA) {
foreach my $param_str (@params) {
foreach my $mod_code (@module_code) {
foreach my $eval_code (@eval_code) {
my $pack_name= sprintf "mttest%d", 0+@module_true_tests;
my $eval_code_munged= $eval_code=~s/PACK/$pack_name/r;
# this asks the debugger to preserve lines from evals.
# it causes nextstate ops to convert to dbstate ops,
# and we need to check that we can handle both cases.
$eval_code_munged= '$^P = ' . $debugger_state .
'; ' . $eval_code_munged
if $debugger_state;
my $param_str_munged = $param_str;
$param_str_munged .= ";\n" if $param_str;
my $this_code= defined($mod_code)
? "package PACK;\n$param_str_munged$mod_code\n"
: "";
next if $seen{$eval_code_munged . "|" . $this_code}++;
$this_code=~s/PACK/$pack_name/g;
push @module_true_tests,
[$pack_name, $param_str, $this_code, $mod_code, $eval_code_munged];
if ($this_code!~/use/ and $this_code !~ /some_true_value/) {
$module_true_test_count += 2;
} elsif ($eval_code_munged=~/return_val/) {
$module_true_test_count += 2;
} else {
$module_true_test_count += 1;
}
}
}
}
}
# and more later on
$module_true_test_count += 12;
}
{
foreach my $tuple (@module_true_tests) {
my ($pack_name, $param_str, $this_code, $mod_code, $eval_code)= @$tuple;
write_file("$pack_name.pm", $this_code);
%INC = ();
# these might be assigned to in the $eval_code
my $return_val;
my @return_val;
my $descr= !$this_code ? "empty file loaded" :
!$mod_code ? "default behavior with `$mod_code`" :
"`$param_str` with `$mod_code`";
$descr .= " via `$eval_code`";
my $not = eval "$eval_code 1" ? "" : "not ";
my $err= $not ? $@ : "";
$^P = 0; # turn the debugger off after the eval.
if ($this_code=~/use/) {
# test the various ways the feature can be turned on
$i++;
print "${not}ok $i - (AA) $descr did not blow up\n";
if ($not) {
# we died, show the error:
print "# error: $_\n" for split /\n/, $err;
}
if ($eval_code=~/\$return_val/) {
$not = ($return_val && $return_val eq '1') ? "" : "not ";
$i++;
print "${not}ok $i - (AB) scalar return value "
. "is simple true value <$return_val>\n";
}
elsif ($eval_code=~/\@return_val/) {
$not = (@return_val && $return_val[0] eq '1') ? "" : "not ";
$i++;
print "${not}ok $i - (AB) list return value "
. "is simple true value <$return_val[0]>\n";
}
} elsif ($this_code!~/some_true_value/) {
# test cases where the feature is not on and return false
my $not= $not ? "" : "not ";
$i++;
print "${not}ok $i - (BA) $descr should die\n";
if ($not) {
print "# error: $_\n" for split /\n/, $err;
print "# code: $_\n" for split /\n/, $this_code || "NO CODE";
}
$not= $err=~/did not return a true value/ ? "" : "not ";
$i++;
print "${not}ok $i - (BB) saw expected error\n";
} else {
#test cases where the feature is not on and return true
$i++;
print "${not}ok $i - (CA) $descr should not die\n";
if ($eval_code=~/return_val/) {
$not = ($return_val || @return_val) ? "" : "not ";
$i++;
print "${not}ok $i - (CB) returned expected value\n";
}
if ($not) {
print "# error: $_\n" for split /\n/, $err;
print "# code: $_\n" for split /\n/, $this_code || "NO CODE";
}
}
}
{
write_file('blorn.pm', "package blorn;\nuse v5.37;\nsub foo {};\nno feature 'module_true';\n");
local $@;
my $result = 0;
my $not = eval "\$result = require 'blorn.pm'; 1" ? 'not ' : '';
$i++;
print "${not}ok $i - disabling module_true should not return a true value ($result)\n";
$not = $@ =~ /did not return a true value/ ? '' : 'not ';
$i++;
print "${not}ok $i - ... and should fail to compile without a true return value\n";
}
{
write_file('blunge.pm', "package blunge;\nuse feature ':5.38';\n".
"sub bar {};\nno feature 'module_true';\n3;\n");
local $@;
my $result = 0;
eval "\$result = require 'blunge.pm'; 1";
my $not = $result == 3 ? '' : 'not ';
$i++;
print "${not}ok $i - disabling 'module_true' and should not override module's return value ($result)\n";
$not = $@ eq '' ? '' : 'not ';
$i++;
print "${not}ok $i - ... but should compile successfully with a provided return value\n";
}
for $main::test_mode (1..4) {
my $pack= "Demo$main::test_mode";
write_file("$pack.pm", sprintf(<<'CODE', $pack)=~s/^#//mgr);
#package %s;
#use feature 'module_true';
#
#return 1 if $main::test_mode == 1;
#return 0 if $main::test_mode == 2;
#
#{
# no feature 'module_true';
# return 0 if $main::test_mode == 3;
#}
#no feature 'module_true';
CODE
local $@;
my $result = 0;
my $ok= eval "\$result = require '$pack.pm'; 1";
my $err= $ok ? "" : $@;
if ($main::test_mode >= 3) {
my $not = $ok ? 'not ' : '';
$i++;
print "${not}ok $i - in $pack disabling module_true "
. "should not return a true value ($result)\n";
$not = $err =~ /did not return a true value/ ? '' : 'not ';
$i++;
print "${not}ok $i - ... and should throw the expected error\n";
if ($not) {
print "# $_\n" for split /\n/, $err;
}
} else {
my $not = $ok ? '' : 'not ';
$i++;
print "${not}ok $i - in $pack enabling module_true "
. "should not return a true value ($result)\n";
$not = $result == 1 ? "" : "not ";
$i++;
print "${not}ok $i - ... and should return a simple true value\n";
}
}
}
##########################################
# What follows are UTF-8 specific tests. #
# Add generic tests before this point. #
##########################################
# UTF-encoded things - skipped on UTF-8 input
if ($Is_UTF8) { exit; }
my %templates = (
'UTF-8' => 'C0U',
'UTF-16BE' => 'n',
'UTF-16LE' => 'v',
);
sub bytes_to_utf {
my ($enc, $content, $do_bom) = @_;
my $template = $templates{$enc};
die "Unsupported encoding $enc" unless $template;
return pack "$template*", ($do_bom ? 0xFEFF : ()), unpack "C*", $content;
}
foreach (sort keys %templates) {
$i++; do_require(bytes_to_utf($_, qq(print "ok $i # $_\\n"; 1;\n), 1));
if ($@ =~ /^(Unsupported script encoding \Q$_\E)/) {
print "ok $i # skip $1\n";
}
}
END {
foreach my $file (@files_to_delete) {
1 while unlink $file;
}
}
# ***interaction with pod (don't put any thing after here)***
=pod
|