/[Biblio-Isis]/trunk/t/002_isis.t
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /trunk/t/002_isis.t

Parent Directory Parent Directory | Revision Log Revision Log


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

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26