Eval fails in certain situations (eval "{'...")
[p5sagit/p5-mst-13.2.git] / t / lib / db-recno.t
1 #!./perl -w
2
3 BEGIN {
4     @INC = '../lib' if -d '../lib' ;
5     require Config; import Config;
6     if ($Config{'extensions'} !~ /\bDB_File\b/) {
7         print "1..0\n";
8         exit 0;
9     }
10 }
11
12 use DB_File; 
13 use Fcntl;
14 use strict ;
15 use vars qw($dbh $Dfile $bad_ones) ;
16
17 sub ok
18 {
19     my $no = shift ;
20     my $result = shift ;
21
22     print "not " unless $result ;
23     print "ok $no\n" ;
24
25     return $result ;
26 }
27
28 sub bad_one
29 {
30     print STDERR <<EOM unless $bad_ones++ ;
31 #
32 # Some older versions of Berkeley DB will fail tests 51, 53 and 55.
33 #
34 # You can safely ignore the errors if you're never going to use the
35 # broken functionality (recno databases with a modified bval). 
36 # Otherwise you'll have to upgrade your DB library.
37 #
38 # If you want to upgrade Berkeley DB, the most recent version is 1.85.
39 # Check out http://www.bostic.com/db for more details.
40 #
41 EOM
42 }
43
44 print "1..56\n";
45
46 my $Dfile = "recno.tmp";
47 unlink $Dfile ;
48
49 umask(0);
50
51 # Check the interface to RECNOINFO
52
53 my $dbh = new DB_File::RECNOINFO ;
54 ok(1, ! defined $dbh->{bval}) ;
55 ok(2, ! defined $dbh->{cachesize}) ;
56 ok(3, ! defined $dbh->{psize}) ;
57 ok(4, ! defined $dbh->{flags}) ;
58 ok(5, ! defined $dbh->{lorder}) ;
59 ok(6, ! defined $dbh->{reclen}) ;
60 ok(7, ! defined $dbh->{bfname}) ;
61
62 $dbh->{bval} = 3000 ;
63 ok(8, $dbh->{bval} == 3000 );
64
65 $dbh->{cachesize} = 9000 ;
66 ok(9, $dbh->{cachesize} == 9000 );
67
68 $dbh->{psize} = 400 ;
69 ok(10, $dbh->{psize} == 400 );
70
71 $dbh->{flags} = 65 ;
72 ok(11, $dbh->{flags} == 65 );
73
74 $dbh->{lorder} = 123 ;
75 ok(12, $dbh->{lorder} == 123 );
76
77 $dbh->{reclen} = 1234 ;
78 ok(13, $dbh->{reclen} == 1234 );
79
80 $dbh->{bfname} = 1234 ;
81 ok(14, $dbh->{bfname} == 1234 );
82
83
84 # Check that an invalid entry is caught both for store & fetch
85 eval '$dbh->{fred} = 1234' ;
86 ok(15, $@ =~ /^DB_File::RECNOINFO::STORE - Unknown element 'fred' at/ );
87 eval 'my $q = $dbh->{fred}' ;
88 ok(16, $@ =~ /^DB_File::RECNOINFO::FETCH - Unknown element 'fred' at/ );
89
90 # Now check the interface to RECNOINFO
91
92 my $X  ;
93 my @h ;
94 ok(17, $X = tie @h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $DB_RECNO ) ;
95
96 ok(18, ((stat($Dfile))[2] & 0777) == ($^O eq 'os2' ? 0666 : 0640)
97         || $^O eq 'amigaos') ;
98
99 #my $l = @h ;
100 my $l = $X->length ;
101 ok(19, !$l );
102
103 my @data = qw( a b c d ever f g h  i j k longername m n o p) ;
104
105 $h[0] = shift @data ;
106 ok(20, $h[0] eq 'a' );
107
108 my $ i;
109 foreach (@data)
110   { $h[++$i] = $_ }
111
112 unshift (@data, 'a') ;
113
114 ok(21, defined $h[1] );
115 ok(22, ! defined $h[16] );
116 ok(23, $X->length == @data );
117
118
119 # Overwrite an entry & check fetch it
120 $h[3] = 'replaced' ;
121 $data[3] = 'replaced' ;
122 ok(24, $h[3] eq 'replaced' );
123
124 #PUSH
125 my @push_data = qw(added to the end) ;
126 #my push (@h, @push_data) ;
127 $X->push(@push_data) ;
128 push (@data, @push_data) ;
129 ok(25, $h[++$i] eq 'added' );
130 ok(26, $h[++$i] eq 'to' );
131 ok(27, $h[++$i] eq 'the' );
132 ok(28, $h[++$i] eq 'end' );
133
134 # POP
135 my $popped = pop (@data) ;
136 #my $value = pop(@h) ;
137 my $value = $X->pop ;
138 ok(29, $value eq $popped) ;
139
140 # SHIFT
141 #$value = shift @h
142 $value = $X->shift ;
143 my $shifted = shift @data ;
144 ok(30, $value eq $shifted );
145
146 # UNSHIFT
147
148 # empty list
149 $X->unshift ;
150 ok(31, $X->length == @data );
151
152 my @new_data = qw(add this to the start of the array) ;
153 #unshift @h, @new_data ;
154 $X->unshift (@new_data) ;
155 unshift (@data, @new_data) ;
156 ok(32, $X->length == @data );
157 ok(33, $h[0] eq "add") ;
158 ok(34, $h[1] eq "this") ;
159 ok(35, $h[2] eq "to") ;
160 ok(36, $h[3] eq "the") ;
161 ok(37, $h[4] eq "start") ;
162 ok(38, $h[5] eq "of") ;
163 ok(39, $h[6] eq "the") ;
164 ok(40, $h[7] eq "array") ;
165 ok(41, $h[8] eq $data[8]) ;
166
167 # SPLICE
168
169 # Now both arrays should be identical
170
171 my $ok = 1 ;
172 my $j = 0 ;
173 foreach (@data)
174 {
175    $ok = 0, last if $_ ne $h[$j ++] ; 
176 }
177 ok(42, $ok );
178
179 # Neagtive subscripts
180
181 # get the last element of the array
182 ok(43, $h[-1] eq $data[-1] );
183 ok(44, $h[-1] eq $h[$X->length -1] );
184
185 # get the first element using a negative subscript
186 eval '$h[ - ( $X->length)] = "abcd"' ;
187 ok(45, $@ eq "" );
188 ok(46, $h[0] eq "abcd" );
189
190 # now try to read before the start of the array
191 eval '$h[ - (1 + $X->length)] = 1234' ;
192 ok(47, $@ =~ '^Modification of non-creatable array value attempted' );
193
194 # IMPORTANT - $X must be undefined before the untie otherwise the
195 #             underlying DB close routine will not get called.
196 undef $X ;
197 untie(@h);
198
199 unlink $Dfile;
200
201 {
202     # Check bval defaults to \n
203
204     my @h = () ;
205     my $dbh = new DB_File::RECNOINFO ;
206     ok(48, tie @h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $dbh ) ;
207     $h[0] = "abc" ;
208     $h[1] = "def" ;
209     $h[3] = "ghi" ;
210     untie @h ;
211     my $x = `cat $Dfile` ;
212     unlink $Dfile;
213     ok(49, $x eq "abc\ndef\n\nghi\n") ;
214 }
215
216 {
217     # Change bval
218
219     my @h = () ;
220     my $dbh = new DB_File::RECNOINFO ;
221     $dbh->{bval} = "-" ;
222     ok(50, tie @h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $dbh ) ;
223     $h[0] = "abc" ;
224     $h[1] = "def" ;
225     $h[3] = "ghi" ;
226     untie @h ;
227     my $x = `cat $Dfile` ;
228     unlink $Dfile;
229     my $ok = ($x eq "abc-def--ghi-") ;
230     bad_one() unless $ok ;
231     ok(51, $ok) ;
232 }
233
234 {
235     # Check R_FIXEDLEN with default bval (space)
236
237     my @h = () ;
238     my $dbh = new DB_File::RECNOINFO ;
239     $dbh->{flags} = R_FIXEDLEN ;
240     $dbh->{reclen} = 5 ;
241     ok(52, tie @h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $dbh ) ;
242     $h[0] = "abc" ;
243     $h[1] = "def" ;
244     $h[3] = "ghi" ;
245     untie @h ;
246     my $x = `cat $Dfile` ;
247     unlink $Dfile;
248     my $ok = ($x eq "abc  def       ghi  ") ;
249     bad_one() unless $ok ;
250     ok(53, $ok) ;
251 }
252
253 {
254     # Check R_FIXEDLEN with user-defined bval
255
256     my @h = () ;
257     my $dbh = new DB_File::RECNOINFO ;
258     $dbh->{flags} = R_FIXEDLEN ;
259     $dbh->{bval} = "-" ;
260     $dbh->{reclen} = 5 ;
261     ok(54, tie @h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $dbh ) ;
262     $h[0] = "abc" ;
263     $h[1] = "def" ;
264     $h[3] = "ghi" ;
265     untie @h ;
266     my $x = `cat $Dfile` ;
267     unlink $Dfile;
268     my $ok = ($x eq "abc--def-------ghi--") ;
269     bad_one() unless $ok ;
270     ok(55, $ok) ;
271 }
272
273 {
274     # check that attempting to tie an associative array to a DB_RECNO will fail
275
276     my $filename = "xyz" ;
277     my %x ;
278     eval { tie %x, 'DB_File', $filename, O_RDWR|O_CREAT, 0640, $DB_RECNO ; } ;
279     ok(56, $@ =~ /^DB_File can only tie an array to a DB_RECNO database/) ;
280     unlink $filename ;
281 }
282
283 exit ;