fetch tests
[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 => 94;
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         for (my $mfn = 1; $mfn <= $isis->{'maxmfn'}; $mfn++) {
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 #               print Dumper($rec);
106         }
107
108 }
109
110 $isis = IsisDB->new (
111         isisdb => './data/winisis/BIBL',
112 );
113
114 print Dumper($isis);
115
116 test_data( no_ident => 1 );
117
118 $isis = IsisDB->new (
119         isisdb => './data/isismarc/BIBL',
120 );
121
122 test_data();