/[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 536 by dpavlin, Mon Jun 26 16:39:51 2006 UTC revision 949 by dpavlin, Thu Nov 1 00:16:48 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 => 67;  
 use Test::Exception;  
 use Cwd qw/abs_path/;  
4  use blib;  use blib;
 use File::Slurp;  
5    
6  use Data::Dumper;  use Test::More tests => 347;
 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 Dumper( @_ ), ("-" x 78), "\n";          print dump( @_ ), ("-" x 78), "\n";
126          ok( defined(@_) );          ok( defined(@_) );
127  }  }
128    
# 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  {  {
160          no strict 'subs';          no strict 'subs';
161          use WebPAC::Normalize;          use WebPAC::Normalize;
162    
163          ok(! set_lookup( undef ), "set_lookup(undef)");          ok(! _set_lookup( undef ), "set_lookup(undef)");
164    
165          set_rec( $rec1 );          _set_rec( $rec1 );
166    
167          cmp_ok( join(",", rec2('200','a') ), 'eq', '200a,200a*2', 'join rec2' );          cmp_ok( join(",", rec2('200','a') ), 'eq', '200a,200a*2', 'join rec2' );
168          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 177  sub test_s {
177    
178          # simple list manipulatons          # simple list manipulatons
179          cmp_ok( join('', prefix('ab', 'cd') ), 'eq', 'abcd', 'prefix');          cmp_ok( join('', prefix('ab', 'cd') ), 'eq', 'abcd', 'prefix');
180            cmp_ok( join('-', prefix('', 'x', 'y') ), 'eq', 'x-y', 'prefix empty');
181            cmp_ok( join('-', prefix(0, 'x', 'y') ), 'eq', '0x-0y', 'prefix 0');
182    
183          cmp_ok( join('', suffix('xy', 'cd') ), 'eq', 'cdxy', 'suffix');          cmp_ok( join('', suffix('xy', 'cd') ), 'eq', 'cdxy', 'suffix');
184            cmp_ok( join('-', suffix('', 'x', 'y' ) ), 'eq', 'x-y', 'suffix empty');
185            cmp_ok( join('-', suffix(0, 'x', 'y' ) ), 'eq', 'x0-y0', 'suffix 0');
186    
187          cmp_ok( join('', surround('->', '<-', 'a','b','c') ), 'eq', '->a<-->b<-->c<-', 'surround');          cmp_ok( join('', surround('->', '<-', 'a','b','c') ), 'eq', '->a<-->b<-->c<-', 'surround');
188            cmp_ok( join('-', surround('', '', 'x','y','z') ), 'eq', 'x-y-z', 'surround empty');
189            cmp_ok( join('-', surround(0, 0, 'x','y','z') ), 'eq', '0x0-0y0-0z0', 'surround 0 0');
190    
191            # count
192            my @el;
193            for my $i ( 0 .. 10 ) {
194                    cmp_ok( count( @el ), '==', $i, "count($i)");
195                    push @el, "element $i";
196            }
197    
198            # lookups
199    
200            throws_ok { _set_load_row() } qr/CODE/, 'empty _set_load_row()';
201    
202            ok(_set_load_row(sub {
203                    my ($database,$input,$mfn) = @_;
204                    diag "load_row( $database, $input, $mfn )" if ($debug);
205                    cmp_ok( $#_, '==', 2, 'have 3 arguments');
206                    ok($database, '_load_row database');
207                    ok($input, '_load_row input');
208                    ok($mfn, '_load_row mfn');
209                    return {
210                            '900' => [{ x => '900x-' . $mfn , y => '900y-' . $mfn }],
211                    }
212    
213            }), '_set_load_row');
214    
215            my @v = qw/foo bar baz aaa bbb ccc ddd/;
216    
217            my @accumulated;
218    
219            for my $i ( 0 .. $#v ) {
220    
221                    my $mfn = 1000 + $i;
222    
223                    ok(WebPAC::Normalize::_set_config({ '_mfn' => $mfn }), "_set_config _mfn=$mfn");
224    
225                    my $size = $#v + 1;
226    
227                    cmp_ok(
228                            save_into_lookup('db','input','key', sub { @v }),
229                            '==', $size, "save_into_lookup $size values"
230                    );
231    
232                    ok(my $l = WebPAC::Normalize::_get_lookup(), '_get_lookup');
233                    diag "_get_lookup = ", dump($l) if ($debug);
234    
235                    my @lookup;
236    
237                    ok(@lookup = lookup(
238                                    sub {
239                                            diag "in show" if ($debug);
240                                            rec('900','x');
241                                    },
242                                    'db','input','key',
243                                    sub {
244                                            return @v;
245                                    }
246                            ),
247                    "lookup db/input/key");
248    
249                    push @accumulated, '900x-' . $mfn;
250    
251                    is_deeply(\@lookup, \@accumulated, "lookup db/input/key");
252    
253                    shift @v;
254    
255            }
256    
257            ok(my $l = WebPAC::Normalize::_get_lookup(), '_get_lookup');
258            diag "_get_lookup = ", dump($l) if ($debug);
259    
260            is_deeply( $l, {
261                    db => {
262                            input => {
263                                    key => {
264                                            foo => { 1000 => 1 },
265                                            bar => { 1000 => 1, 1001 => 1 },
266                                            baz => { 1000 => 1, 1001 => 1, 1002 => 1 },
267                                            aaa => { 1000 => 1, 1001 => 1, 1002 => 1, 1003 => 1 },
268                                            bbb => { 1000 => 1, 1001 => 1, 1002 => 1, 1003 => 1, 1004 => 1 },
269                                            ccc => { 1000 => 1, 1001 => 1, 1002 => 1, 1003 => 1, 1004 => 1, 1005 => 1 },
270                                            ddd => { 1000 => 1, 1001 => 1, 1002 => 1, 1003 => 1, 1004 => 1, 1005 => 1, 1006 => 1 },
271                                    },
272                            },
273                    },
274            }, 'lookup data');
275    
276    #######
277    
278            diag "lookup_hash1 = ", dump($lookup_hash1) if ($debug);
279            ok(_set_lookup( $lookup_hash1 ), '_set_lookup $lookup_hash1');
280    
281            throws_ok { _set_load_row() } qr/CODE/, 'empty _set_load_row()';
282    
283            ok(_set_load_row(sub {
284                    my ($database,$input,$mfn) = @_;
285                    diag "load_row( $database, $input, $mfn )";
286                    cmp_ok( $#_, '==', 2, 'have 3 arguments');
287                    ok($database, 'database');
288                    ok($input, 'input');
289                    ok($mfn, 'mfn');
290    
291            }), '_set_load_row');
292    
293    
294    #       cmp_ok(lookup(
295    #               sub {
296    #                       'found'
297    #               },
298    #               'db1','input1','key1',
299    #               sub {
300    #                       rec('200','a')
301    #               }
302    #       ), 'eq', 'found', 'lookup db1/input1/key1');
303    
304    
         set_lookup( $lookup1 );  
305                    
306          cmp_ok(  #       cmp_ok(
307                  join_with(" i ",  #               lookup(
308                          lookup(  #               ),
309                                  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');  
310    
311          # check join_with operations          # check join_with operations
312    
# Line 219  sub test_s { Line 350  sub test_s {
350    
351          # test lookups          # test lookups
352    
353          set_lookup( $lookup2 );          _set_lookup( $lookup_hash2 );
354    
355            throws_ok { lookup() } qr/need/, 'empty lookup';
356    
357          is_deeply( \[ lookup( prefix( '00', rec('902') ) ) ], \[ 'lookup' ], 'lookup prefix' );          #is_deeply( \[ lookup( prefix( '00', rec('902') ) ) ], \[ 'lookup' ], 'lookup prefix' );
358    
359          ok(! lookup('non-existent'), 'lookup non-existant' );          #ok(! lookup('non-existent'), 'lookup non-existant' );
360    
361          set_rec( $rec2 );          _set_rec( $rec2 );
362    
363          test_s(qq{          test_s(qq{
364                  tag('Title',                  search_display('Title',
365                          rec('200','a')                          rec('200','a')
366                  );                  );
367          });          });
368          test_s(qq{          test_s(qq{
369                  tag('Who',                  search_display('Who',
370                          join_with(" ",                          join_with(" ",
371                                  rec('702','a'),                                  rec('702','a'),
372                                  rec('702','b')                                  rec('702','b')
# Line 255  sub test_s { Line 388  sub test_s {
388                  )                  )
389          });          });
390    
391          ok(my $ds = get_ds(), "get_ds");          ok(my $ds = _get_ds(), "get_ds");
392          diag "ds = ", Dumper($ds) if ($debug);          diag "ds = ", dump($ds) if ($debug);
393    
394    
395          sub test_check_ds {          sub test_check_ds {
396    
397                  my $t = shift;                  my $t = shift;
398    
399                  ok($ds = get_ds(), 'get_ds');                  ok($ds = _get_ds(), 'get_ds');
400                  diag Dumper( $ds ) if ($debug);                  diag dump( $ds ) if ($debug);
401    
402                  ok( $ds && $ds->{something}, 'get_ds->something exists' );                  ok( $ds && $ds->{something}, 'get_ds->something exists' );
403                  ok( $ds && $ds->{something}->{$t}, 'get_ds->something->'.$t.' exists') if ($t);                  ok( $ds && $ds->{something}->{$t}, 'get_ds->something->'.$t.' exists') if ($t);
# Line 273  sub test_s { Line 406  sub test_s {
406                  return $ds;                  return $ds;
407          }          }
408    
409          clean_ds();          _clean_ds();
410          test_s(qq{ search('something', '42'); });          test_s(qq{ search('something', '42'); });
411          test_s(qq{ search('empty', ''); });          test_s(qq{ search('empty', ''); });
412          test_check_ds('search');          test_check_ds('search');
413    
414          clean_ds();          _clean_ds();
415          test_s(qq{ display('something', '42'); });          test_s(qq{ display('something', '42'); });
416          test_s(qq{ display('empty', ''); });          test_s(qq{ display('empty', ''); });
417          test_check_ds('display');          test_check_ds('display');
418    
419          clean_ds();          _clean_ds();
420          test_s(qq{ tag('something', '42'); });          test_s(qq{ search_display('something', '42'); });
421          test_s(qq{ tag('empty', ''); });          test_s(qq{ search_display('empty', ''); });
422          test_check_ds('search');          test_check_ds('search');
423          test_check_ds('display');          test_check_ds('display');
424    
425          clean_ds();          _clean_ds();
426            test_s(qq{ sorted('something', '42'); });
427            test_s(qq{ sorted('empty', ''); });
428            test_check_ds('sorted');
429    
430            _clean_ds();
431          my $n = read_file( "$abs_path/data/normalize.pl" );          my $n = read_file( "$abs_path/data/normalize.pl" );
432          $n .= "\n1;\n";          $n .= "\n1;\n";
433          #diag "normalize code:\n$n\n";          #diag "normalize code:\n$n\n";
434          test_s( $n );          test_s( $n );
435    
436          ok($ds = get_ds(), "get_ds");          ok($ds = _get_ds(), "get_ds");
437          diag "ds = ", Dumper($ds) if ($debug);          diag "ds = ", dump($ds) if ($debug);
438    
439          my $rec = {          my $rec = {
440                  '200' => [{                  '200' => [{
# Line 306  sub test_s { Line 444  sub test_s {
444          };          };
445          my $rules = qq{ search('mixed', rec('200') ) };          my $rules = qq{ search('mixed', rec('200') ) };
446                    
447          clean_ds();          _clean_ds();
448          set_rec( $rec );          _set_rec( $rec );
449          test_s( $rules );          test_s( $rules );
450          ok($ds = get_ds(), "get_ds");          ok($ds = _get_ds(), "get_ds");
451          is_deeply( $ds, {          is_deeply( $ds, {
452                  'mixed' => {                  'mixed' => {
453                          'search' => [ '200a', '200b' ],                          'search' => [ '200a', '200b' ],
                         'tag' => 'mixed'  
454                  }                  }
455          }, 'correct get_ds');          }, 'correct get_ds');
456    
# Line 324  sub test_s { Line 461  sub test_s {
461          is_deeply( $ds, $ds2, 'data_structure(s) same');          is_deeply( $ds, $ds2, 'data_structure(s) same');
462    
463          # wird and non-valid structure which is supported anyway          # wird and non-valid structure which is supported anyway
464          clean_ds();          _clean_ds();
465          set_rec({          _set_rec({
466                  '200' => [{                  '200' => [{
467                          'a' => '200a',                          'a' => '200a',
468                  },                  },
# Line 333  sub test_s { Line 470  sub test_s {
470                  ]                  ]
471          });          });
472          test_s(qq{ search('mixed', rec('200') ) });          test_s(qq{ search('mixed', rec('200') ) });
473          ok($ds = get_ds(), "get_ds");          ok($ds = _get_ds(), "get_ds");
474          is_deeply( $ds, {          is_deeply( $ds, {
475                  'mixed' => {                  'mixed' => {
476                          'search' => [ '200a', '200-solo' ],                          'search' => [ '200a', '200-solo' ],
                         'tag' => 'mixed'  
477                  }                  }
478          }, 'correct get_ds');          }, 'correct get_ds');
479    
480            #
481            # MARC
482            #
483            #_debug( 4 );
484    
485            test_s(qq{ marc_indicators('900',1,2) });
486            test_s(qq{ marc('900','a', rec('200') ) });
487            my $marc;
488            ok($marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");
489            diag dump( $marc ) if ($debug);
490    
491            is_deeply( $marc, [
492                    [ '900', 1, 2, 'a', '200a' ],
493                    [ '900', 1, 2, 'a', '200-solo' ]
494            ], 'correct marc with indicators');
495    
496            test_s(qq{ marc_indicators('900',' ',9) });
497            test_s(qq{ marc_repeatable_subfield('900','a', rec('200') ) });
498    
499            ok($marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");
500            diag dump( $marc ) if ($debug);
501    
502            is_deeply( $marc, [
503                    [ '900', 1, 2, 'a', '200a', 'a', '200-solo' ],
504                    [ '900', ' ', 9, 'a', '200a', 'a', '200-solo' ]
505            ], 'correct marc with repetable subfield');
506    
507            #
508            # test magic re-ordering of input data
509            #
510    
511            sub test_rec_rules {
512                    my ($msg, $rec, $rules, $struct) = @_;
513    
514                    _clean_ds();
515                    _set_rec($rec);
516    
517                    foreach my $r (split(/;/, $rules)) {
518                            $r =~ s/[\s\n\r]+/ /gs;
519                            $r =~ s/^\s+//gs;
520                            $r =~ s/\s+$//gs;
521                            test_s($r) if ($r);
522                    }
523    
524                    ok(my $marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");
525                    diag dump( $marc ) if ($debug);
526                    diag "expects:\n", dump($struct) if ($debug > 1);
527                    is_deeply( $marc, $struct, $msg );
528            }
529    
530            test_rec_rules(
531                    'correct marc with repetable subfield',
532                    {
533                            '200' => [{
534                                    'a' => '200a-1',
535                                    'b' => '200b-1',
536                                    'c' => '200c-1',
537                            }, {
538                                    'a' => '200a-2',
539                                    'b' => '200b-2',
540                            }, {
541                                    'a' => '200a-3',
542                            }],
543                    },
544                    qq{
545                            marc_indicators('900',1 ,0);
546                            marc('900','a', rec('200','a') );
547                            marc('900','b', rec('200','b') );
548                            marc('900','c', rec('200','c') );
549                    },
550                    [
551                            [ '900', 1, 0, 'a', '200a-1', 'b', '200b-1', 'c', '200c-1' ],
552                            [ '900', 1, 0, 'a', '200a-2', 'b', '200b-2' ],
553                            [ '900', 1, 0, 'a', '200a-3' ],
554                    ],
555            );
556    
557    
558            test_rec_rules(
559                    'marc_repeatable_subfield',
560                    {
561                            '200' => [{
562                                    'a' => '200a-1',
563                                    'b' => '200b-1',
564                                    'c' => '200c-1',
565                            }, {
566                                    'a' => '200a-2',
567                                    'b' => '200b-2',
568                                    'c' => '200c-2',
569                            }, {
570                                    'a' => '200a-3',
571                                    'c' => '200c-3',
572                            }],
573                    },
574                    qq{
575                            marc_indicators('900',1 ,0);
576                            marc_repeatable_subfield('900','a', rec('200','a') );
577                            marc('900','b', rec('200','b') );
578                            marc('900','c', rec('200','c') );
579                    },
580                    [
581                            [ '900', 1, 0, 'a', '200a-1', 'a', '200a-2', 'a', '200a-3', 'b', '200b-1', 'c', '200c-1' ],
582                            [ '900', 1, 0, 'b', '200b-2', 'c', '200c-2' ],
583                            [ '900', 1, 0, 'c', '200c-3' ],
584                    ],
585            );
586    
587            test_rec_rules(
588                    'marc_compose',
589                    { '200' => [{ a => 'foo ; bar', b => 42, c => 'baz' }] },
590                    qq{
591                            marc_compose('900',
592                                    'c', rec(200,'b'),
593                                    'b', rec(200,'a'),
594                                    'a', rec(200,'c'),
595                            );
596                    },
597                    [
598                            [ '900', ' ', ' ', 'c', 42, 'b', 'foo ; bar', 'a', 'baz' ]
599                    ],
600            );
601    
602            test_rec_rules(
603                    'marc_compose with + subfields',
604                    { '200' => [{ a => 'foo ; bar', b => 42, c => 'baz' }] },
605                    qq{
606                            marc_compose('900',
607                                    'a', rec(200,'a'),
608                                    '+', prefix(" * ", rec(200,'c')),
609                                    'b', rec(200,'b'),
610                                    '+', prefix(" : ", rec(200,'c')),
611                            );
612                    },
613                    [
614                            [ '900', ' ', ' ', 'a', 'foo ; bar * baz', 'b', '42 : baz' ]
615                    ],
616            );
617    
618            #
619            # test rules
620            #
621            sub test_rule {
622                    my ($msg, $rec, $rule, $struct) = @_;
623                    _clean_ds();
624                    _set_rec( $rec );
625                    $rule =~ s/\\/\\/gs;
626                    my $r = test_s( $rule );
627                    diag "for ", dump($rec), " got:\n", dump($r), "\nexpect:\n" if ($debug > 1);
628                    diag dump($struct) if ($debug);
629                    is_deeply( $r, $struct, $msg );
630            }
631    
632            # test split_rec_on
633            test_rule(
634                    'split_rec_on',
635                    { '200' => [{ a => 'foo ; bar', b => 42, c => 'baz' }] },
636                    qq{ split_rec_on('200','a', qr/\\s*;\\s*/, 1) },
637                    [ 'foo' ],
638            );
639            test_rule(
640                    'split_rec_on',
641                    { '200' => [{ a => 'foo ; bar', b => 42, c => 'baz' }] },
642                    qq{ split_rec_on('200','a', qr/\\s*;\\s*/, 2) },
643                    [ 'bar' ],
644            );
645            test_rule(
646                    'split_rec_on no part',
647                    { '200' => [{ a => 'foo ; bar', b => 42, c => 'baz' }] },
648                    qq{ split_rec_on('200','a', qr/\\s*;\\s*/) },
649                    [ 'foo', 'bar' ],
650            );
651            test_rule(
652                    'split_rec_on no record',
653                    {},
654                    qq{ split_rec_on('200','a', qr/\\s*;\\s*/) },
655                    [ '' ],
656            );
657    
658            test_rec_rules(
659                    'marc_compose+split_rec_on',
660                    { '200' => [{ a => 'foo ! bar', b => 42, c => 'baz' }] },
661                    qq{
662                            marc_compose('900',
663                                    'a', split_rec_on(200,'a', qr/\\s*!\\s*/, 1),
664                                    'c', rec(200,'c'),
665                                    'a', split_rec_on(200,'a', qr/\\s*!\\s*/, 2),
666                                    'b', rec(200,'b'),
667                            );
668                    },
669                    [
670                            [ '900', ' ', ' ',
671                                    'a', 'foo',
672                                    'c', 'baz',
673                                    'a', 'bar',
674                                    'b', 42,
675                            ]
676                    ],
677            );
678    
679            cmp_ok(marc_leader('06',42), '==', 42, 'marc_leader');
680            cmp_ok(marc_leader('11',5), '==', 5, 'marc_leader');
681            ok(marc_leader(), 'marc_leader get');
682            diag "leader: ", dump(marc_leader()) if ($debug);
683            is_deeply(marc_leader(), { '06' => 42, 11 => 5 }, "marc_leader full");
684    
685            test_rule(
686                    'rec1(000)',
687                    { '000' => [ 42 ]},
688                    qq{ rec('000') },
689                    [ 42 ],
690            );
691    
692            test_rec_rules(
693                    'marc(001,rec(000))',
694                    { '000' => [ 42 ]},
695                    qq{
696                            marc('001', rec('000') );
697                    },
698                    [
699                            [ '001', 42, ]
700                    ],
701            );
702    
703            test_rec_rules(
704                    'marc_remove subfield',
705                    { '200' => [{ a => 42, b => 'bar', c => 'baz' }] },
706                    qq{
707                            marc('900', 'a', rec('200','a') );
708                            marc('900', 'b', rec('200','b') );
709                            marc_remove('900','b');
710                            marc('900', 'b', rec('200','c') );
711                            marc_remove('900','a');
712                    },
713                    [
714                            [ '900', ' ', ' ', 'b', 'baz' ],
715                    ],
716            );
717    
718            test_rec_rules(
719                    'marc_remove field',
720                    { '200' => [{ a => 42, b => 'bar', c => 'baz' }] },
721                    qq{
722                            marc('900', 'a', rec('200','a') );
723                            marc('900', 'b', rec('200','b') );
724                            marc('901', 'b', rec('200','b') );
725                            marc('901', 'c', rec('200','c') );
726                            marc_remove('900');
727                    },
728                    [
729                            [ '901', ' ', ' ', 'b', 'bar', 'c', 'baz' ],
730                    ],
731            );
732    
733            test_s(qq{ marc_remove('*'); });
734            ok(! WebPAC::Normalize::_get_marc_fields(), 'marc_remove(*)');
735    
736            test_rec_rules(
737                    'marc_duplicate',
738                    { '200' => [{ a => 42, b => 'bar', c => 'baz', d => 'bing', e => 'bong' }] },
739                    qq{
740                            marc_leader('06',42);
741                            marc_leader('11',0);
742                            marc('900', 'a', rec('200','a') );
743                            marc('900', 'b', rec('200','b') );
744                            marc_duplicate;
745                            marc_leader('11',1);
746                            marc_remove('900','b');
747                            marc('900', 'b', rec('200','c') );
748                            marc_duplicate;
749                            marc_leader('11',2);
750                            marc_remove('900','b');
751                            marc('900', 'b', rec('200','d') );
752                            marc_duplicate;
753                            marc_leader('11',3);
754                            marc_remove('900','b');
755                            marc('900', 'b', rec('200','e') );
756                    },
757                    [
758                            # this will return FIRST record
759                            [ '900', ' ', ' ', 'a', 42, 'b', 'bar' ],
760                    ],
761            );
762    
763            cmp_ok( marc_count(), '==', 3, 'marc_count' );
764    
765            my $i = 0;
766            foreach my $v ( qw/bar baz bing bong/ ) {
767    
768                    ok($marc = WebPAC::Normalize::_get_marc_fields( offset => $i ),
769                            "_get_marc_fields( offset => $i )"
770                    );
771                    diag "marc $i = ", dump( $marc ) if ($debug);
772                    is_deeply( $marc,
773                            [ [ '900', ' ', ' ', 'a', 42, 'b', $v ] ],
774                            "MARC copy $i has $v",
775                    );
776                    is_deeply(WebPAC::Normalize::_get_marc_leader(), { '06' => 42, 11 => $i }, "_get_marc_leader copy $i");
777                    $i++;
778            }
779    
780            test_rec_rules(
781                    'marc_original_order',
782                    {
783                            '200' => [ {
784                                    a => [ 'a1', 'a2' ], b => [ 'b1', 'b2' ], c => [ 'c1', 'c2' ],
785                                    subfields => [ qw/a 0 b 0 a 1 b 1 c 0 c 1/ ],
786                            }, {
787                                    a => [ 'a3', 'a4', 'a5' ], b => 'b3', c => 'c3',
788                                    subfields => [ qw/a 0 a 1 b 0 c 0 a 2/ ],
789                            } ],
790                    },
791                    qq{
792                            marc_original_order(900,200);
793                    },
794                    [
795                            [ '900', ' ', ' ', 'a', 'a1', 'b', 'b1', 'a', 'a2', 'b', 'b2', 'c', 'c1', 'c', 'c2', ],
796                            [ '900', ' ', ' ', 'a', 'a3', 'a', 'a4', 'b', 'b3', 'c', 'c3', 'a', 'a5', ],
797                    ],
798            );
799    
800            test_rule(
801                    'rec1 skips subfields',
802                    {
803                            '200' => [ {
804                                    a => [ 'a1', 'a2' ], b => [ 'b1', 'b2' ], c => [ 'c1', 'c2' ],
805                                    subfields => [ qw/a 0 b 0 a 1 b 1 c 0 c 1/ ],
806                            }, {
807                                    a => [ 'a3', 'a4', 'a5' ], b => 'b3', c => 'c3',
808                                    subfields => [ qw/a 0 a 1 b 0 c 0 a 2/ ],
809                            } ],
810                    },
811                    qq{
812                            rec1(200);
813                    },
814                    ['a1', 'b1', 'a2', 'b2', 'c1', 'c2', 'a3', 'a4', 'b3', 'c3', 'a5' ],
815            );
816    
817            is_deeply(
818                    [ _pack_subfields_hash({
819                            a => [ 'a1', 'a2' ], b => [ 'b1', 'b2' ], c => [ 'c1', 'c2' ],
820                            subfields => [ qw/a 0 b 0 a 1 b 1 c 0 c 1/ ],
821                    }) ],
822                    ['a1', 'b1', 'a2', 'b2', 'c1', 'c2'],
823                    '_pack_subfields_hash( $h )'
824            );
825    
826            cmp_ok(
827                    _pack_subfields_hash({
828                            a => [ 'a1', 'a2' ], b => [ 'b1', 'b2' ], c => [ 'c1', 'c2' ],
829                            subfields => [ qw/a 0 b 0 a 1 b 1 c 0 c 1/ ],
830                    }, 1),
831                    'eq',
832                    '^aa1^bb1^aa2^bb2^cc1^cc2',
833                    '_pack_subfields_hash( $h, 1 )'
834            );
835    
836            _clean_ds();
837            test_s(qq{
838                    marc_fixed('008', 0, 'abcdef');
839                    marc_fixed('000', 5, '5');
840                    marc_fixed('000', 10, 'A');
841                    marc_fixed('000', 0, '0');
842            });
843            ok( my $m = WebPAC::Normalize::_get_marc_fields(), '_get_marc_fields');
844            diag dump( $m );
845            is_deeply( WebPAC::Normalize::_get_marc_fields(),
846                    [
847                            ["008", "abcdef"],
848                            #        0....5....10
849                            ["000", "0    5    A"]
850                    ]
851            );
852  }  }
853    

Legend:
Removed from v.536  
changed lines
  Added in v.949

  ViewVC Help
Powered by ViewVC 1.1.26