/[webpac2]/trunk/t/3-normalize.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

Diff of /trunk/t/3-normalize.t

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 550 by dpavlin, Fri Jun 30 18:48:33 2006 UTC revision 983 by dpavlin, Sun Nov 4 11:12:38 2007 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl -w  #!/usr/bin/perl -w
2    
3  use strict;  use strict;
   
 use Test::More tests => 81;  
 use Test::Exception;  
 use Cwd qw/abs_path/;  
4  use blib;  use blib;
 use File::Slurp;  
5    
6  use Data::Dump qw/dump/;  use Test::More tests => 352;
 my $debug = shift @ARGV;  
7    
8  BEGIN {  BEGIN {
9            use_ok( 'WebPAC::Test' );
10          use_ok( 'WebPAC::Normalize' );          use_ok( 'WebPAC::Normalize' );
11  }  }
12    
13  ok(my $abs_path = abs_path($0), "abs_path");  cmp_ok(_debug(1), '==', 1, '_debug level');
14  $abs_path =~ s#/[^/]*$#/#;  cmp_ok(_debug(0), '==', 0, '_debug level');
 diag "abs_path: $abs_path" if ($debug);  
15    
16  #throws_ok { new WebPAC::Normalize::XML( lookup_regex => 'foo' ) } qr/pair/, "lookup_regex without lookup";  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 = {  my $rec1 = {
22          '200' => [{          '200' => [{
# Line 96  my $rec2 = { Line 93  my $rec2 = {
93  };  };
94    
95    
96  my $lookup1 = {  my $lookup_hash1 = {
97          '00900' => [          'db1' => {
98                  'lookup 1',                  'input1' => {
99                  'lookup 2',                          '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 $lookup2 = {  my $lookup_hash2 = {
116          '00900' => 'lookup',          'db3' => {
117                    'input4' => {
118                            'key7' => { 7 => 1 },
119                            'key8' => { 8 => 1 },
120                    },
121            }
122  };  };
123    
   
124  sub test {  sub test {
125          print dump( @_ ), ("-" x 78), "\n";          print dump( @_ ), ("-" x 78), "\n";
126          ok( defined(@_) );          ok( defined(@_) );
# Line 135  sub test_s { Line 148  sub test_s {
148          my $eval_t = $t;          my $eval_t = $t;
149          $eval_t =~ s/[\n\r\s]+/ /gs;          $eval_t =~ s/[\n\r\s]+/ /gs;
150          $eval_t = substr($eval_t,0,$max_eval_output) . '...' if (length($eval_t) > $max_eval_output);          $eval_t = substr($eval_t,0,$max_eval_output) . '...' if (length($eval_t) > $max_eval_output);
151            $eval_t =~ s/\\/\\\\/gs;
152    
153          eval "$t";          my @__ret;
154          ok(! $@, $@ ? dump_error($@, $t) : "eval: $eval_t");          eval "\@__ret = $t";
155            ok(! $@, $@ ? dump_error($@, $t) : "eval: $eval_t = " . dump(@__ret));
156            return \@__ret;
157  }  }
158    
159  {  {
# Line 146  sub test_s { Line 162  sub test_s {
162    
163          ok(! _set_lookup( undef ), "set_lookup(undef)");          ok(! _set_lookup( undef ), "set_lookup(undef)");
164    
165          _set_rec( $rec1 );          _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' );          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' );          cmp_ok( join(",", rec2('200','a'), rec2('200','b') ), 'eq', '200a,200a*2,200b', 'join rec2 rec2' );
# Line 161  sub test_s { Line 179  sub test_s {
179    
180          # simple list manipulatons          # simple list manipulatons
181          cmp_ok( join('', prefix('ab', 'cd') ), 'eq', 'abcd', 'prefix');          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');          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');          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    
         _set_lookup( $lookup1 );  
307                    
308          cmp_ok(  #       cmp_ok(
309                  join_with(" i ",  #               lookup(
310                          lookup(  #               ),
311                                  regex( 's/^/00/',  #       'eq', 'lookup 1 i lookup 2', 'join lookup regex rec2');
                                         rec2('902','z')  
                                 )  
                         )  
                 ),  
         'eq', 'lookup 1 i lookup 2', 'join lookup regex rec2');  
312    
313          # check join_with operations          # check join_with operations
314    
# Line 219  sub test_s { Line 352  sub test_s {
352    
353          # test lookups          # test lookups
354    
355          _set_lookup( $lookup2 );          _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' );          #is_deeply( \[ lookup( prefix( '00', rec('902') ) ) ], \[ 'lookup' ], 'lookup prefix' );
360    
361          ok(! lookup('non-existent'), 'lookup non-existant' );          #ok(! lookup('non-existent'), 'lookup non-existant' );
362    
363          _set_rec( $rec2 );          _set_ds( $rec2 );
364    
365          test_s(qq{          test_s(qq{
366                  tag('Title',                  search_display('Title',
367                          rec('200','a')                          rec('200','a')
368                  );                  );
369          });          });
370          test_s(qq{          test_s(qq{
371                  tag('Who',                  search_display('Who',
372                          join_with(" ",                          join_with(" ",
373                                  rec('702','a'),                                  rec('702','a'),
374                                  rec('702','b')                                  rec('702','b')
# Line 284  sub test_s { Line 419  sub test_s {
419          test_check_ds('display');          test_check_ds('display');
420    
421          _clean_ds();          _clean_ds();
422          test_s(qq{ tag('something', '42'); });          test_s(qq{ search_display('something', '42'); });
423          test_s(qq{ tag('empty', ''); });          test_s(qq{ search_display('empty', ''); });
424          test_check_ds('search');          test_check_ds('search');
425          test_check_ds('display');          test_check_ds('display');
426    
427          _clean_ds();          _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" );          my $n = read_file( "$abs_path/data/normalize.pl" );
434          $n .= "\n1;\n";          $n .= "\n1;\n";
435          #diag "normalize code:\n$n\n";          #diag "normalize code:\n$n\n";
# Line 307  sub test_s { Line 447  sub test_s {
447          my $rules = qq{ search('mixed', rec('200') ) };          my $rules = qq{ search('mixed', rec('200') ) };
448                    
449          _clean_ds();          _clean_ds();
450          _set_rec( $rec );          _set_ds( $rec );
451          test_s( $rules );          test_s( $rules );
452          ok($ds = _get_ds(), "get_ds");          ok($ds = _get_ds(), "get_ds");
453          is_deeply( $ds, {          is_deeply( $ds, {
454                  'mixed' => {                  'mixed' => {
455                          'search' => [ '200a', '200b' ],                          'search' => [ '200a', '200b' ],
                         'tag' => 'mixed'  
456                  }                  }
457          }, 'correct get_ds');          }, 'correct get_ds');
458    
# Line 325  sub test_s { Line 464  sub test_s {
464    
465          # wird and non-valid structure which is supported anyway          # wird and non-valid structure which is supported anyway
466          _clean_ds();          _clean_ds();
467          _set_rec({          _set_ds({
468                  '200' => [{                  '200' => [{
469                          'a' => '200a',                          'a' => '200a',
470                  },                  },
# Line 337  sub test_s { Line 476  sub test_s {
476          is_deeply( $ds, {          is_deeply( $ds, {
477                  'mixed' => {                  'mixed' => {
478                          'search' => [ '200a', '200-solo' ],                          'search' => [ '200a', '200-solo' ],
                         'tag' => 'mixed'  
479                  }                  }
480          }, 'correct get_ds');          }, 'correct get_ds');
481    
482            #
483          # MARC          # MARC
484            #
485            #_debug( 4 );
486    
487          test_s(qq{ marc_indicators('900',1,2) });          test_s(qq{ marc_indicators('900',1,2) });
488          test_s(qq{ marc('900','a', rec('200') ) });          test_s(qq{ marc('900','a', rec('200') ) });
489          my @marc;          my $marc;
490          ok(@marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");          ok($marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");
491          diag dump( \@marc ) if ($debug);          diag dump( $marc ) if ($debug);
492    
493          is_deeply( \@marc, [          is_deeply( $marc, [
494                  [ '900', 1, 2, 'a', '200a' ],                  [ '900', 1, 2, 'a', '200a' ],
495                  [ '900', 1, 2, 'a', '200-solo' ]                  [ '900', 1, 2, 'a', '200-solo' ]
496          ], 'correct marc with indicators');          ], 'correct marc with indicators');
# Line 356  sub test_s { Line 498  sub test_s {
498          test_s(qq{ marc_indicators('900',' ',9) });          test_s(qq{ marc_indicators('900',' ',9) });
499          test_s(qq{ marc_repeatable_subfield('900','a', rec('200') ) });          test_s(qq{ marc_repeatable_subfield('900','a', rec('200') ) });
500    
501          ok(@marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");          ok($marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");
502          diag dump( \@marc ) if ($debug);          diag dump( $marc ) if ($debug);
503    
504          is_deeply( \@marc, [          is_deeply( $marc, [
505                  [ '900', 1, 2, 'a', '200a', 'a', '200-solo' ],                  [ '900', 1, 2, 'a', '200a', 'a', '200-solo' ],
506                  [ '900', ' ', 9, 'a', '200a', 'a', '200-solo' ]                  [ '900', ' ', 9, 'a', '200a', 'a', '200-solo' ]
507          ], 'correct marc with repetable subfield');          ], '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();          _clean_ds();
839          _set_rec({          test_s(qq{
840                  '200' => [{                  marc_fixed('008', 0, 'abcdef');
841                          'a' => '200a-1',                  marc_fixed('000', 5, '5');
842                          'b' => '200b-1',                  marc_fixed('000', 10, 'A');
843                          'c' => '200c-1',                  marc_fixed('000', 0, '0');
                 }, {  
                         'a' => '200a-2',  
                         'b' => '200b-2',  
                         'c' => '200c-2',  
                 }, {  
                         'a' => '200a-3',  
                         'c' => '200c-3',  
                 }]  
844          });          });
845          test_s(qq{ marc_indicators('900',1 ,0) });          ok( my $m = WebPAC::Normalize::_get_marc_fields(), '_get_marc_fields');
846          test_s(qq{ marc_repeatable_subfield('900','a', rec('200','a') ) });          diag dump( $m );
847          test_s(qq{ marc('900','b', rec('200','b') ) });          is_deeply( WebPAC::Normalize::_get_marc_fields(),
848          test_s(qq{ marc('900','c', rec('200','c') ) });                  [
849                            ["008", "abcdef"],
850          ok(@marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");                          #        0....5....10
851          diag dump( \@marc ) if ($debug);                          ["000", "0    5    A"]
852                    ]
853          is_deeply( \@marc, [          );
854                  [ '900', 1, 0, 'a', '200a-1', 'a', '200a-2', 'a', '200a-3', 'b', '200b-1', 'c', '200c-1' ],  
855                  [ '900', 1, 0, 'b', '200b-2', 'c', '200c-2' ],          test_s(qq{ isbn_13( '1558607013', '978-1558607019' ) });
856                  [ '900', 1, 0, 'c', '200c-3' ],          test_s(qq{ isbn_10( '1558607013', '978-1558607019' ) });
857          ], 'correct marc with repetable subfield');  
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    

Legend:
Removed from v.550  
changed lines
  Added in v.983

  ViewVC Help
Powered by ViewVC 1.1.26