NetWare port from Guruprasad S <SGURUPRASAD@novell.com>.
[p5sagit/p5-mst-13.2.git] / t / lib / anydbm.t
1 #!./perl
2
3 # $RCSfile: dbm.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:43 $
4
5 BEGIN {
6     chdir 't' if -d 't';
7     @INC = '../lib';
8     require Config; import Config;
9     if (($Config{'extensions'} !~ /\b(DB|[A-Z]DBM)_File\b/) ){
10       print "1..0 # Skipping (no DB_File or [A-Z]DBM_File)\n";
11       exit 0;
12     }
13 }
14 require AnyDBM_File;
15 use Fcntl;
16
17 print "1..12\n";
18
19 $Is_Dosish = ($^O eq 'amigaos' || $^O eq 'MSWin32' || $^O eq 'NetWare' or $^O eq 'dos' or
20               $^O eq 'os2' or $^O eq 'mint');
21
22 unlink <Op_dbmx*>;
23
24 umask(0);
25 print (tie(%h,AnyDBM_File,'Op_dbmx', O_RDWR|O_CREAT, 0640)
26        ? "ok 1\n" : "not ok 1\n");
27
28 $Dfile = "Op_dbmx.pag";
29 if (! -e $Dfile) {
30         ($Dfile) = <Op_dbmx*>;
31 }
32 if ($Is_Dosish || $^O eq 'MacOS') {
33     print "ok 2 # Skipped: different file permission semantics\n";
34 }
35 else {
36     ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
37      $blksize,$blocks) = stat($Dfile);
38     print (($mode & 0777) == 0640 ? "ok 2\n" : "not ok 2\n");
39 }
40 while (($key,$value) = each(%h)) {
41     $i++;
42 }
43 print (!$i ? "ok 3\n" : "not ok 3 # i=$i\n\n");
44
45 $h{'goner1'} = 'snork';
46
47 $h{'abc'} = 'ABC';
48 $h{'def'} = 'DEF';
49 $h{'jkl','mno'} = "JKL\034MNO";
50 $h{'a',2,3,4,5} = join("\034",'A',2,3,4,5);
51 $h{'a'} = 'A';
52 $h{'b'} = 'B';
53 $h{'c'} = 'C';
54 $h{'d'} = 'D';
55 $h{'e'} = 'E';
56 $h{'f'} = 'F';
57 $h{'g'} = 'G';
58 $h{'h'} = 'H';
59 $h{'i'} = 'I';
60
61 $h{'goner2'} = 'snork';
62 delete $h{'goner2'};
63
64 untie(%h);
65 print (tie(%h,AnyDBM_File,'Op_dbmx', O_RDWR, 0640) ? "ok 4\n" : "not ok 4\n");
66
67 $h{'j'} = 'J';
68 $h{'k'} = 'K';
69 $h{'l'} = 'L';
70 $h{'m'} = 'M';
71 $h{'n'} = 'N';
72 $h{'o'} = 'O';
73 $h{'p'} = 'P';
74 $h{'q'} = 'Q';
75 $h{'r'} = 'R';
76 $h{'s'} = 'S';
77 $h{'t'} = 'T';
78 $h{'u'} = 'U';
79 $h{'v'} = 'V';
80 $h{'w'} = 'W';
81 $h{'x'} = 'X';
82 $h{'y'} = 'Y';
83 $h{'z'} = 'Z';
84
85 $h{'goner3'} = 'snork';
86
87 delete $h{'goner1'};
88 delete $h{'goner3'};
89
90 @keys = keys(%h);
91 @values = values(%h);
92
93 if ($#keys == 29 && $#values == 29) {print "ok 5\n";} else {print "not ok 5\n";}
94
95 while (($key,$value) = each(%h)) {
96     if ($key eq $keys[$i] && $value eq $values[$i] && $key eq lc($value)) {
97         $key =~ y/a-z/A-Z/;
98         $i++ if $key eq $value;
99     }
100 }
101
102 if ($i == 30) {print "ok 6\n";} else {print "not ok 6\n";}
103
104 @keys = ('blurfl', keys(%h), 'dyick');
105 if ($#keys == 31) {print "ok 7\n";} else {print "not ok 7\n";}
106
107 $h{'foo'} = '';
108 $h{''} = 'bar';
109
110 # check cache overflow and numeric keys and contents
111 $ok = 1;
112 for ($i = 1; $i < 200; $i++) { $h{$i + 0} = $i + 0; }
113 for ($i = 1; $i < 200; $i++) { $ok = 0 unless $h{$i} == $i; }
114 print ($ok ? "ok 8\n" : "not ok 8\n");
115
116 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
117    $blksize,$blocks) = stat($Dfile);
118 print ($size > 0 ? "ok 9\n" : "not ok 9\n");
119
120 @h{0..200} = 200..400;
121 @foo = @h{0..200};
122 print join(':',200..400) eq join(':',@foo) ? "ok 10\n" : "not ok 10\n";
123
124 print ($h{'foo'} eq '' ? "ok 11\n" : "not ok 11\n");
125 if ($h{''} eq 'bar') {
126    print "ok 12\n" ;
127 }
128 else {
129    if ($AnyDBM_File::ISA[0] eq 'DB_File' && $DB_File::db_ver >= 2.004010) {
130      ($major, $minor, $patch) = ($DB_File::db_ver =~ /^(\d+)\.(\d\d\d)(\d\d\d)/) ;
131      $major =~ s/^0+// ;
132      $minor =~ s/^0+// ;
133      $patch =~ s/^0+// ;
134      $compact = "$major.$minor.$patch" ;
135      #
136      # anydbm.t test 12 will fail when AnyDBM_File uses the combination of
137      # DB_File and Berkeley DB 2.4.10 (or greater). 
138      # You are using DB_File $DB_File::VERSION and Berkeley DB $compact
139      #
140      # Berkeley DB 2 from version 2.4.10 onwards does not allow null keys.
141      # This feature will be reenabled in a future version of Berkeley DB.
142      #
143      print "ok 12 # skipped: db v$compact, no null key support\n" ;
144    }
145    else {
146      print "not ok 12\n" ;
147    }
148 }
149
150 untie %h;
151 if ($^O eq 'VMS') {
152   unlink 'Op_dbmx.sdbm_dir', $Dfile;
153 } else {
154   unlink 'Op_dbmx.dir', $Dfile;  
155 }