r1505@llin: dpavlin | 2007-11-04 12:12:20 +0100
[webpac2] / t / 3-normalize.t
1 #!/usr/bin/perl -w
2
3 use strict;
4 use blib;
5
6 use Test::More tests => 352;
7
8 BEGIN {
9         use_ok( 'WebPAC::Test' );
10         use_ok( 'WebPAC::Normalize' );
11 }
12
13 cmp_ok(_debug(1), '==', 1, '_debug level');
14 cmp_ok(_debug(0), '==', 0, '_debug level');
15
16 diag "debug level for $0 is $debug" if ($debug);
17 if ($debug > 2) {
18         diag "debug level for WebPAC::Normalize is ", _debug( $debug - 2 );
19 }
20
21 my $rec1 = {
22         '200' => [{
23                 'a' => '200a',
24                 'b' => '200b',
25                 },{
26                 'c' => '200c',
27                 'd' => '200d',
28                 },{
29                 'a' => '200a*2',
30                 'd' => '200d*2',
31                 }],
32         '201' => [{
33                 'x' => '201x',
34                 'y' => '201y',
35                 }],
36         '900' => [
37                 '900-no_subfield'
38                 ],
39         '901' => [{
40                 'a' => '900a',
41                 }],
42         '902' => [{
43                 'z' => '900',
44                 }],
45 };
46
47 my $rec2 = {
48  '675' => [ {
49               'a' => '159.9'
50             } ],
51  '210' => [ {
52               'c' => 'New York University press',
53               'a' => 'New York',
54               'd' => 'cop. 1988'
55             } ],
56  '700' => [ {
57               'a' => 'Haynal',
58               'b' => 'AndrĂ©'
59             } ],
60  '801' => [ 'FFZG' ],
61  '991' => [ '8302' ],
62  '000' => [ 1 ],
63  '702' => [ {
64               'a' => 'Holder',
65               'b' => 'Elizabeth'
66             } ],
67  '215' => [ {
68               'c' => 'ilustr',
69               'a' => 'xix, 202 str',
70               'd' => '23cm'
71             } ],
72  '990' => [
73             '2140',
74             '88',
75             'HAY'
76           ],
77  '200' => [ {
78               'e' => 'from Freud and Ferenczi to Michael balint',
79               'a' => 'Controversies in psychoanalytic method',
80               'g' => 'translated by Elizabeth Holder on the basisi of a first draft by Archie Hooton ; with a preface by Daniel N. Stern',
81               'f' => 'by AndrĂ© E. Haynal'
82             } ],
83  '610' => [ 'povijest psihoanalize' ],
84  '994' => [ {
85               'c' => '',
86               'a' => 'PS',
87               'b' => 'MG'
88             } ],
89  '320' => [ 'Kazalo' ],
90  '101' => [ 'ENG' ],
91  '686' => [ '2140' ],
92  '300' => [ 'Prijevod djela: ' ],
93 };
94
95
96 my $lookup_hash1 = {
97         'db1' => {
98                 'input1' => {
99                         'key1' => { 1 => 1 },
100                         'key2' => { 2 => 1 },
101                 },
102                 'input2' => {
103                         'key3' => { 3 => 1 },
104                         'key4' => { 4 => 1 },
105                 },
106         },
107         'db2' => {
108                 'input3' => {
109                         'key5' => { 5 => 1 },
110                         'key6' => { 6 => 1 },
111                 },
112         }
113 };
114
115 my $lookup_hash2 = {
116         'db3' => {
117                 'input4' => {
118                         'key7' => { 7 => 1 },
119                         'key8' => { 8 => 1 },
120                 },
121         }
122 };
123
124 sub test {
125         print dump( @_ ), ("-" x 78), "\n";
126         ok( defined(@_) );
127 }
128
129 # how much of string evaled to display?
130 my $max_eval_output = 170;
131
132 sub dump_error {
133         my ($msg,$code) = @_;
134
135         my @l = split(/[\n\r]/, $code);
136         my $out = "$msg\n";
137
138         foreach my $i ( 0 .. $#l ) {
139                 $out .= sprintf("%2d: %s\n", $i, $l[$i]);
140         }
141
142         return $out;
143 }
144
145 sub test_s {
146         my $t = shift || die;
147
148         my $eval_t = $t;
149         $eval_t =~ s/[\n\r\s]+/ /gs;
150         $eval_t = substr($eval_t,0,$max_eval_output) . '...' if (length($eval_t) > $max_eval_output);
151         $eval_t =~ s/\\/\\\\/gs;
152
153         my @__ret;
154         eval "\@__ret = $t";
155         ok(! $@, $@ ? dump_error($@, $t) : "eval: $eval_t = " . dump(@__ret));
156         return \@__ret;
157 }
158
159 {
160         no strict 'subs';
161         use WebPAC::Normalize;
162
163         ok(! _set_lookup( undef ), "set_lookup(undef)");
164
165         _set_ds( $rec1 );
166
167         is_deeply( get_ds, $rec1, 'get_ds' );
168
169         cmp_ok( join(",", rec2('200','a') ), 'eq', '200a,200a*2', 'join rec2' );
170         cmp_ok( join(",", rec2('200','a'), rec2('200','b') ), 'eq', '200a,200a*2,200b', 'join rec2 rec2' );
171         cmp_ok( join(" * ", sort(rec1('200'), rec1('201') )), 'eq', '200a * 200a*2 * 200b * 200c * 200d * 200d*2 * 201x * 201y', 'join sort rec1 rec1' );
172         diag "is_deeply checks\n";
173         is_deeply( \[ rec1('200') ], \[ qw/200a 200b 200c 200d 200a*2 200d*2/ ] );
174         is_deeply( \[ regex( 's/0/o/g', rec1('200') ) ],  \[ qw/2ooa 2oob 2ooc 2ood 2ooa*2 2ood*2/ ]);
175         is_deeply( \[ grep { /\*/ } regex( 's/0/o/g', rec1('200') ) ], \[ qw/2ooa*2 2ood*2/ ]);
176         is_deeply( \[ rec('902') ], \[ '900' ] );
177
178         cmp_ok( rec('902'), 'eq', rec('902','z'), 'rec sf' );
179
180         # simple list manipulatons
181         cmp_ok( join('', prefix('ab', 'cd') ), 'eq', 'abcd', 'prefix');
182         cmp_ok( join('-', prefix('', 'x', 'y') ), 'eq', 'x-y', 'prefix empty');
183         cmp_ok( join('-', prefix(0, 'x', 'y') ), 'eq', '0x-0y', 'prefix 0');
184
185         cmp_ok( join('', suffix('xy', 'cd') ), 'eq', 'cdxy', 'suffix');
186         cmp_ok( join('-', suffix('', 'x', 'y' ) ), 'eq', 'x-y', 'suffix empty');
187         cmp_ok( join('-', suffix(0, 'x', 'y' ) ), 'eq', 'x0-y0', 'suffix 0');
188
189         cmp_ok( join('', surround('->', '<-', 'a','b','c') ), 'eq', '->a<-->b<-->c<-', 'surround');
190         cmp_ok( join('-', surround('', '', 'x','y','z') ), 'eq', 'x-y-z', 'surround empty');
191         cmp_ok( join('-', surround(0, 0, 'x','y','z') ), 'eq', '0x0-0y0-0z0', 'surround 0 0');
192
193         # count
194         my @el;
195         for my $i ( 0 .. 10 ) {
196                 cmp_ok( count( @el ), '==', $i, "count($i)");
197                 push @el, "element $i";
198         }
199
200         # lookups
201
202         throws_ok { _set_load_row() } qr/CODE/, 'empty _set_load_row()';
203
204         ok(_set_load_row(sub {
205                 my ($database,$input,$mfn) = @_;
206                 diag "load_row( $database, $input, $mfn )" if ($debug);
207                 cmp_ok( $#_, '==', 2, 'have 3 arguments');
208                 ok($database, '_load_row database');
209                 ok($input, '_load_row input');
210                 ok($mfn, '_load_row mfn');
211                 return {
212                         '900' => [{ x => '900x-' . $mfn , y => '900y-' . $mfn }],
213                 }
214
215         }), '_set_load_row');
216
217         my @v = qw/foo bar baz aaa bbb ccc ddd/;
218
219         my @accumulated;
220
221         for my $i ( 0 .. $#v ) {
222
223                 my $mfn = 1000 + $i;
224
225                 ok(WebPAC::Normalize::_set_config({ '_mfn' => $mfn }), "_set_config _mfn=$mfn");
226
227                 my $size = $#v + 1;
228
229                 cmp_ok(
230                         save_into_lookup('db','input','key', sub { @v }),
231                         '==', $size, "save_into_lookup $size values"
232                 );
233
234                 ok(my $l = WebPAC::Normalize::_get_lookup(), '_get_lookup');
235                 diag "_get_lookup = ", dump($l) if ($debug);
236
237                 my @lookup;
238
239                 ok(@lookup = lookup(
240                                 sub {
241                                         diag "in show" if ($debug);
242                                         rec('900','x');
243                                 },
244                                 'db','input','key',
245                                 sub {
246                                         return @v;
247                                 }
248                         ),
249                 "lookup db/input/key");
250
251                 push @accumulated, '900x-' . $mfn;
252
253                 is_deeply(\@lookup, \@accumulated, "lookup db/input/key");
254
255                 shift @v;
256
257         }
258
259         ok(my $l = WebPAC::Normalize::_get_lookup(), '_get_lookup');
260         diag "_get_lookup = ", dump($l) if ($debug);
261
262         is_deeply( $l, {
263                 db => {
264                         input => {
265                                 key => {
266                                         foo => { 1000 => 1 },
267                                         bar => { 1000 => 1, 1001 => 1 },
268                                         baz => { 1000 => 1, 1001 => 1, 1002 => 1 },
269                                         aaa => { 1000 => 1, 1001 => 1, 1002 => 1, 1003 => 1 },
270                                         bbb => { 1000 => 1, 1001 => 1, 1002 => 1, 1003 => 1, 1004 => 1 },
271                                         ccc => { 1000 => 1, 1001 => 1, 1002 => 1, 1003 => 1, 1004 => 1, 1005 => 1 },
272                                         ddd => { 1000 => 1, 1001 => 1, 1002 => 1, 1003 => 1, 1004 => 1, 1005 => 1, 1006 => 1 },
273                                 },
274                         },
275                 },
276         }, 'lookup data');
277
278 #######
279
280         diag "lookup_hash1 = ", dump($lookup_hash1) if ($debug);
281         ok(_set_lookup( $lookup_hash1 ), '_set_lookup $lookup_hash1');
282
283         throws_ok { _set_load_row() } qr/CODE/, 'empty _set_load_row()';
284
285         ok(_set_load_row(sub {
286                 my ($database,$input,$mfn) = @_;
287                 diag "load_row( $database, $input, $mfn )";
288                 cmp_ok( $#_, '==', 2, 'have 3 arguments');
289                 ok($database, 'database');
290                 ok($input, 'input');
291                 ok($mfn, 'mfn');
292
293         }), '_set_load_row');
294
295
296 #       cmp_ok(lookup(
297 #               sub {
298 #                       'found'
299 #               },
300 #               'db1','input1','key1',
301 #               sub {
302 #                       rec('200','a')
303 #               }
304 #       ), 'eq', 'found', 'lookup db1/input1/key1');
305
306
307         
308 #       cmp_ok(
309 #               lookup( 
310 #               ),
311 #       'eq', 'lookup 1 i lookup 2', 'join lookup regex rec2');
312
313         # check join_with operations
314
315         sub test_join_with_2 {
316                 my ($a,$b,$e) = @_;
317
318                 cmp_ok(
319                         join_with(" <1> ",
320                                 rec('201',$a),
321                                 rec('201',$b),
322                         ), 
323                 'eq', $e, "join_with $a <1> $b = $e");
324         }
325
326         test_join_with_2('_','_','');
327         test_join_with_2('x','_','201x');
328         test_join_with_2('_','x','201x');
329         test_join_with_2('x','y','201x <1> 201y');
330
331         sub test_join_with_3 {
332                 my ($a,$b,$c,$e) = @_;
333
334                 cmp_ok(
335                         join_with(" <1> ", rec('201',$a),
336                                 join_with(" <2> ", rec('201',$b),
337                                         rec('201',$c),
338                                 )
339                         ), 
340                 'eq', $e, "join_with $a <1> $b <2> $c = $e");
341         };
342
343         test_join_with_3('_','_','_','');
344         test_join_with_3('x','_','_','201x');
345         test_join_with_3('_','x','_','201x');
346         test_join_with_3('_','_','x','201x');
347         test_join_with_3('x','y','_','201x <1> 201y');
348         test_join_with_3('x','_','y','201x <1> 201y');
349         test_join_with_3('_','x','y','201x <2> 201y');
350         test_join_with_3('x','_','y','201x <1> 201y');
351         test_join_with_3('x','y','x','201x <1> 201y <2> 201x');
352
353         # test lookups
354
355         _set_lookup( $lookup_hash2 );
356
357         throws_ok { lookup() } qr/need/, 'empty lookup';
358
359         #is_deeply( \[ lookup( prefix( '00', rec('902') ) ) ], \[ 'lookup' ], 'lookup prefix' );
360
361         #ok(! lookup('non-existent'), 'lookup non-existant' );
362
363         _set_ds( $rec2 );
364
365         test_s(qq{
366                 search_display('Title',
367                         rec('200','a')
368                 );
369         });
370         test_s(qq{
371                 search_display('Who',
372                         join_with(" ",
373                                 rec('702','a'),
374                                 rec('702','b')
375                         )
376                 );
377         });
378
379         test_s(qq{
380                 display('Publisher',
381                         rec('210','c')
382                 )
383         });
384         
385         test_s(qq{
386                 search('Year',
387                         regex( 's/[^\\d]+//',
388                                 rec('210','d')
389                         )
390                 )
391         });
392
393         ok(my $ds = _get_ds(), "get_ds");
394         diag "ds = ", dump($ds) if ($debug);
395
396
397         sub test_check_ds {
398
399                 my $t = shift;
400
401                 ok($ds = _get_ds(), 'get_ds');
402                 diag dump( $ds ) if ($debug);
403
404                 ok( $ds && $ds->{something}, 'get_ds->something exists' );
405                 ok( $ds && $ds->{something}->{$t}, 'get_ds->something->'.$t.' exists') if ($t);
406                 ok( $ds && !$ds->{empty}, 'get_ds->empty doesn\'t' );
407
408                 return $ds;
409         }
410
411         _clean_ds();
412         test_s(qq{ search('something', '42'); });
413         test_s(qq{ search('empty', ''); });
414         test_check_ds('search');
415
416         _clean_ds();
417         test_s(qq{ display('something', '42'); });
418         test_s(qq{ display('empty', ''); });
419         test_check_ds('display');
420
421         _clean_ds();
422         test_s(qq{ search_display('something', '42'); });
423         test_s(qq{ search_display('empty', ''); });
424         test_check_ds('search');
425         test_check_ds('display');
426
427         _clean_ds();
428         test_s(qq{ sorted('something', '42'); });
429         test_s(qq{ sorted('empty', ''); });
430         test_check_ds('sorted');
431
432         _clean_ds();
433         my $n = read_file( "$abs_path/data/normalize.pl" );
434         $n .= "\n1;\n";
435         #diag "normalize code:\n$n\n";
436         test_s( $n );
437
438         ok($ds = _get_ds(), "get_ds");
439         diag "ds = ", dump($ds) if ($debug);
440
441         my $rec = {
442                 '200' => [{
443                         'a' => '200a',
444                         'b' => '200b',
445                 }],
446         };
447         my $rules = qq{ search('mixed', rec('200') ) };
448         
449         _clean_ds();
450         _set_ds( $rec );
451         test_s( $rules );
452         ok($ds = _get_ds(), "get_ds");
453         is_deeply( $ds, {
454                 'mixed' => {
455                         'search' => [ '200a', '200b' ],
456                 }
457         }, 'correct get_ds');
458
459         ok(my $ds2 = WebPAC::Normalize::data_structure(
460                 row => $rec,
461                 rules => $rules,
462         ), 'data_structure');
463         is_deeply( $ds, $ds2, 'data_structure(s) same');
464
465         # wird and non-valid structure which is supported anyway
466         _clean_ds();
467         _set_ds({
468                 '200' => [{
469                         'a' => '200a',
470                 },
471                         '200-solo'
472                 ]
473         });
474         test_s(qq{ search('mixed', rec('200') ) });
475         ok($ds = _get_ds(), "get_ds");
476         is_deeply( $ds, {
477                 'mixed' => {
478                         'search' => [ '200a', '200-solo' ],
479                 }
480         }, 'correct get_ds');
481
482         #
483         # MARC
484         #
485         #_debug( 4 );
486
487         test_s(qq{ marc_indicators('900',1,2) });
488         test_s(qq{ marc('900','a', rec('200') ) });
489         my $marc;
490         ok($marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");
491         diag dump( $marc ) if ($debug);
492
493         is_deeply( $marc, [
494                 [ '900', 1, 2, 'a', '200a' ],
495                 [ '900', 1, 2, 'a', '200-solo' ]
496         ], 'correct marc with indicators');
497
498         test_s(qq{ marc_indicators('900',' ',9) });
499         test_s(qq{ marc_repeatable_subfield('900','a', rec('200') ) });
500
501         ok($marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");
502         diag dump( $marc ) if ($debug);
503
504         is_deeply( $marc, [
505                 [ '900', 1, 2, 'a', '200a', 'a', '200-solo' ],
506                 [ '900', ' ', 9, 'a', '200a', 'a', '200-solo' ]
507         ], 'correct marc with repetable subfield');
508
509         #
510         # test magic re-ordering of input data
511         #
512
513         sub test_rec_rules {
514                 my ($msg, $rec, $rules, $struct) = @_;
515
516                 _clean_ds();
517                 _set_ds($rec);
518
519                 foreach my $r (split(/;/, $rules)) {
520                         $r =~ s/[\s\n\r]+/ /gs;
521                         $r =~ s/^\s+//gs;
522                         $r =~ s/\s+$//gs;
523                         test_s($r) if ($r);
524                 }
525
526                 ok(my $marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");
527                 diag dump( $marc ) if ($debug);
528                 diag "expects:\n", dump($struct) if ($debug > 1);
529                 is_deeply( $marc, $struct, $msg );
530         }
531
532         test_rec_rules(
533                 'correct marc with repetable subfield',
534                 {
535                         '200' => [{
536                                 'a' => '200a-1',
537                                 'b' => '200b-1',
538                                 'c' => '200c-1',
539                         }, {
540                                 'a' => '200a-2',
541                                 'b' => '200b-2',
542                         }, {
543                                 'a' => '200a-3',
544                         }],
545                 },
546                 qq{
547                         marc_indicators('900',1 ,0);
548                         marc('900','a', rec('200','a') );
549                         marc('900','b', rec('200','b') );
550                         marc('900','c', rec('200','c') );
551                 },
552                 [
553                         [ '900', 1, 0, 'a', '200a-1', 'b', '200b-1', 'c', '200c-1' ],
554                         [ '900', 1, 0, 'a', '200a-2', 'b', '200b-2' ],
555                         [ '900', 1, 0, 'a', '200a-3' ],
556                 ],
557         );
558
559
560         test_rec_rules(
561                 'marc_repeatable_subfield',
562                 {
563                         '200' => [{
564                                 'a' => '200a-1',
565                                 'b' => '200b-1',
566                                 'c' => '200c-1',
567                         }, {
568                                 'a' => '200a-2',
569                                 'b' => '200b-2',
570                                 'c' => '200c-2',
571                         }, {
572                                 'a' => '200a-3',
573                                 'c' => '200c-3',
574                         }],
575                 },
576                 qq{
577                         marc_indicators('900',1 ,0);
578                         marc_repeatable_subfield('900','a', rec('200','a') );
579                         marc('900','b', rec('200','b') );
580                         marc('900','c', rec('200','c') );
581                 },
582                 [
583                         [ '900', 1, 0, 'a', '200a-1', 'a', '200a-2', 'a', '200a-3', 'b', '200b-1', 'c', '200c-1' ],
584                         [ '900', 1, 0, 'b', '200b-2', 'c', '200c-2' ],
585                         [ '900', 1, 0, 'c', '200c-3' ],
586                 ],
587         );
588
589         test_rec_rules(
590                 'marc_compose',
591                 { '200' => [{ a => 'foo ; bar', b => 42, c => 'baz' }] },
592                 qq{
593                         marc_compose('900',
594                                 'c', rec(200,'b'),
595                                 'b', rec(200,'a'),
596                                 'a', rec(200,'c'),
597                         );
598                 },
599                 [
600                         [ '900', ' ', ' ', 'c', 42, 'b', 'foo ; bar', 'a', 'baz' ]
601                 ],
602         );
603
604         test_rec_rules(
605                 'marc_compose with + subfields',
606                 { '200' => [{ a => 'foo ; bar', b => 42, c => 'baz' }] },
607                 qq{
608                         marc_compose('900',
609                                 'a', rec(200,'a'),
610                                 '+', prefix(" * ", rec(200,'c')),
611                                 'b', rec(200,'b'),
612                                 '+', prefix(" : ", rec(200,'c')),
613                         );
614                 },
615                 [
616                         [ '900', ' ', ' ', 'a', 'foo ; bar * baz', 'b', '42 : baz' ]
617                 ],
618         );
619
620         #
621         # test rules
622         #
623         sub test_rule {
624                 my ($msg, $rec, $rule, $struct) = @_;
625                 _clean_ds();
626                 _set_ds( $rec );
627                 $rule =~ s/\\/\\/gs;
628                 my $r = test_s( $rule );
629                 diag "for ", dump($rec), " got:\n", dump($r), "\nexpect:\n" if ($debug > 1);
630                 diag dump($struct) if ($debug);
631                 is_deeply( $r, $struct, $msg );
632         }
633
634         # test split_rec_on
635         test_rule(
636                 'split_rec_on',
637                 { '200' => [{ a => 'foo ; bar', b => 42, c => 'baz' }] },
638                 qq{ split_rec_on('200','a', qr/\\s*;\\s*/, 1) },
639                 [ 'foo' ],
640         );
641         test_rule(
642                 'split_rec_on',
643                 { '200' => [{ a => 'foo ; bar', b => 42, c => 'baz' }] },
644                 qq{ split_rec_on('200','a', qr/\\s*;\\s*/, 2) },
645                 [ 'bar' ],
646         );
647         test_rule(
648                 'split_rec_on no part',
649                 { '200' => [{ a => 'foo ; bar', b => 42, c => 'baz' }] },
650                 qq{ split_rec_on('200','a', qr/\\s*;\\s*/) },
651                 [ 'foo', 'bar' ],
652         );
653         test_rule(
654                 'split_rec_on no record',
655                 {},
656                 qq{ split_rec_on('200','a', qr/\\s*;\\s*/) },
657                 [ '' ],
658         );
659
660         test_rec_rules(
661                 'marc_compose+split_rec_on',
662                 { '200' => [{ a => 'foo ! bar', b => 42, c => 'baz' }] },
663                 qq{
664                         marc_compose('900',
665                                 'a', split_rec_on(200,'a', qr/\\s*!\\s*/, 1),
666                                 'c', rec(200,'c'),
667                                 'a', split_rec_on(200,'a', qr/\\s*!\\s*/, 2),
668                                 'b', rec(200,'b'),
669                         );
670                 },
671                 [
672                         [ '900', ' ', ' ',
673                                 'a', 'foo',
674                                 'c', 'baz',
675                                 'a', 'bar',
676                                 'b', 42,
677                         ]
678                 ],
679         );
680
681         cmp_ok(marc_leader('06',42), '==', 42, 'marc_leader');
682         cmp_ok(marc_leader('11',5), '==', 5, 'marc_leader');
683         ok(marc_leader(), 'marc_leader get');
684         diag "leader: ", dump(marc_leader()) if ($debug);
685         is_deeply(marc_leader(), { '06' => 42, 11 => 5 }, "marc_leader full");
686
687         test_rule(
688                 'rec1(000)',
689                 { '000' => [ 42 ]},
690                 qq{ rec('000') },
691                 [ 42 ],
692         );
693
694         test_rec_rules(
695                 'marc(001,rec(000))',
696                 { '000' => [ 42 ]},
697                 qq{
698                         marc('001', rec('000') );
699                 },
700                 [
701                         [ '001', 42, ]
702                 ],
703         );
704
705         test_rec_rules(
706                 'marc_remove subfield',
707                 { '200' => [{ a => 42, b => 'bar', c => 'baz' }] },
708                 qq{
709                         marc('900', 'a', rec('200','a') );
710                         marc('900', 'b', rec('200','b') );
711                         marc_remove('900','b');
712                         marc('900', 'b', rec('200','c') );
713                         marc_remove('900','a');
714                 },
715                 [
716                         [ '900', ' ', ' ', 'b', 'baz' ],
717                 ],
718         );
719
720         test_rec_rules(
721                 'marc_remove field',
722                 { '200' => [{ a => 42, b => 'bar', c => 'baz' }] },
723                 qq{
724                         marc('900', 'a', rec('200','a') );
725                         marc('900', 'b', rec('200','b') );
726                         marc('901', 'b', rec('200','b') );
727                         marc('901', 'c', rec('200','c') );
728                         marc_remove('900');
729                 },
730                 [
731                         [ '901', ' ', ' ', 'b', 'bar', 'c', 'baz' ],
732                 ],
733         );
734
735         test_s(qq{ marc_remove('*'); });
736         ok(! WebPAC::Normalize::_get_marc_fields(), 'marc_remove(*)');
737
738         test_rec_rules(
739                 'marc_duplicate',
740                 { '200' => [{ a => 42, b => 'bar', c => 'baz', d => 'bing', e => 'bong' }] },
741                 qq{
742                         marc_leader('06',42);
743                         marc_leader('11',0);
744                         marc('900', 'a', rec('200','a') );
745                         marc('900', 'b', rec('200','b') );
746                         marc_duplicate;
747                         marc_leader('11',1);
748                         marc_remove('900','b');
749                         marc('900', 'b', rec('200','c') );
750                         marc_duplicate;
751                         marc_leader('11',2);
752                         marc_remove('900','b');
753                         marc('900', 'b', rec('200','d') );
754                         marc_duplicate;
755                         marc_leader('11',3);
756                         marc_remove('900','b');
757                         marc('900', 'b', rec('200','e') );
758                 },
759                 [
760                         # this will return FIRST record
761                         [ '900', ' ', ' ', 'a', 42, 'b', 'bar' ],
762                 ],
763         );
764
765         cmp_ok( marc_count(), '==', 3, 'marc_count' );
766
767         my $i = 0;
768         foreach my $v ( qw/bar baz bing bong/ ) {
769
770                 ok($marc = WebPAC::Normalize::_get_marc_fields( offset => $i ),
771                         "_get_marc_fields( offset => $i )"
772                 );
773                 diag "marc $i = ", dump( $marc ) if ($debug);
774                 is_deeply( $marc,
775                         [ [ '900', ' ', ' ', 'a', 42, 'b', $v ] ],
776                         "MARC copy $i has $v",
777                 );
778                 is_deeply(WebPAC::Normalize::_get_marc_leader(), { '06' => 42, 11 => $i }, "_get_marc_leader copy $i");
779                 $i++;
780         }
781
782         test_rec_rules(
783                 'marc_original_order',
784                 {
785                         '200' => [ {
786                                 a => [ 'a1', 'a2' ], b => [ 'b1', 'b2' ], c => [ 'c1', 'c2' ],
787                                 subfields => [ qw/a 0 b 0 a 1 b 1 c 0 c 1/ ],
788                         }, {
789                                 a => [ 'a3', 'a4', 'a5' ], b => 'b3', c => 'c3',
790                                 subfields => [ qw/a 0 a 1 b 0 c 0 a 2/ ],
791                         } ],
792                 },
793                 qq{
794                         marc_original_order(900,200);
795                 },
796                 [
797                         [ '900', ' ', ' ', 'a', 'a1', 'b', 'b1', 'a', 'a2', 'b', 'b2', 'c', 'c1', 'c', 'c2', ],
798                         [ '900', ' ', ' ', 'a', 'a3', 'a', 'a4', 'b', 'b3', 'c', 'c3', 'a', 'a5', ],
799                 ],
800         );
801
802         test_rule(
803                 'rec1 skips subfields',
804                 {
805                         '200' => [ {
806                                 a => [ 'a1', 'a2' ], b => [ 'b1', 'b2' ], c => [ 'c1', 'c2' ],
807                                 subfields => [ qw/a 0 b 0 a 1 b 1 c 0 c 1/ ],
808                         }, {
809                                 a => [ 'a3', 'a4', 'a5' ], b => 'b3', c => 'c3',
810                                 subfields => [ qw/a 0 a 1 b 0 c 0 a 2/ ],
811                         } ],
812                 },
813                 qq{
814                         rec1(200);
815                 },
816                 ['a1', 'b1', 'a2', 'b2', 'c1', 'c2', 'a3', 'a4', 'b3', 'c3', 'a5' ],
817         );
818
819         is_deeply(
820                 [ _pack_subfields_hash({
821                         a => [ 'a1', 'a2' ], b => [ 'b1', 'b2' ], c => [ 'c1', 'c2' ],
822                         subfields => [ qw/a 0 b 0 a 1 b 1 c 0 c 1/ ],
823                 }) ],
824                 ['a1', 'b1', 'a2', 'b2', 'c1', 'c2'],
825                 '_pack_subfields_hash( $h )'
826         );
827
828         cmp_ok(
829                 _pack_subfields_hash({
830                         a => [ 'a1', 'a2' ], b => [ 'b1', 'b2' ], c => [ 'c1', 'c2' ],
831                         subfields => [ qw/a 0 b 0 a 1 b 1 c 0 c 1/ ],
832                 }, 1),
833                 'eq',
834                 '^aa1^bb1^aa2^bb2^cc1^cc2',
835                 '_pack_subfields_hash( $h, 1 )'
836         );
837
838         _clean_ds();
839         test_s(qq{
840                 marc_fixed('008', 0, 'abcdef');
841                 marc_fixed('000', 5, '5');
842                 marc_fixed('000', 10, 'A');
843                 marc_fixed('000', 0, '0');
844         });
845         ok( my $m = WebPAC::Normalize::_get_marc_fields(), '_get_marc_fields');
846         diag dump( $m );
847         is_deeply( WebPAC::Normalize::_get_marc_fields(),
848                 [
849                         ["008", "abcdef"], 
850                         #        0....5....10
851                         ["000", "0    5    A"]
852                 ]
853         );
854
855         test_s(qq{ isbn_13( '1558607013', '978-1558607019' ) });
856         test_s(qq{ isbn_10( '1558607013', '978-1558607019' ) });
857
858         is_deeply(
859                 [ isbn_13( '1558607013', '978-1558607019' ) ],
860                 [ '978-1-55860-701-9', '978-1-55860-701-9', ],
861         'isbn_13' );
862
863         is_deeply(
864                 [ isbn_10( '1558607013', '978-1558607019' ) ],
865                 [ '1-55860-701-3', '1-55860-701-3' ],
866         'isbn_10' );
867
868 }
869