use File::Spec in attempt to support MacPerl
[Biblio-Isis] / t / 002_isis.t
1 #!/usr/bin/perl -w
2
3 use strict;
4 use blib;
5
6 use Data::Dumper;
7
8 use Test::More tests => 110;
9 use File::Spec;
10
11 BEGIN { use_ok( 'Biblio::Isis' ); }
12
13 my $debug = shift @ARGV;
14 my $isis;
15
16 my $path_winisis = File::Spec->catfile('data', 'winisis', 'BIBL');
17 my $path_isismarc = File::Spec->catfile('data', 'isismarc', 'BIBL');
18
19 sub test_data {
20
21         my $args = {@_};
22
23         isa_ok ($isis, 'Biblio::Isis');
24
25         cmp_ok($isis->count, '==', 5, "count is 5");
26
27         # test .CNT data
28
29         SKIP: {
30                 skip "no CNT file for this database", 5 unless $isis->{cnt_file};
31
32                 ok(my $isis_cnt = $isis->read_cnt, "read_cnt");
33
34                 cmp_ok(scalar keys %{$isis_cnt}, '==', 2, "returns 2 elements");
35
36                 my $cnt = {
37                         '1' => {
38                                 'N' => 15,
39                                 'K' => 5,
40                                 'FMAXPOS' => 8,
41                                 'POSRX' => 1,
42                                 'ABNORMAL' => 1,
43                                 'ORDN' => 5,
44                                 'LIV' => 0,
45                                 'ORDF' => 5,
46                                 'NMAXPOS' => 1
47                                 },
48                         '2' => {
49                                 'N' => 15,
50                                 'K' => 5,
51                                 'FMAXPOS' => 4,
52                                 'POSRX' => 1,
53                                 'ABNORMAL' => 0,
54                                 'ORDN' => 5,
55                                 'LIV' => 0,
56                                 'ORDF' => 5,
57                                 'NMAXPOS' => 1
58                                 }
59                 };
60
61                 foreach my $c (keys %{$cnt}) {
62                         foreach my $kn (keys %{$cnt->{$c}}) {
63                                 cmp_ok($isis_cnt->{$c}->{$kn}, '==', $cnt->{$c}->{$kn}, "cnt $c $kn same");
64                         }
65                 }
66         }
67
68         # test fetch
69
70         my $data = [ {
71                 '801' => [ '^aFFZG' ],
72                 '702' => [ '^aHolder^bElizabeth' ],
73                 '990' => [ '2140', '88', 'HAY' ],
74                 '675' => [ '^a159.9' ],
75                 '210' => [ '^aNew York^cNew York University press^dcop. 1988' ],
76         }, {
77                 '210' => [ '^aNew York^cUniversity press^d1989' ],
78                 '700' => [ '^aFrosh^bStephen' ],
79                 '990' => [ '2140', '89', 'FRO' ],
80                 '200' => [ '^aPsychoanalysis and psychology^eminding the gap^fStephen Frosh' ],
81                 '215' => [ '^aIX, 275 str.^d23 cm' ],
82         }, {
83                 '210' => [ '^aLondon^cFree Associoation Books^d1992' ],
84                 '700' => [ '^aTurkle^bShirlie' ],
85                 '990' => [ '2140', '92', 'LAC' ],
86                 '200' => [ '^aPsychoanalitic politics^eJacques Lacan and Freud\'s French Revolution^fSherry Turkle' ],
87                 '686' => [ '^a2140', '^a2140' ],
88         
89         }, {
90                 '700' => [ '^aGross^bRichard' ],
91                 '200' => [ '^aKey studies in psychology^fRichard D. Gross' ],
92                 '210' => [ '^aLondon^cHodder & Stoughton^d1994' ],
93                 '10' => [ '^a0-340-59691-0' ],
94         }, {
95                 # identifier test
96                 '225' => [ '1#^aMcGraw-Hill series in Psychology' ],
97                 '200' => [ '1#^aPsychology^fCamille B. Wortman, Elizabeth F. Loftus, Mary E. Marshal' ],
98         } ];
99                 
100         foreach my $mfn (1 .. $isis->count) {
101                 my $rec;
102                 ok($rec = $isis->fetch($mfn), "fetch $mfn");
103
104                 foreach my $f (keys %{$data->[$mfn-1]}) {
105                         my $i = 0;
106                         foreach my $v (@{$data->[$mfn-1]->{$f}}) {
107                                 $v =~ s/^[01# ][01# ]// if ($args->{no_ident});
108                                 cmp_ok($v, '==', $rec->{$f}->[$i], "MFN $mfn $f:$i $v");
109                                 $i++;
110                         }
111                 }
112         }
113
114         # test to_ascii
115
116         SKIP: {
117                 eval "use Digest::MD5 qw(md5_hex)";
118
119                 skip "no Digest::MD5 module", 5 if ($@);
120
121                 foreach my $mfn (1 .. $isis->count) {
122                         my $md5 = md5_hex($isis->to_ascii($mfn));
123                         cmp_ok($md5, 'eq', $args->{md5_ascii}[$mfn - 1], "md5 $mfn");
124                 }
125         }
126
127 }
128
129 $isis = Biblio::Isis->new (
130         isisdb => $path_winisis,
131         include_deleted => 1,
132         debug => $debug,
133 );
134
135 print Dumper($isis);
136
137 test_data(
138         no_ident => 1,
139         md5_ascii => [ qw(
140                 a369eff702307ba12eb81656ee0587fe
141                 4fb38537a94f3f5954e40d9536b942b0
142                 579a7c6901c654bdeac10547a98e5b71
143                 7d2adf1675c83283aa9b82bf343e3d85
144                 daf2cf86ca7e188e8360a185f3b43423
145         ) ],
146 );
147
148 $isis = Biblio::Isis->new (
149         isisdb => $path_isismarc,
150         include_deleted => 1,
151 );
152
153 test_data(
154         md5_ascii => [ qw(
155                 f5587d9bcaa54257a98fe27d3c17a0b6
156                 3be9a049f686f2a36af93a856dcae0f2
157                 3961be5e3ba8fb274c89c08d18df4bcc
158                 5f73ec00d08af044a2c4105f7d889e24
159                 843b9ebccf16a498fba623c78f21b6c0
160         ) ],
161 );
162
163 # check logically deleted
164
165 $isis = Biblio::Isis->new (
166         isisdb => $path_winisis,
167         include_deleted => 1,
168 );
169
170 ok($isis->fetch(3), "deleted found");
171 cmp_ok($isis->{deleted}, '==', 3, "MFN 3 is deleted");
172
173 $isis = Biblio::Isis->new (
174         isisdb => $path_winisis,
175         debug => $debug,
176 );
177
178 ok(! $isis->fetch(3), "deleted not found");
179 cmp_ok($isis->{deleted}, '==', 3, "MFN 3 is deleted");
180