This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
make testsuite somewhat location independent
[perl5.git] / t / lib / db-btree.t
CommitLineData
f6b705ef 1#!./perl -w
a0d0e21e
LW
2
3BEGIN {
93430cb4 4 unshift @INC, '../lib' if -d '../lib' ;
a0d0e21e
LW
5 require Config; import Config;
6 if ($Config{'extensions'} !~ /\bDB_File\b/) {
7 print "1..0\n";
8 exit 0;
9 }
10}
11
12use DB_File;
13use Fcntl;
14
a6ed719b 15print "1..102\n";
f6b705ef 16
17sub ok
18{
19 my $no = shift ;
20 my $result = shift ;
21
22 print "not " unless $result ;
23 print "ok $no\n" ;
24}
a0d0e21e 25
55497cff 26sub lexical
27{
28 my(@a) = unpack ("C*", $a) ;
29 my(@b) = unpack ("C*", $b) ;
30
31 my $len = (@a > @b ? @b : @a) ;
32 my $i = 0 ;
33
34 foreach $i ( 0 .. $len -1) {
35 return $a[$i] - $b[$i] if $a[$i] != $b[$i] ;
36 }
37
38 return @a - @b ;
39}
40
55d68b4a 41$Dfile = "dbbtree.tmp";
a0d0e21e
LW
42unlink $Dfile;
43
44umask(0);
45
46# Check the interface to BTREEINFO
47
f6b705ef 48my $dbh = new DB_File::BTREEINFO ;
3fe9a6f1 49ok(1, ! defined $dbh->{flags}) ;
50ok(2, ! defined $dbh->{cachesize}) ;
51ok(3, ! defined $dbh->{psize}) ;
52ok(4, ! defined $dbh->{lorder}) ;
53ok(5, ! defined $dbh->{minkeypage}) ;
54ok(6, ! defined $dbh->{maxkeypage}) ;
55ok(7, ! defined $dbh->{compare}) ;
56ok(8, ! defined $dbh->{prefix}) ;
a0d0e21e
LW
57
58$dbh->{flags} = 3000 ;
f6b705ef 59ok(9, $dbh->{flags} == 3000) ;
a0d0e21e
LW
60
61$dbh->{cachesize} = 9000 ;
f6b705ef 62ok(10, $dbh->{cachesize} == 9000);
63
a0d0e21e 64$dbh->{psize} = 400 ;
f6b705ef 65ok(11, $dbh->{psize} == 400) ;
a0d0e21e
LW
66
67$dbh->{lorder} = 65 ;
f6b705ef 68ok(12, $dbh->{lorder} == 65) ;
a0d0e21e
LW
69
70$dbh->{minkeypage} = 123 ;
f6b705ef 71ok(13, $dbh->{minkeypage} == 123) ;
a0d0e21e
LW
72
73$dbh->{maxkeypage} = 1234 ;
f6b705ef 74ok(14, $dbh->{maxkeypage} == 1234 );
a0d0e21e
LW
75
76$dbh->{compare} = 1234 ;
f6b705ef 77ok(15, $dbh->{compare} == 1234) ;
a0d0e21e
LW
78
79$dbh->{prefix} = 1234 ;
f6b705ef 80ok(16, $dbh->{prefix} == 1234 );
a0d0e21e
LW
81
82# Check that an invalid entry is caught both for store & fetch
83eval '$dbh->{fred} = 1234' ;
f6b705ef 84ok(17, $@ =~ /^DB_File::BTREEINFO::STORE - Unknown element 'fred' at/ ) ;
a0d0e21e 85eval '$q = $dbh->{fred}' ;
f6b705ef 86ok(18, $@ =~ /^DB_File::BTREEINFO::FETCH - Unknown element 'fred' at/ ) ;
a0d0e21e
LW
87
88# Now check the interface to BTREE
89
f6b705ef 90ok(19, $X = tie(%h, 'DB_File',$Dfile, O_RDWR|O_CREAT, 0640, $DB_BTREE )) ;
a0d0e21e
LW
91
92($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
93 $blksize,$blocks) = stat($Dfile);
a9fd575d 94ok(20, ($mode & 0777) == ($^O eq 'os2' ? 0666 : 0640) || $^O eq 'amigaos' || $^O eq 'MSWin32');
a0d0e21e
LW
95
96while (($key,$value) = each(%h)) {
97 $i++;
98}
f6b705ef 99ok(21, !$i ) ;
a0d0e21e
LW
100
101$h{'goner1'} = 'snork';
102
103$h{'abc'} = 'ABC';
f6b705ef 104ok(22, $h{'abc'} eq 'ABC' );
105ok(23, ! defined $h{'jimmy'} ) ;
106ok(24, ! exists $h{'jimmy'} ) ;
107ok(25, defined $h{'abc'} ) ;
a0d0e21e
LW
108
109$h{'def'} = 'DEF';
110$h{'jkl','mno'} = "JKL\034MNO";
111$h{'a',2,3,4,5} = join("\034",'A',2,3,4,5);
112$h{'a'} = 'A';
113
114#$h{'b'} = 'B';
115$X->STORE('b', 'B') ;
116
117$h{'c'} = 'C';
118
119#$h{'d'} = 'D';
120$X->put('d', 'D') ;
121
122$h{'e'} = 'E';
123$h{'f'} = 'F';
124$h{'g'} = 'X';
125$h{'h'} = 'H';
126$h{'i'} = 'I';
127
128$h{'goner2'} = 'snork';
129delete $h{'goner2'};
130
131
132# IMPORTANT - $X must be undefined before the untie otherwise the
133# underlying DB close routine will not get called.
134undef $X ;
135untie(%h);
136
137
138# tie to the same file again
f6b705ef 139ok(26, $X = tie(%h,'DB_File',$Dfile, O_RDWR, 0640, $DB_BTREE)) ;
a0d0e21e
LW
140
141# Modify an entry from the previous tie
142$h{'g'} = 'G';
143
144$h{'j'} = 'J';
145$h{'k'} = 'K';
146$h{'l'} = 'L';
147$h{'m'} = 'M';
148$h{'n'} = 'N';
149$h{'o'} = 'O';
150$h{'p'} = 'P';
151$h{'q'} = 'Q';
152$h{'r'} = 'R';
153$h{'s'} = 'S';
154$h{'t'} = 'T';
155$h{'u'} = 'U';
156$h{'v'} = 'V';
157$h{'w'} = 'W';
158$h{'x'} = 'X';
159$h{'y'} = 'Y';
160$h{'z'} = 'Z';
161
162$h{'goner3'} = 'snork';
163
164delete $h{'goner1'};
165$X->DELETE('goner3');
166
167@keys = keys(%h);
168@values = values(%h);
169
f6b705ef 170ok(27, $#keys == 29 && $#values == 29) ;
a0d0e21e 171
f6b705ef 172$i = 0 ;
a0d0e21e 173while (($key,$value) = each(%h)) {
2f52a358 174 if ($key eq $keys[$i] && $value eq $values[$i] && $key eq lc($value)) {
a0d0e21e
LW
175 $key =~ y/a-z/A-Z/;
176 $i++ if $key eq $value;
177 }
178}
179
f6b705ef 180ok(28, $i == 30) ;
a0d0e21e 181
55d68b4a 182@keys = ('blurfl', keys(%h), 'dyick');
f6b705ef 183ok(29, $#keys == 31) ;
a0d0e21e
LW
184
185#Check that the keys can be retrieved in order
55497cff 186my @b = keys %h ;
187my @c = sort lexical @b ;
188ok(30, ArrayCompare(\@b, \@c)) ;
a0d0e21e
LW
189
190$h{'foo'} = '';
f6b705ef 191ok(31, $h{'foo'} eq '' ) ;
a0d0e21e 192
a9fd575d
PM
193#$h{''} = 'bar';
194#ok(32, $h{''} eq 'bar' );
195ok(32,1) ;
a0d0e21e
LW
196
197# check cache overflow and numeric keys and contents
198$ok = 1;
199for ($i = 1; $i < 200; $i++) { $h{$i + 0} = $i + 0; }
200for ($i = 1; $i < 200; $i++) { $ok = 0 unless $h{$i} == $i; }
f6b705ef 201ok(33, $ok);
a0d0e21e
LW
202
203($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
204 $blksize,$blocks) = stat($Dfile);
f6b705ef 205ok(34, $size > 0 );
a0d0e21e
LW
206
207@h{0..200} = 200..400;
208@foo = @h{0..200};
f6b705ef 209ok(35, join(':',200..400) eq join(':',@foo) );
a0d0e21e
LW
210
211# Now check all the non-tie specific stuff
212
213
214# Check R_NOOVERWRITE flag will make put fail when attempting to overwrite
215# an existing record.
216
217$status = $X->put( 'x', 'newvalue', R_NOOVERWRITE) ;
f6b705ef 218ok(36, $status == 1 );
a0d0e21e
LW
219
220# check that the value of the key 'x' has not been changed by the
221# previous test
f6b705ef 222ok(37, $h{'x'} eq 'X' );
a0d0e21e
LW
223
224# standard put
225$status = $X->put('key', 'value') ;
f6b705ef 226ok(38, $status == 0 );
a0d0e21e
LW
227
228#check that previous put can be retrieved
f6b705ef 229$value = 0 ;
a0d0e21e 230$status = $X->get('key', $value) ;
f6b705ef 231ok(39, $status == 0 );
232ok(40, $value eq 'value' );
a0d0e21e
LW
233
234# Attempting to delete an existing key should work
235
236$status = $X->del('q') ;
f6b705ef 237ok(41, $status == 0 );
a9fd575d
PM
238#$status = $X->del('') ;
239#ok(42, $status == 0 );
240ok(42,1) ;
a0d0e21e
LW
241
242# Make sure that the key deleted, cannot be retrieved
ac1ad7f0
PM
243ok(43, ! defined $h{'q'}) ;
244ok(44, ! defined $h{''}) ;
a0d0e21e
LW
245
246undef $X ;
247untie %h ;
248
f6b705ef 249ok(45, $X = tie(%h, 'DB_File',$Dfile, O_RDWR, 0640, $DB_BTREE ));
a0d0e21e
LW
250
251# Attempting to delete a non-existant key should fail
252
253$status = $X->del('joe') ;
f6b705ef 254ok(46, $status == 1 );
a0d0e21e
LW
255
256# Check the get interface
257
258# First a non-existing key
259$status = $X->get('aaaa', $value) ;
f6b705ef 260ok(47, $status == 1 );
a0d0e21e
LW
261
262# Next an existing key
263$status = $X->get('a', $value) ;
f6b705ef 264ok(48, $status == 0 );
265ok(49, $value eq 'A' );
a0d0e21e
LW
266
267# seq
268# ###
269
270# use seq to find an approximate match
271$key = 'ke' ;
272$value = '' ;
273$status = $X->seq($key, $value, R_CURSOR) ;
f6b705ef 274ok(50, $status == 0 );
275ok(51, $key eq 'key' );
276ok(52, $value eq 'value' );
a0d0e21e
LW
277
278# seq when the key does not match
279$key = 'zzz' ;
280$value = '' ;
281$status = $X->seq($key, $value, R_CURSOR) ;
f6b705ef 282ok(53, $status == 1 );
a0d0e21e
LW
283
284
285# use seq to set the cursor, then delete the record @ the cursor.
286
287$key = 'x' ;
288$value = '' ;
289$status = $X->seq($key, $value, R_CURSOR) ;
f6b705ef 290ok(54, $status == 0 );
291ok(55, $key eq 'x' );
292ok(56, $value eq 'X' );
a0d0e21e 293$status = $X->del(0, R_CURSOR) ;
f6b705ef 294ok(57, $status == 0 );
a0d0e21e 295$status = $X->get('x', $value) ;
f6b705ef 296ok(58, $status == 1 );
a0d0e21e
LW
297
298# ditto, but use put to replace the key/value pair.
299$key = 'y' ;
300$value = '' ;
301$status = $X->seq($key, $value, R_CURSOR) ;
f6b705ef 302ok(59, $status == 0 );
303ok(60, $key eq 'y' );
304ok(61, $value eq 'Y' );
a0d0e21e
LW
305
306$key = "replace key" ;
307$value = "replace value" ;
308$status = $X->put($key, $value, R_CURSOR) ;
f6b705ef 309ok(62, $status == 0 );
310ok(63, $key eq 'replace key' );
311ok(64, $value eq 'replace value' );
a0d0e21e 312$status = $X->get('y', $value) ;
1f70e1ea 313ok(65, 1) ; # hard-wire to always pass. the previous test ($status == 1)
a9fd575d 314 # only worked because of a bug in 1.85/6
a0d0e21e
LW
315
316# use seq to walk forwards through a file
317
318$status = $X->seq($key, $value, R_FIRST) ;
f6b705ef 319ok(66, $status == 0 );
a0d0e21e
LW
320$previous = $key ;
321
322$ok = 1 ;
323while (($status = $X->seq($key, $value, R_NEXT)) == 0)
324{
325 ($ok = 0), last if ($previous cmp $key) == 1 ;
326}
327
f6b705ef 328ok(67, $status == 1 );
329ok(68, $ok == 1 );
a0d0e21e
LW
330
331# use seq to walk backwards through a file
332$status = $X->seq($key, $value, R_LAST) ;
f6b705ef 333ok(69, $status == 0 );
a0d0e21e
LW
334$previous = $key ;
335
336$ok = 1 ;
337while (($status = $X->seq($key, $value, R_PREV)) == 0)
338{
339 ($ok = 0), last if ($previous cmp $key) == -1 ;
340 #print "key = [$key] value = [$value]\n" ;
341}
342
f6b705ef 343ok(70, $status == 1 );
344ok(71, $ok == 1 );
a0d0e21e
LW
345
346
347# check seq FIRST/LAST
348
349# sync
350# ####
351
352$status = $X->sync ;
f6b705ef 353ok(72, $status == 0 );
a0d0e21e
LW
354
355
356# fd
357# ##
358
359$status = $X->fd ;
f6b705ef 360ok(73, $status != 0 );
a0d0e21e
LW
361
362
363undef $X ;
364untie %h ;
365
366unlink $Dfile;
367
368# Now try an in memory file
f6b705ef 369ok(74, $Y = tie(%h, 'DB_File',undef, O_RDWR|O_CREAT, 0640, $DB_BTREE ));
a0d0e21e
LW
370
371# fd with an in memory file should return failure
372$status = $Y->fd ;
f6b705ef 373ok(75, $status == -1 );
a0d0e21e 374
55d68b4a 375
a0d0e21e
LW
376undef $Y ;
377untie %h ;
378
55d68b4a 379# Duplicate keys
380my $bt = new DB_File::BTREEINFO ;
381$bt->{flags} = R_DUP ;
f6b705ef 382ok(76, $YY = tie(%hh, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $bt )) ;
55d68b4a 383
384$hh{'Wall'} = 'Larry' ;
385$hh{'Wall'} = 'Stone' ; # Note the duplicate key
386$hh{'Wall'} = 'Brick' ; # Note the duplicate key
f6b705ef 387$hh{'Wall'} = 'Brick' ; # Note the duplicate key and value
55d68b4a 388$hh{'Smith'} = 'John' ;
389$hh{'mouse'} = 'mickey' ;
390
391# first work in scalar context
f6b705ef 392ok(77, scalar $YY->get_dup('Unknown') == 0 );
393ok(78, scalar $YY->get_dup('Smith') == 1 );
394ok(79, scalar $YY->get_dup('Wall') == 4 );
55d68b4a 395
396# now in list context
397my @unknown = $YY->get_dup('Unknown') ;
f6b705ef 398ok(80, "@unknown" eq "" );
55d68b4a 399
400my @smith = $YY->get_dup('Smith') ;
f6b705ef 401ok(81, "@smith" eq "John" );
55d68b4a 402
760ac839 403{
f6b705ef 404my @wall = $YY->get_dup('Wall') ;
405my %wall ;
406@wall{@wall} = @wall ;
407ok(82, (@wall == 4 && $wall{'Larry'} && $wall{'Stone'} && $wall{'Brick'}) );
760ac839 408}
55d68b4a 409
410# hash
411my %unknown = $YY->get_dup('Unknown', 1) ;
f6b705ef 412ok(83, keys %unknown == 0 );
55d68b4a 413
414my %smith = $YY->get_dup('Smith', 1) ;
f6b705ef 415ok(84, keys %smith == 1 && $smith{'John'}) ;
55d68b4a 416
f6b705ef 417my %wall = $YY->get_dup('Wall', 1) ;
418ok(85, keys %wall == 3 && $wall{'Larry'} == 1 && $wall{'Stone'} == 1
419 && $wall{'Brick'} == 2);
55d68b4a 420
421undef $YY ;
422untie %hh ;
423unlink $Dfile;
424
425
8e07c86e
AD
426# test multiple callbacks
427$Dfile1 = "btree1" ;
428$Dfile2 = "btree2" ;
429$Dfile3 = "btree3" ;
430
36477c24 431$dbh1 = new DB_File::BTREEINFO ;
ac1ad7f0
PM
432{ local $^W = 0 ;
433 $dbh1->{compare} = sub { $_[0] <=> $_[1] } ; }
8e07c86e 434
36477c24 435$dbh2 = new DB_File::BTREEINFO ;
8e07c86e
AD
436$dbh2->{compare} = sub { $_[0] cmp $_[1] } ;
437
36477c24 438$dbh3 = new DB_File::BTREEINFO ;
8e07c86e
AD
439$dbh3->{compare} = sub { length $_[0] <=> length $_[1] } ;
440
441
f6b705ef 442tie(%h, 'DB_File',$Dfile1, O_RDWR|O_CREAT, 0640, $dbh1 ) ;
443tie(%g, 'DB_File',$Dfile2, O_RDWR|O_CREAT, 0640, $dbh2 ) ;
444tie(%k, 'DB_File',$Dfile3, O_RDWR|O_CREAT, 0640, $dbh3 ) ;
8e07c86e
AD
445
446@Keys = qw( 0123 12 -1234 9 987654321 def ) ;
ac1ad7f0
PM
447{ local $^W = 0 ;
448 @srt_1 = sort { $a <=> $b } @Keys ; }
8e07c86e
AD
449@srt_2 = sort { $a cmp $b } @Keys ;
450@srt_3 = sort { length $a <=> length $b } @Keys ;
451
452foreach (@Keys) {
ac1ad7f0
PM
453 { local $^W = 0 ;
454 $h{$_} = 1 ; }
8e07c86e
AD
455 $g{$_} = 1 ;
456 $k{$_} = 1 ;
457}
458
459sub ArrayCompare
460{
461 my($a, $b) = @_ ;
462
463 return 0 if @$a != @$b ;
464
465 foreach (1 .. length @$a)
466 {
467 return 0 unless $$a[$_] eq $$b[$_] ;
468 }
469
470 1 ;
471}
472
f6b705ef 473ok(86, ArrayCompare (\@srt_1, [keys %h]) );
474ok(87, ArrayCompare (\@srt_2, [keys %g]) );
475ok(88, ArrayCompare (\@srt_3, [keys %k]) );
8e07c86e
AD
476
477untie %h ;
478untie %g ;
479untie %k ;
480unlink $Dfile1, $Dfile2, $Dfile3 ;
481
f6b705ef 482# clear
483# #####
484
485ok(89, tie(%h, 'DB_File', $Dfile1, O_RDWR|O_CREAT, 0640, $DB_BTREE ) );
486foreach (1 .. 10)
487 { $h{$_} = $_ * 100 }
488
489# check that there are 10 elements in the hash
490$i = 0 ;
491while (($key,$value) = each(%h)) {
492 $i++;
493}
494ok(90, $i == 10);
495
496# now clear the hash
497%h = () ;
498
499# check it is empty
500$i = 0 ;
501while (($key,$value) = each(%h)) {
502 $i++;
503}
504ok(91, $i == 0);
505
506untie %h ;
507unlink $Dfile1 ;
508
05475680
PM
509{
510 # check that attempting to tie an array to a DB_BTREE will fail
511
512 my $filename = "xyz" ;
513 my @x ;
514 eval { tie @x, 'DB_File', $filename, O_RDWR|O_CREAT, 0640, $DB_BTREE ; } ;
515 ok(92, $@ =~ /^DB_File can only tie an associative array to a DB_BTREE database/) ;
516 unlink $filename ;
517}
518
a6ed719b
PM
519{
520 # sub-class test
521
522 package Another ;
523
524 use strict ;
525
526 open(FILE, ">SubDB.pm") or die "Cannot open SubDB.pm: $!\n" ;
527 print FILE <<'EOM' ;
528
529 package SubDB ;
530
531 use strict ;
532 use vars qw( @ISA @EXPORT) ;
533
534 require Exporter ;
535 use DB_File;
536 @ISA=qw(DB_File);
537 @EXPORT = @DB_File::EXPORT ;
538
539 sub STORE {
540 my $self = shift ;
541 my $key = shift ;
542 my $value = shift ;
543 $self->SUPER::STORE($key, $value * 2) ;
544 }
545
546 sub FETCH {
547 my $self = shift ;
548 my $key = shift ;
549 $self->SUPER::FETCH($key) - 1 ;
550 }
551
552 sub put {
553 my $self = shift ;
554 my $key = shift ;
555 my $value = shift ;
556 $self->SUPER::put($key, $value * 3) ;
557 }
558
559 sub get {
560 my $self = shift ;
561 $self->SUPER::get($_[0], $_[1]) ;
562 $_[1] -= 2 ;
563 }
564
565 sub A_new_method
566 {
567 my $self = shift ;
568 my $key = shift ;
569 my $value = $self->FETCH($key) ;
570 return "[[$value]]" ;
571 }
572
573 1 ;
574EOM
575
576 close FILE ;
577
a9fd575d 578 BEGIN { push @INC, '.'; }
a6ed719b
PM
579 eval 'use SubDB ; ';
580 main::ok(93, $@ eq "") ;
581 my %h ;
582 my $X ;
583 eval '
584 $X = tie(%h, "SubDB","dbbtree.tmp", O_RDWR|O_CREAT, 0640, $DB_BTREE );
585 ' ;
586
587 main::ok(94, $@ eq "") ;
588
589 my $ret = eval '$h{"fred"} = 3 ; return $h{"fred"} ' ;
590 main::ok(95, $@ eq "") ;
591 main::ok(96, $ret == 5) ;
592
593 my $value = 0;
594 $ret = eval '$X->put("joe", 4) ; $X->get("joe", $value) ; return $value' ;
595 main::ok(97, $@ eq "") ;
596 main::ok(98, $ret == 10) ;
597
598 $ret = eval ' R_NEXT eq main::R_NEXT ' ;
599 main::ok(99, $@ eq "" ) ;
600 main::ok(100, $ret == 1) ;
601
602 $ret = eval '$X->A_new_method("joe") ' ;
603 main::ok(101, $@ eq "") ;
604 main::ok(102, $ret eq "[[11]]") ;
605
fac76ed7
MB
606 undef $X;
607 untie(%h);
a6ed719b
PM
608 unlink "SubDB.pm", "dbbtree.tmp" ;
609
610}
611
a0d0e21e 612exit ;