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