Initial import from FreeBSD RELENG_4:
[dragonfly.git] / contrib / perl5 / t / lib / fields.t
1 #!./perl -w
2
3 my $w;
4
5 BEGIN {
6    chdir 't' if -d 't';
7    @INC = '../lib' if -d '../lib';
8    $SIG{__WARN__} = sub {
9        if ($_[0] =~ /^Hides field 'b1' in base class/) {
10            $w++;
11            return;
12        }
13        print $_[0];
14    };
15 }
16
17 use strict;
18 use vars qw($DEBUG);
19
20 package B1;
21 use fields qw(b1 b2 b3);
22
23 package B2;
24 use fields '_b1';
25 use fields qw(b1 _b2 b2);
26
27 sub new { bless [], shift }
28
29 package D1;
30 use base 'B1';
31 use fields qw(d1 d2 d3);
32
33 package D2;
34 use base 'B1';
35 use fields qw(_d1 _d2);
36 use fields qw(d1 d2);
37
38 package D3;
39 use base 'B2';
40 use fields qw(b1 d1 _b1 _d1);  # hide b1
41
42 package D4;
43 use base 'D3';
44 use fields qw(_d3 d3);
45
46 package M;
47 sub m {}
48
49 package D5;
50 use base qw(M B2);
51
52 package Foo::Bar;
53 use base 'B1';
54
55 package Foo::Bar::Baz;
56 use base 'Foo::Bar';
57 use fields qw(foo bar baz);
58
59 package main;
60
61 sub fstr
62 {
63    my $h = shift;
64    my @tmp;
65    for my $k (sort {$h->{$a} <=> $h->{$b}} keys %$h) {
66         my $v = $h->{$k};
67         push(@tmp, "$k:$v");
68    }
69    my $str = join(",", @tmp);
70    print "$h => $str\n" if $DEBUG;
71    $str;
72 }
73
74 my %expect = (
75     B1 => "b1:1,b2:2,b3:3",
76     B2 => "_b1:1,b1:2,_b2:3,b2:4",
77     D1 => "b1:1,b2:2,b3:3,d1:4,d2:5,d3:6",
78     D2 => "b1:1,b2:2,b3:3,_d1:4,_d2:5,d1:6,d2:7",
79     D3 => "b2:4,b1:5,d1:6,_b1:7,_d1:8",
80     D4 => "b2:4,b1:5,d1:6,_d3:9,d3:10",
81     D5 => "b1:2,b2:4",
82     'Foo::Bar::Baz' => 'b1:1,b2:2,b3:3,foo:4,bar:5,baz:6',
83 );
84
85 print "1..", int(keys %expect)+3, "\n";
86 my $testno = 0;
87 while (my($class, $exp) = each %expect) {
88    no strict 'refs';
89    my $fstr = fstr(\%{$class."::FIELDS"});
90    print "EXP: $exp\nGOT: $fstr\nnot " unless $fstr eq $exp;
91    print "ok ", ++$testno, "\n";
92 }
93
94 # Did we get the appropriate amount of warnings?
95 print "not " unless $w == 1;
96 print "ok ", ++$testno, "\n";
97
98 # A simple object creation and AVHV attribute access test
99 my B2 $obj1 = D3->new;
100 $obj1->{b1} = "B2";
101 my D3 $obj2 = $obj1;
102 $obj2->{b1} = "D3";
103
104 print "not " unless $obj1->[2] eq "B2" && $obj1->[5] eq "D3";
105 print "ok ", ++$testno, "\n";
106
107 # We should get compile time failures field name typos
108 eval q(my D3 $obj3 = $obj2; $obj3->{notthere} = "");
109 print "not " unless $@ && $@ =~ /^No such field "notthere"/;
110 print "ok ", ++$testno, "\n";
111
112 #fields::_dump();