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
|
#!./perl
BEGIN {
$ENV{PERL_UNICODE} = 0;
unless (-d 'blib') {
chdir 't' if -d 't';
@INC = '../lib';
}
require q(./test.pl);
}
use strict;
use warnings;
use utf8;
use open qw( :utf8 :std );
plan(tests => 52);
{
package Neẁ;
use strict;
use warnings;
package ऑlㄉ;
use strict;
use warnings;
{
no strict 'refs';
*{'ऑlㄉ::'} = *{'Neẁ::'};
}
}
ok (ऑlㄉ->isa(Neẁ::), 'ऑlㄉ inherits from Neẁ');
ok (Neẁ->isa(ऑlㄉ::), 'Neẁ inherits from ऑlㄉ');
object_ok (bless ({}, ऑlㄉ::), Neẁ::, 'ऑlㄉ object');
object_ok (bless ({}, Neẁ::), ऑlㄉ::, 'Neẁ object');
# Test that replacing a package by assigning to an existing glob
# invalidates the isa caches
for(
{
name => 'assigning a glob to a glob',
code => '$life_raft = $::{"lㅔf::"}; *lㅔf:: = $::{"릭Ⱶᵀ::"}',
},
{
name => 'assigning a string to a glob',
code => '$life_raft = $::{"lㅔf::"}; *lㅔf:: = "릭Ⱶᵀ::"',
},
{
name => 'assigning a stashref to a glob',
code => '$life_raft = \%lㅔf::; *lㅔf:: = \%릭Ⱶᵀ::',
},
) {
my $prog = q~
BEGIN {
unless (-d 'blib') {
chdir 't' if -d 't';
@INC = '../lib';
}
}
use utf8;
use open qw( :utf8 :std );
@숩cਲꩋ::ISA = "lㅔf";
@lㅔf::ISA = "톺ĺФț";
sub 톺ĺФț::Sᑊeಅḱ { "Woof!" }
sub ᴖ릭ᚽʇ::Sᑊeಅḱ { "Bow-wow!" }
my $thing = bless [], "숩cਲꩋ";
# mro_package_moved needs to know to skip non-globs
$릭Ⱶᵀ::{"ᚷꝆエcƙ::"} = 3;
@릭Ⱶᵀ::ISA = 'ᴖ릭ᚽʇ';
my $life_raft;
__code__;
print $thing->Sᑊeಅḱ, "\n";
undef $life_raft;
print $thing->Sᑊeಅḱ, "\n";
~ =~ s\__code__\$$_{code}\r; #\
utf8::encode($prog);
fresh_perl_is
$prog,
"Bow-wow!\nBow-wow!\n",
{},
"replacing packages by $$_{name} updates isa caches";
}
# Similar test, but with nested packages
#
# 톺ĺФț (Woof) ᴖ릭ᚽʇ (Bow-wow)
# | |
# lㅔf::Side <- 릭Ⱶᵀ::Side
# |
# 숩cਲꩋ
#
# This test assigns 릭Ⱶᵀ:: to lㅔf::, indirectly making lㅔf::Side an
# alias to 릭Ⱶᵀ::Side (following the arrow in the diagram).
for(
{
name => 'assigning a glob to a glob',
code => '$life_raft = $::{"lㅔf::"}; *lㅔf:: = $::{"릭Ⱶᵀ::"}',
},
{
name => 'assigning a string to a glob',
code => '$life_raft = $::{"lㅔf::"}; *lㅔf:: = "릭Ⱶᵀ::"',
},
{
name => 'assigning a stashref to a glob',
code => '$life_raft = \%lㅔf::; *lㅔf:: = \%릭Ⱶᵀ::',
},
) {
my $prog = q~
BEGIN {
unless (-d 'blib') {
chdir 't' if -d 't';
@INC = '../lib';
}
}
use utf8;
use open qw( :utf8 :std );
@숩cਲꩋ::ISA = "lㅔf::Side";
@lㅔf::Side::ISA = "톺ĺФț";
sub 톺ĺФț::Sᑊeಅḱ { "Woof!" }
sub ᴖ릭ᚽʇ::Sᑊeಅḱ { "Bow-wow!" }
my $thing = bless [], "숩cਲꩋ";
@릭Ⱶᵀ::Side::ISA = 'ᴖ릭ᚽʇ';
my $life_raft;
__code__;
print $thing->Sᑊeಅḱ, "\n";
undef $life_raft;
print $thing->Sᑊeಅḱ, "\n";
~ =~ s\__code__\$$_{code}\r;
utf8::encode($prog);
fresh_perl_is
$prog,
"Bow-wow!\nBow-wow!\n",
{},
"replacing nested packages by $$_{name} updates isa caches";
}
# Another nested package test, in which the isa cache needs to be reset on
# the subclass of a package that does not exist.
#
# Parenthesized packages do not exist.
#
# ɵűʇㄦ::인ንʵ ( cฬnए::인ንʵ )
# | |
# Lфť R익hȚ
#
# ɵűʇㄦ -> cฬnए
#
# This test assigns ɵűʇㄦ:: to cฬnए::, making cฬnए::인ንʵ an alias to
# ɵűʇㄦ::인ንʵ.
#
# Then we also run the test again, but without ɵűʇㄦ::인ንʵ
for(
{
name => 'assigning a glob to a glob',
code => '*cฬnए:: = *ɵűʇㄦ::',
},
{
name => 'assigning a string to a glob',
code => '*cฬnए:: = "ɵűʇㄦ::"',
},
{
name => 'assigning a stashref to a glob',
code => '*cฬnए:: = \%ɵűʇㄦ::',
},
) {
for my $tail ('인ንʵ', '인ንʵ::', '인ንʵ:::', '인ንʵ::::') {
my $prog = q~
BEGIN {
unless (-d 'blib') {
chdir 't' if -d 't';
@INC = '../lib';
}
}
use utf8;
use open qw( :utf8 :std );
use Encode ();
if (grep /\P{ASCII}/, @ARGV) {
@ARGV = map { Encode::decode("UTF-8", $_) } @ARGV;
}
my $tail = shift;
@Lфť::ISA = "ɵűʇㄦ::$tail";
@R익hȚ::ISA = "cฬnए::$tail";
bless [], "ɵűʇㄦ::$tail"; # autovivify the stash
__code__;
print "ok 1", "\n" if Lфť->isa("cฬnए::$tail");
print "ok 2", "\n" if R익hȚ->isa("ɵűʇㄦ::$tail");
print "ok 3", "\n" if R익hȚ->isa("cฬnए::$tail");
print "ok 4", "\n" if Lфť->isa("ɵűʇㄦ::$tail");
~ =~ s\__code__\$$_{code}\r;
utf8::encode($prog);
fresh_perl_is
$prog,
"ok 1\nok 2\nok 3\nok 4\n",
{ args => [$tail] },
"replacing nonexistent nested packages by $$_{name} updates isa caches"
." ($tail)";
# Same test but with the subpackage autovivified after the assignment
$prog = q~
BEGIN {
unless (-d 'blib') {
chdir 't' if -d 't';
@INC = '../lib';
}
}
use utf8;
use open qw( :utf8 :std );
use Encode ();
if (grep /\P{ASCII}/, @ARGV) {
@ARGV = map { Encode::decode("UTF-8", $_) } @ARGV;
}
my $tail = shift;
@Lфť::ISA = "ɵűʇㄦ::$tail";
@R익hȚ::ISA = "cฬnए::$tail";
__code__;
bless [], "ɵűʇㄦ::$tail";
print "ok 1", "\n" if Lфť->isa("cฬnए::$tail");
print "ok 2", "\n" if R익hȚ->isa("ɵűʇㄦ::$tail");
print "ok 3", "\n" if R익hȚ->isa("cฬnए::$tail");
print "ok 4", "\n" if Lфť->isa("ɵűʇㄦ::$tail");
~ =~ s\__code__\$$_{code}\r;
utf8::encode($prog);
fresh_perl_is
$prog,
"ok 1\nok 2\nok 3\nok 4\n",
{ args => [$tail] },
"Giving nonexistent packages multiple effective names by $$_{name}"
. " ($tail)";
}
}
no warnings; # temporary; there seems to be a scoping bug, as this does not
# work when placed in the blocks below
# Test that deleting stash elements containing
# subpackages also invalidates the isa cache.
# Maybe this does not belong in package_aliases.t, but it is closely
# related to the tests immediately preceding.
{
@ቹऋ::ISA = ("Cuȓ", "ฮンᛞ");
@Cuȓ::ISA = "Hyḹ앛Ҭテ";
sub Hyḹ앛Ҭテ::Sᑊeಅḱ { "Arff!" }
sub ฮンᛞ::Sᑊeಅḱ { "Woof!" }
my $pet = bless [], "ቹऋ";
my $life_raft = delete $::{'Cuȓ::'};
is $pet->Sᑊeಅḱ, 'Woof!',
'deleting a stash from its parent stash invalidates the isa caches';
undef $life_raft;
is $pet->Sᑊeಅḱ, 'Woof!',
'the deleted stash is gone completely when freed';
}
# Same thing, but with nested packages
{
@펱ᑦ::ISA = ("Cuȓȓ::Cuȓȓ::Cuȓȓ", "ɥwn");
@Cuȓȓ::Cuȓȓ::Cuȓȓ::ISA = "lȺt랕ᚖ";
sub lȺt랕ᚖ::Sᑊeಅḱ { "Arff!" }
sub ɥwn::Sᑊeಅḱ { "Woof!" }
my $pet = bless [], "펱ᑦ";
my $life_raft = delete $::{'Cuȓȓ::'};
is $pet->Sᑊeಅḱ, 'Woof!',
'deleting a stash from its parent stash resets caches of substashes';
undef $life_raft;
is $pet->Sᑊeಅḱ, 'Woof!',
'the deleted substash is gone completely when freed';
}
# [perl #77358]
my $prog = q~#!perl -w
BEGIN {
unless (-d 'blib') {
chdir 't' if -d 't';
@INC = '../lib';
}
}
use utf8;
use open qw( :utf8 :std );
@펱ᑦ::ISA = "T잌ዕ";
@T잌ዕ::ISA = "Bᛆヶṝ";
sub Bᛆヶṝ::Sᑊeಅḱ { print "Woof!\n" }
sub lȺt랕ᚖ::Sᑊeಅḱ { print "Bow-wow!\n" }
my $pet = bless [], "펱ᑦ";
$pet->Sᑊeಅḱ;
sub ດƓ::Sᑊeಅḱ { print "Hello.\n" } # strange ດƓ!
@ດƓ::ISA = 'lȺt랕ᚖ';
*T잌ዕ:: = delete $::{'ດƓ::'};
$pet->Sᑊeಅḱ;
~;
utf8::encode($prog);
fresh_perl_is
$prog,
"Woof!\nHello.\n",
{ stderr => 1 },
"Assigning a nameless package over one w/subclasses updates isa caches";
# mro_package_moved needs to make a distinction between replaced and
# assigned stashes when keeping track of what it has seen so far.
no warnings; {
no strict 'refs';
sub ʉ::bᓗnǩ::bᓗnǩ::ພo { "bbb" }
sub ᵛeↄl움::ພo { "lasrevinu" }
@ݏ엗Ƚeᵬૐᵖ::ISA = qw 'ພo::bᓗnǩ::bᓗnǩ ᵛeↄl움';
*ພo::ବㄗ:: = *ʉ::bᓗnǩ::; # now ʉ::bᓗnǩ:: is on both sides
*ພo:: = *ʉ::; # here ʉ::bᓗnǩ:: is both deleted and added
*ʉ:: = *ቦᵕ::; # now it is only known as ພo::bᓗnǩ::
# At this point, before the bug was fixed, %ພo::bᓗnǩ::bᓗnǩ:: ended
# up with no effective name, allowing it to be deleted without updating
# its subclassesâ caches.
my $accum = '';
$accum .= 'ݏ엗Ƚeᵬૐᵖ'->ພo; # bbb
delete ${"ພo::bᓗnǩ::"}{"bᓗnǩ::"};
$accum .= 'ݏ엗Ƚeᵬૐᵖ'->ພo; # bbb (Oops!)
@ݏ엗Ƚeᵬૐᵖ::ISA = @ݏ엗Ƚeᵬૐᵖ::ISA;
$accum .= 'ݏ엗Ƚeᵬૐᵖ'->ພo; # lasrevinu
is $accum, 'bbblasrevinulasrevinu',
'nested classes deleted & added simultaneously';
}
use warnings;
# mro_package_moved needs to check for self-referential packages.
# This broke Text::Template [perl #78362].
watchdog 3;
*ᕘ:: = \%::;
*Aᶜme::Mῌ::Aᶜme:: = \*Aᶜme::; # indirect self-reference
pass("mro_package_moved and self-referential packages");
# Deleting a glob whose name does not indicate its location in the symbol
# table but which nonetheless *is* in the symbol table.
{
no strict refs=>;
no warnings;
@ოƐ::mഒrェ::ISA = "foᚒ";
sub foᚒ::ວmᑊ { "aoeaa" }
*ťວ:: = *ოƐ::;
delete $::{"ოƐ::"};
@C힐dᒡl았::ISA = 'ťວ::mഒrェ';
my $accum = 'C힐dᒡl았'->ວmᑊ . '-';
my $life_raft = delete ${"ťວ::"}{"mഒrェ::"};
$accum .= eval { 'C힐dᒡl았'->ວmᑊ } // '<undef>';
is $accum, 'aoeaa-<undef>',
'Deleting globs whose loc in the symtab differs from gv_fullname'
}
# Pathological test for undeffing a stash that has an alias.
*ᵍh엞:: = *ኔƞ::;
@숩cਲꩋ::ISA = 'ᵍh엞';
undef %ᵍh엞::;
sub F렐ᛔ::ວmᑊ { "clumpren" }
eval '
$ኔƞ::whatever++;
@ኔƞ::ISA = "F렐ᛔ";
';
is eval { '숩cਲꩋ'->ວmᑊ }, 'clumpren',
'Changes to @ISA after undef via original name';
undef %ᵍh엞::;
eval '
$ᵍh엞::whatever++;
@ᵍh엞::ISA = "F렐ᛔ";
';
is eval { '숩cਲꩋ'->ວmᑊ }, 'clumpren',
'Changes to @ISA after undef via alias';
# Packages whose containing stashes have aliases must lose all names cor-
# responding to that container when detached.
{
{package śmᛅḙ::በɀ} # autovivify
*pḢ린ᚷ:: = *śmᛅḙ::; # śmᛅḙ::በɀ now also named pḢ린ᚷ::በɀ
*본:: = delete $śmᛅḙ::{"በɀ::"};
# In 5.13.7, it has now lost its śmᛅḙ::በɀ name (reverting to pḢ린ᚷ::በɀ
# as the effective name), and gained 본 as an alias.
# In 5.13.8, both śmᛅḙ::በɀ *and* pḢ린ᚷ::በɀ names are deleted.
# Make some methods
no strict 'refs';
*{"pḢ린ᚷ::በɀ::fฤmᛈ"} = sub { "hello" };
sub Fルmፕṟ::fฤmᛈ { "good bye" };
@ᵇるᣘ킨::ISA = qw "본 Fルmፕṟ"; # now wrongly inherits from pḢ린ᚷ::በɀ
is fฤmᛈ ᵇるᣘ킨, "good bye",
'detached stashes lose all names corresponding to the containing stash';
}
# Crazy edge cases involving packages ending with a single :
@촐oン::ISA = 'ᚖგ:'; # pun intended!
bless [], "ᚖგ:"; # autovivify the stash
ok "촐oン"->isa("ᚖგ:"), 'class isa "class:"';
{ no strict 'refs'; *{"ᚖგ:::"} = *ᚖგ:: }
ok "촐oン"->isa("ᚖგ"),
'isa(ᕘ) when inheriting from "class:" which is an alias for ᕘ';
{
no warnings;
# The next line of code is *not* normative. If the structure changes,
# this line needs to change, too.
my $ᕘ = delete $ᚖგ::{":"};
ok !촐oン->isa("ᚖგ"),
'class that isa "class:" no longer isa ᕘ if "class:" has been deleted';
}
@촐oン::ISA = ':';
bless [], ":";
ok "촐oン"->isa(":"), 'class isa ":"';
{ no strict 'refs'; *{":::"} = *ፑňṪu앝ȋ온:: }
ok "촐oン"->isa("ፑňṪu앝ȋ온"),
'isa(ᕘ) when inheriting from ":" which is an alias for ᕘ';
@촐oン::ISA = 'ᚖგ:';
bless [], "ᚖგ:";
{
no strict 'refs';
my $life_raft = \%{"ᚖგ:::"};
*{"ᚖგ:::"} = \%ᚖგ::;
ok "촐oン"->isa("ᚖგ"),
'isa(ᕘ) when inheriting from "class:" after hash-to-glob assignment';
}
@촐oン::ISA = 'ŏ:';
bless [], "ŏ:";
{
no strict 'refs';
my $life_raft = \%{"ŏ:::"};
*{"ŏ:::"} = "ᚖგ::";
ok "촐oン"->isa("ᚖგ"),
'isa(ᕘ) when inheriting from "class:" after string-to-glob assignment';
}
=cut
|