| 1 | #!/usr/bin/perl -w
|
|---|
| 2 | #
|
|---|
| 3 | # Basic test suite for Tie::RefHash and Tie::RefHash::Nestable.
|
|---|
| 4 | #
|
|---|
| 5 | # The testing is in two parts: first, run lots of tests on both a tied
|
|---|
| 6 | # hash and an ordinary un-tied hash, and check they give the same
|
|---|
| 7 | # answer. Then there are tests for those cases where the tied hashes
|
|---|
| 8 | # should behave differently to normal hashes, that is, when using
|
|---|
| 9 | # references as keys.
|
|---|
| 10 | #
|
|---|
| 11 |
|
|---|
| 12 | BEGIN {
|
|---|
| 13 | chdir 't' if -d 't';
|
|---|
| 14 | @INC = '.';
|
|---|
| 15 | push @INC, '../lib';
|
|---|
| 16 | require Config;
|
|---|
| 17 | if (($Config::Config{'extensions'} !~ m!\bData/Dumper\b!) ){
|
|---|
| 18 | print "1..0 # Skip -- Perl configured without Data::Dumper module\n";
|
|---|
| 19 | exit 0;
|
|---|
| 20 | }
|
|---|
| 21 | }
|
|---|
| 22 |
|
|---|
| 23 | use strict;
|
|---|
| 24 | use Tie::RefHash;
|
|---|
| 25 | use Data::Dumper;
|
|---|
| 26 | my $numtests = 39;
|
|---|
| 27 | my $currtest = 1;
|
|---|
| 28 | print "1..$numtests\n";
|
|---|
| 29 |
|
|---|
| 30 | my $ref = []; my $ref1 = [];
|
|---|
| 31 |
|
|---|
| 32 | package Boustrophedon; # A class with overloaded "".
|
|---|
| 33 | sub new { my ($c, $s) = @_; bless \$s, $c }
|
|---|
| 34 | use overload '""' => sub { ${$_[0]} . reverse ${$_[0]} };
|
|---|
| 35 | package main;
|
|---|
| 36 | my $ox = Boustrophedon->new("foobar");
|
|---|
| 37 |
|
|---|
| 38 | # Test standard hash functionality, by performing the same operations
|
|---|
| 39 | # on a tied hash and on a normal hash, and checking that the results
|
|---|
| 40 | # are the same. This does of course assume that Perl hashes are not
|
|---|
| 41 | # buggy :-)
|
|---|
| 42 | #
|
|---|
| 43 | my @tests = standard_hash_tests();
|
|---|
| 44 |
|
|---|
| 45 | my @ordinary_results = runtests(\@tests, undef);
|
|---|
| 46 | foreach my $class ('Tie::RefHash', 'Tie::RefHash::Nestable') {
|
|---|
| 47 | my @tied_results = runtests(\@tests, $class);
|
|---|
| 48 | my $all_ok = 1;
|
|---|
| 49 |
|
|---|
| 50 | die if @ordinary_results != @tied_results;
|
|---|
| 51 | foreach my $i (0 .. $#ordinary_results) {
|
|---|
| 52 | my ($or, $ow, $oe) = @{$ordinary_results[$i]};
|
|---|
| 53 | my ($tr, $tw, $te) = @{$tied_results[$i]};
|
|---|
| 54 |
|
|---|
| 55 | my $ok = 1;
|
|---|
| 56 | local $^W = 0;
|
|---|
| 57 | $ok = 0 if (defined($or) != defined($tr)) or ($or ne $tr);
|
|---|
| 58 | $ok = 0 if (defined($ow) != defined($tw)) or ($ow ne $tw);
|
|---|
| 59 | $ok = 0 if (defined($oe) != defined($te)) or ($oe ne $te);
|
|---|
| 60 |
|
|---|
| 61 | if (not $ok) {
|
|---|
| 62 | print STDERR
|
|---|
| 63 | "failed for $class: $tests[$i]\n",
|
|---|
| 64 | "ordinary hash gave:\n",
|
|---|
| 65 | defined $or ? "\tresult: $or\n" : "\tundef result\n",
|
|---|
| 66 | defined $ow ? "\twarning: $ow\n" : "\tno warning\n",
|
|---|
| 67 | defined $oe ? "\texception: $oe\n" : "\tno exception\n",
|
|---|
| 68 | "tied $class hash gave:\n",
|
|---|
| 69 | defined $tr ? "\tresult: $tr\n" : "\tundef result\n",
|
|---|
| 70 | defined $tw ? "\twarning: $tw\n" : "\tno warning\n",
|
|---|
| 71 | defined $te ? "\texception: $te\n" : "\tno exception\n",
|
|---|
| 72 | "\n";
|
|---|
| 73 | $all_ok = 0;
|
|---|
| 74 | }
|
|---|
| 75 | }
|
|---|
| 76 | test($all_ok);
|
|---|
| 77 | }
|
|---|
| 78 |
|
|---|
| 79 | # Now test Tie::RefHash's special powers
|
|---|
| 80 | my (%h, $h);
|
|---|
| 81 | $h = eval { tie %h, 'Tie::RefHash' };
|
|---|
| 82 | warn $@ if $@;
|
|---|
| 83 | test(not $@);
|
|---|
| 84 | test(ref($h) eq 'Tie::RefHash');
|
|---|
| 85 | test(defined(tied(%h)) and tied(%h) =~ /^Tie::RefHash/);
|
|---|
| 86 | $h{$ref} = 'cholet';
|
|---|
| 87 | test($h{$ref} eq 'cholet');
|
|---|
| 88 | test(exists $h{$ref});
|
|---|
| 89 | test((keys %h) == 1);
|
|---|
| 90 | test(ref((keys %h)[0]) eq 'ARRAY');
|
|---|
| 91 | test((keys %h)[0] eq $ref);
|
|---|
| 92 | test((values %h) == 1);
|
|---|
| 93 | test((values %h)[0] eq 'cholet');
|
|---|
| 94 | my $count = 0;
|
|---|
| 95 | while (my ($k, $v) = each %h) {
|
|---|
| 96 | if ($count++ == 0) {
|
|---|
| 97 | test(ref($k) eq 'ARRAY');
|
|---|
| 98 | test($k eq $ref);
|
|---|
| 99 | }
|
|---|
| 100 | }
|
|---|
| 101 | test($count == 1);
|
|---|
| 102 | delete $h{$ref};
|
|---|
| 103 | test(not defined $h{$ref});
|
|---|
| 104 | test(not exists($h{$ref}));
|
|---|
| 105 | test((keys %h) == 0);
|
|---|
| 106 | test((values %h) == 0);
|
|---|
| 107 | $h{$ox} = "bellow"; # overloaded ""
|
|---|
| 108 | test(exists $h{$ox});
|
|---|
| 109 | test($h{$ox} eq "bellow");
|
|---|
| 110 | test(not exists $h{"foobarraboof"});
|
|---|
| 111 | undef $h;
|
|---|
| 112 | untie %h;
|
|---|
| 113 |
|
|---|
| 114 | # And now Tie::RefHash::Nestable's differences from Tie::RefHash.
|
|---|
| 115 | $h = eval { tie %h, 'Tie::RefHash::Nestable' };
|
|---|
| 116 | warn $@ if $@;
|
|---|
| 117 | test(not $@);
|
|---|
| 118 | test(ref($h) eq 'Tie::RefHash::Nestable');
|
|---|
| 119 | test(defined(tied(%h)) and tied(%h) =~ /^Tie::RefHash::Nestable/);
|
|---|
| 120 | $h{$ref}->{$ref1} = 'bungo';
|
|---|
| 121 | test($h{$ref}->{$ref1} eq 'bungo');
|
|---|
| 122 |
|
|---|
| 123 | # Test that the nested hash is also tied (for current implementation)
|
|---|
| 124 | test(defined(tied(%{$h{$ref}}))
|
|---|
| 125 | and tied(%{$h{$ref}}) =~ /^Tie::RefHash::Nestable=/ );
|
|---|
| 126 |
|
|---|
| 127 | test((keys %h) == 1);
|
|---|
| 128 | test((keys %h)[0] eq $ref);
|
|---|
| 129 | test((keys %{$h{$ref}}) == 1);
|
|---|
| 130 | test((keys %{$h{$ref}})[0] eq $ref1);
|
|---|
| 131 |
|
|---|
| 132 | {
|
|---|
| 133 | # Tests that delete returns the deleted element [perl #32193]
|
|---|
| 134 | my $ref = \(my $var = "oink");
|
|---|
| 135 | tie my %oink, 'Tie::RefHash';
|
|---|
| 136 | $oink{$ref} = "ding";
|
|---|
| 137 | test($oink{$ref} eq "ding");
|
|---|
| 138 | test(delete($oink{$ref}) eq "ding");
|
|---|
| 139 | }
|
|---|
| 140 |
|
|---|
| 141 | die "expected to run $numtests tests, but ran ", $currtest - 1
|
|---|
| 142 | if $currtest - 1 != $numtests;
|
|---|
| 143 |
|
|---|
| 144 | @tests = ();
|
|---|
| 145 | undef $ref;
|
|---|
| 146 | undef $ref1;
|
|---|
| 147 |
|
|---|
| 148 | exit();
|
|---|
| 149 |
|
|---|
| 150 |
|
|---|
| 151 | # Print 'ok X' if true, 'not ok X' if false
|
|---|
| 152 | # Uses global $currtest.
|
|---|
| 153 | #
|
|---|
| 154 | sub test {
|
|---|
| 155 | my $t = shift;
|
|---|
| 156 | print 'not ' if not $t;
|
|---|
| 157 | print 'ok ', $currtest++, "\n";
|
|---|
| 158 | }
|
|---|
| 159 |
|
|---|
| 160 |
|
|---|
| 161 | # Wrapper for Data::Dumper to 'dump' a scalar as an EXPR string.
|
|---|
| 162 | sub dumped {
|
|---|
| 163 | my $s = shift;
|
|---|
| 164 | my $d = Dumper($s);
|
|---|
| 165 | $d =~ s/^\$VAR1 =\s*//;
|
|---|
| 166 | $d =~ s/;$//;
|
|---|
| 167 | chomp $d;
|
|---|
| 168 | return $d;
|
|---|
| 169 | }
|
|---|
| 170 |
|
|---|
| 171 | # Crudely dump a hash into a canonical string representation (because
|
|---|
| 172 | # hash keys can appear in any order, Data::Dumper may give different
|
|---|
| 173 | # strings for the same hash).
|
|---|
| 174 | #
|
|---|
| 175 | sub dumph {
|
|---|
| 176 | my $h = shift;
|
|---|
| 177 | my $r = '';
|
|---|
| 178 | foreach (sort keys %$h) {
|
|---|
| 179 | $r = dumped($_) . ' => ' . dumped($h->{$_}) . "\n";
|
|---|
| 180 | }
|
|---|
| 181 | return $r;
|
|---|
| 182 | }
|
|---|
| 183 |
|
|---|
| 184 | # Run the tests and give results.
|
|---|
| 185 | #
|
|---|
| 186 | # Parameters: reference to list of tests to run
|
|---|
| 187 | # name of class to use for tied hash, or undef if not tied
|
|---|
| 188 | #
|
|---|
| 189 | # Returns: list of [R, W, E] tuples, one for each test.
|
|---|
| 190 | # R is the return value from running the test, W any warnings it gave,
|
|---|
| 191 | # and E any exception raised with 'die'. E and W will be tidied up a
|
|---|
| 192 | # little to remove irrelevant details like line numbers :-)
|
|---|
| 193 | #
|
|---|
| 194 | # Will also run a few of its own 'ok N' tests.
|
|---|
| 195 | #
|
|---|
| 196 | sub runtests {
|
|---|
| 197 | my ($tests, $class) = @_;
|
|---|
| 198 | my @r;
|
|---|
| 199 |
|
|---|
| 200 | my (%h, $h);
|
|---|
| 201 | if (defined $class) {
|
|---|
| 202 | $h = eval { tie %h, $class };
|
|---|
| 203 | warn $@ if $@;
|
|---|
| 204 | test(not $@);
|
|---|
| 205 | test(ref($h) eq $class);
|
|---|
| 206 | test(defined(tied(%h)) and tied(%h) =~ /^\Q$class\E/);
|
|---|
| 207 | }
|
|---|
| 208 |
|
|---|
| 209 | foreach (@$tests) {
|
|---|
| 210 | my ($result, $warning, $exception);
|
|---|
| 211 | local $SIG{__WARN__} = sub { $warning .= $_[0] };
|
|---|
| 212 | $result = scalar(eval $_);
|
|---|
| 213 | if ($@)
|
|---|
| 214 | {
|
|---|
| 215 | die "$@:$_" unless defined $class;
|
|---|
| 216 | $exception = $@;
|
|---|
| 217 | }
|
|---|
| 218 |
|
|---|
| 219 | foreach ($warning, $exception) {
|
|---|
| 220 | next if not defined;
|
|---|
| 221 | s/ at .+ line \d+\.$//mg;
|
|---|
| 222 | s/ at .+ line \d+, at .*//mg;
|
|---|
| 223 | s/ at .+ line \d+, near .*//mg;
|
|---|
| 224 | }
|
|---|
| 225 |
|
|---|
| 226 | my (@warnings, %seen);
|
|---|
| 227 | foreach (split /\n/, $warning) {
|
|---|
| 228 | push @warnings, $_ unless $seen{$_}++;
|
|---|
| 229 | }
|
|---|
| 230 | $warning = join("\n", @warnings);
|
|---|
| 231 |
|
|---|
| 232 | push @r, [ $result, $warning, $exception ];
|
|---|
| 233 | }
|
|---|
| 234 |
|
|---|
| 235 | return @r;
|
|---|
| 236 | }
|
|---|
| 237 |
|
|---|
| 238 |
|
|---|
| 239 | # Things that should work just the same for an ordinary hash and a
|
|---|
| 240 | # Tie::RefHash.
|
|---|
| 241 | #
|
|---|
| 242 | # Each test is a code string to be eval'd, it should do something with
|
|---|
| 243 | # %h and give a scalar return value. The global $ref and $ref1 may
|
|---|
| 244 | # also be used.
|
|---|
| 245 | #
|
|---|
| 246 | # One thing we don't test is that the ordering from 'keys', 'values'
|
|---|
| 247 | # and 'each' is the same. You can't reasonably expect that.
|
|---|
| 248 | #
|
|---|
| 249 | sub standard_hash_tests {
|
|---|
| 250 | my @r;
|
|---|
| 251 |
|
|---|
| 252 | # Library of standard tests on keys, values and each
|
|---|
| 253 | my $STD_TESTS = <<'END'
|
|---|
| 254 | join $;, sort keys %h;
|
|---|
| 255 | join $;, sort values %h;
|
|---|
| 256 | { my ($v, %tmp); $tmp{$v}++ while (defined($v = each %h)); dumph(\%tmp) }
|
|---|
| 257 | { my ($k, $v, %tmp); $tmp{"$k$;$v"}++ while (($k, $v) = each %h); dumph(\%tmp) }
|
|---|
| 258 | END
|
|---|
| 259 | ;
|
|---|
| 260 |
|
|---|
| 261 | # Tests on the existence of the element 'foo'
|
|---|
| 262 | my $FOO_TESTS = <<'END'
|
|---|
| 263 | defined $h{foo};
|
|---|
| 264 | exists $h{foo};
|
|---|
| 265 | $h{foo};
|
|---|
| 266 | END
|
|---|
| 267 | ;
|
|---|
| 268 |
|
|---|
| 269 | # Test storing and deleting 'foo'
|
|---|
| 270 | push @r, split /\n/, <<"END"
|
|---|
| 271 | $STD_TESTS;
|
|---|
| 272 | $FOO_TESTS;
|
|---|
| 273 | \$h{foo} = undef;
|
|---|
| 274 | $STD_TESTS;
|
|---|
| 275 | $FOO_TESTS;
|
|---|
| 276 | \$h{foo} = 'hello';
|
|---|
| 277 | $STD_TESTS;
|
|---|
| 278 | $FOO_TESTS;
|
|---|
| 279 | delete \$h{foo};
|
|---|
| 280 | $STD_TESTS;
|
|---|
| 281 | $FOO_TESTS;
|
|---|
| 282 | END
|
|---|
| 283 | ;
|
|---|
| 284 |
|
|---|
| 285 | # Test storing and removing under ordinary keys
|
|---|
| 286 | my @things = ('boink', 0, 1, '', undef);
|
|---|
| 287 | foreach my $key (map { dumped($_) } @things) {
|
|---|
| 288 | foreach my $value ((map { dumped($_) } @things), '$ref') {
|
|---|
| 289 | push @r, split /\n/, <<"END"
|
|---|
| 290 | \$h{$key} = $value;
|
|---|
| 291 | $STD_TESTS;
|
|---|
| 292 | defined \$h{$key};
|
|---|
| 293 | exists \$h{$key};
|
|---|
| 294 | \$h{$key};
|
|---|
| 295 | delete \$h{$key};
|
|---|
| 296 | $STD_TESTS;
|
|---|
| 297 | defined \$h{$key};
|
|---|
| 298 | exists \$h{$key};
|
|---|
| 299 | \$h{$key};
|
|---|
| 300 | END
|
|---|
| 301 | ;
|
|---|
| 302 | }
|
|---|
| 303 | }
|
|---|
| 304 |
|
|---|
| 305 | # Test hash slices
|
|---|
| 306 | my @slicetests;
|
|---|
| 307 | @slicetests = split /\n/, <<'END'
|
|---|
| 308 | @h{'b'} = ();
|
|---|
| 309 | @h{'c'} = ('d');
|
|---|
| 310 | @h{'e'} = ('f', 'g');
|
|---|
| 311 | @h{'h', 'i'} = ();
|
|---|
| 312 | @h{'j', 'k'} = ('l');
|
|---|
| 313 | @h{'m', 'n'} = ('o', 'p');
|
|---|
| 314 | @h{'q', 'r'} = ('s', 't', 'u');
|
|---|
| 315 | END
|
|---|
| 316 | ;
|
|---|
| 317 | my @aaa = @slicetests;
|
|---|
| 318 | foreach (@slicetests) {
|
|---|
| 319 | push @r, $_;
|
|---|
| 320 | push @r, split(/\n/, $STD_TESTS);
|
|---|
| 321 | }
|
|---|
| 322 |
|
|---|
| 323 | # Test CLEAR
|
|---|
| 324 | push @r, '%h = ();', split(/\n/, $STD_TESTS);
|
|---|
| 325 |
|
|---|
| 326 | return @r;
|
|---|
| 327 | }
|
|---|