/[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

Contents of /trunk/t/002_isis.t

Parent Directory Parent Directory | Revision Log Revision Log


Revision 47 - (show 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 #!/usr/bin/perl -w
2
3 use strict;
4 use blib;
5
6 use Test::More tests => 110;
7 use File::Spec;
8
9 my $emulate_dump = 0;
10
11 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 my $debug = shift @ARGV;
24 my $isis;
25
26 my $path_winisis = File::Spec->catfile('data', 'winisis', 'BIBL');
27 my $path_isismarc = File::Spec->catfile('data', 'isismarc', 'BIBL');
28
29 sub test_data {
30
31 my $args = {@_};
32
33 isa_ok ($isis, 'Biblio::Isis');
34
35 cmp_ok($isis->count, '==', 5, "count is 5");
36
37 # test .CNT data
38
39 SKIP: {
40 skip "no CNT file for this database", 5 unless $isis->{cnt_file};
41
42 ok(my $isis_cnt = $isis->read_cnt, "read_cnt");
43
44 cmp_ok(scalar keys %{$isis_cnt}, '==', 2, "returns 2 elements");
45
46 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 cmp_ok($isis_cnt->{$c}->{$kn}, '==', $cnt->{$c}->{$kn}, "cnt $c $kn same");
74 }
75 }
76 }
77
78 # 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 foreach my $mfn (1 .. $isis->count) {
111
112 my $rec;
113 ok($rec = $isis->fetch($mfn), "fetch $mfn");
114
115
116 diag "<<<<< rec: ",Dumper( $rec ), "\n>>>>> row:", Dumper( $data->[$mfn-1] );
117
118 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 cmp_ok($v, 'eq', $rec->{$f}->[$i], "MFN $mfn $f:$i $v");
123 $i++;
124 }
125 }
126 }
127
128 # 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 foreach my $mfn (1 .. $isis->count) {
136 my $md5 = md5_hex($isis->to_ascii($mfn));
137 cmp_ok($md5, 'eq', $args->{md5_ascii}[$mfn - 1], "md5 $mfn");
138 }
139 }
140
141 }
142
143 $isis = Biblio::Isis->new (
144 isisdb => $path_winisis,
145 include_deleted => 1,
146 debug => $debug,
147 );
148
149 diag "isis-new result: ", Dumper($isis);
150
151 test_data(
152 no_ident => 1,
153 md5_ascii => [ qw(
154 a369eff702307ba12eb81656ee0587fe
155 4fb38537a94f3f5954e40d9536b942b0
156 579a7c6901c654bdeac10547a98e5b71
157 7d2adf1675c83283aa9b82bf343e3d85
158 daf2cf86ca7e188e8360a185f3b43423
159 ) ],
160 );
161
162 $isis = Biblio::Isis->new (
163 isisdb => $path_isismarc,
164 include_deleted => 1,
165 );
166
167 test_data(
168 md5_ascii => [ qw(
169 f5587d9bcaa54257a98fe27d3c17a0b6
170 3be9a049f686f2a36af93a856dcae0f2
171 3961be5e3ba8fb274c89c08d18df4bcc
172 5f73ec00d08af044a2c4105f7d889e24
173 843b9ebccf16a498fba623c78f21b6c0
174 ) ],
175 );
176
177 # check logically deleted
178
179 $isis = Biblio::Isis->new (
180 isisdb => $path_winisis,
181 include_deleted => 1,
182 );
183
184 ok($isis->fetch(3), "deleted found");
185 cmp_ok($isis->{deleted}, '==', 3, "MFN 3 is deleted");
186
187 $isis = Biblio::Isis->new (
188 isisdb => $path_winisis,
189 debug => $debug,
190 );
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