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
|
#!/usr/bin/perl -w
my $Has_PH;
BEGIN {
$Has_PH = $] < 5.009;
}
my $W;
BEGIN {
$W = 0;
$SIG{__WARN__} = sub {
if ($_[0] =~ /^Hides field '.*?' in base class/) {
$W++;
}
else {
warn $_[0];
}
};
}
use strict;
use Test::More tests => 27;
BEGIN { use_ok('base'); }
package B1;
use fields qw(b1 b2 b3);
package B2;
use fields '_b1';
use fields qw(b1 _b2 b2);
sub new { fields::new(shift) }
package B3;
use fields qw(b4 _b5 b6 _b7);
package D1;
use base 'B1';
use fields qw(d1 d2 d3);
package D2;
use base 'B1';
use fields qw(_d1 _d2);
use fields qw(d1 d2);
package D3;
use base 'B2';
use fields qw(b1 d1 _b1 _d1); # hide b1
package D4;
use base 'D3';
use fields qw(_d3 d3);
package M;
sub m {}
package D5;
use base qw(M B2);
# Test that multiple inheritance fails.
package D6;
eval { 'base'->import(qw(B2 M B3)); };
::like($@, qr/can't multiply inherit %FIELDS/i,
'No multiple field inheritance');
package Foo::Bar;
use base 'B1';
package Foo::Bar::Baz;
use base 'Foo::Bar';
use fields qw(foo bar baz);
# Test repeatability for when modules get reloaded.
package B1;
use fields qw(b1 b2 b3);
package D3;
use base 'B2';
use fields qw(b1 d1 _b1 _d1); # hide b1
# Test that a package with only private fields gets inherited properly
package B7;
use fields qw(_b1);
package D7;
use base qw(B7);
use fields qw(b1);
# Test that an intermediate package with no fields doesn't cause a problem.
package B8;
use fields qw(_b1);
package D8;
use base qw(B8);
package D8A;
use base qw(D8);
use fields qw(b1);
package main;
my %EXPECT = (
B1 => [qw(b1 b2 b3)],
D1 => [qw(b1 b2 b3 d1 d2 d3)],
D2 => [qw(b1 b2 b3 _d1 _d2 d1 d2)],
M => [qw()],
B2 => [qw(_b1 b1 _b2 b2)],
D3 => [(undef,undef,undef,
qw(b2 b1 d1 _b1 _d1))], # b1 is hidden
D4 => [(undef,undef,undef,
qw(b2 b1 d1),undef,undef,qw(_d3 d3))],
D5 => [undef, 'b1', undef, 'b2'],
B3 => [qw(b4 _b5 b6 _b7)],
B7 => [qw(_b1)],
D7 => [undef, 'b1'],
B8 => [qw(_b1)],
D8 => [undef],
D8A => [undef, 'b1'],
'Foo::Bar' => [qw(b1 b2 b3)],
'Foo::Bar::Baz' => [qw(b1 b2 b3 foo bar baz)],
);
while(my($class, $efields) = each %EXPECT) {
no strict 'refs';
my %fields = %{$class.'::FIELDS'};
my %expected_fields;
foreach my $idx (1..@$efields) {
my $key = $efields->[$idx-1];
next unless $key;
$expected_fields{$key} = $idx;
}
::is_deeply(\%fields, \%expected_fields, "%FIELDS check: $class");
}
# Did we get the appropriate amount of warnings?
is( $W, 1, 'right warnings' );
# A simple object creation and attribute access test
my B2 $obj1 = D3->new;
$obj1->{b1} = "B2";
my D3 $obj2 = $obj1;
$obj2->{b1} = "D3";
# We should get compile time failures field name typos
eval q(my D3 $obj3 = $obj2; $obj3->{notthere} = "");
if( $Has_PH ) {
like $@,
qr/^No such pseudo-hash field "notthere" in variable \$obj3 of type D3/;
}
else {
like $@,
qr/^Attempt to access disallowed key 'notthere' in a restricted hash/;
}
# Slices
@$obj1{"_b1", "b1"} = (17, 29);
is( $obj1->{_b1}, 17 );
is( $obj1->{b1}, 29 );
@$obj1{'_b1', 'b1'} = (44,28);
is( $obj1->{_b1}, 44 );
is( $obj1->{b1}, 28 );
# Break multiple inheritance with a field name clash.
package E1;
use fields qw(yo this _lah meep 42);
package E2;
use fields qw(_yo ahhh this);
eval {
package Broken;
# The error must occur at run time for the eval to catch it.
require base;
'base'->import(qw(E1 E2));
};
::like( $@, qr/Can't multiply inherit %FIELDS/i, 'Again, no multi inherit' );
# Test that a package with no fields can inherit from a package with
# fields, and that pseudohash messages don't show up
package B9;
use fields qw(b1);
sub _mk_obj { fields::new($_[0])->{'b1'} };
package D9;
use base qw(B9);
package main;
{
my $w = 0;
local $SIG{__WARN__} = sub { $w++ };
B9->_mk_obj();
# used tp emit a warning that pseudohashes are deprecated, because
# %FIELDS wasn't blessed.
D9->_mk_obj();
is ($w, 0, "pseudohash warnings in derived class with no fields of it's own");
}
# [perl #31078] an intermediate class with no additional fields caused
# hidden fields in base class to get stomped on
{
package X;
use fields qw(X1 _X2);
sub new {
my X $self = shift;
$self = fields::new($self) unless ref $self;
$self->{X1} = "x1";
# FIXME. This code is dead on blead becase the test is skipped.
# The test states that it's being skipped becaues restricted hashes
# don't support a feature. Presumably we need to make that feature
# supported. Bah.
# use Devel::Peek; Dump($self);
$self->{_X2} = "_x2";
return $self;
}
sub get_X2 { my X $self = shift; $self->{_X2} }
package Y;
use base qw(X);
sub new {
my Y $self = shift;
$self = fields::new($self) unless ref $self;
$self->SUPER::new();
return $self;
}
package Z;
use base qw(Y);
use fields qw(Z1);
sub new {
my Z $self = shift;
$self = fields::new($self) unless ref $self;
$self->SUPER::new();
$self->{Z1} = 'z1';
return $self;
}
package main;
if ($Has_PH) {
my Z $c = Z->new();
is($c->get_X2, '_x2', "empty intermediate class");
}
else {
SKIP: {
skip "restricted hashes don't support private fields properly", 1;
}
}
}
|