/[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 923 by dpavlin, Wed Oct 31 00:26:43 2007 UTC revision 1048 by dpavlin, Mon Nov 19 16:33:09 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 => 347;  
 use Test::Exception;  
 use Cwd qw/abs_path/;  
4  use blib;  use blib;
5  use File::Slurp;  
6  use Getopt::Long;  use Test::More tests => 344;
7    
8  BEGIN {  BEGIN {
9            use_ok( 'WebPAC::Test' );
10          use_ok( 'WebPAC::Normalize' );          use_ok( 'WebPAC::Normalize' );
11  }  }
12    
 use Data::Dump qw/dump/;  
   
 my $debug = 0;  
 GetOptions(  
         "debug+", \$debug  
 );  
   
13  cmp_ok(_debug(1), '==', 1, '_debug level');  cmp_ok(_debug(1), '==', 1, '_debug level');
14  cmp_ok(_debug(0), '==', 0, '_debug level');  cmp_ok(_debug(0), '==', 0, '_debug level');
15    
# Line 28  if ($debug > 2) { Line 18  if ($debug > 2) {
18          diag "debug level for WebPAC::Normalize is ", _debug( $debug - 2 );          diag "debug level for WebPAC::Normalize is ", _debug( $debug - 2 );
19  }  }
20    
 ok(my $abs_path = abs_path($0), "abs_path");  
 $abs_path =~ s#/[^/]*$#/#;  
 diag "abs_path: $abs_path" if ($debug);  
   
21  my $rec1 = {  my $rec1 = {
22          '200' => [{          '200' => [{
23                  'a' => '200a',                  'a' => '200a',
# Line 176  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          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 372  sub test_s { Line 358  sub test_s {
358    
359          #ok(! lookup('non-existent'), 'lookup non-existant' );          #ok(! lookup('non-existent'), 'lookup non-existant' );
360    
361          _set_rec( $rec2 );          _set_ds( $rec2 );
362    
363          test_s(qq{          test_s(qq{
364                  search_display('Title',                  search_display('Title',
# Line 459  sub test_s { Line 445  sub test_s {
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_ds( $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, {
# Line 476  sub test_s { Line 462  sub test_s {
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_ds({
466                  '200' => [{                  '200' => [{
467                          'a' => '200a',                          'a' => '200a',
468                  },                  },
# Line 499  sub test_s { Line 485  sub test_s {
485          test_s(qq{ marc_indicators('900',1,2) });          test_s(qq{ marc_indicators('900',1,2) });
486          test_s(qq{ marc('900','a', rec('200') ) });          test_s(qq{ marc('900','a', rec('200') ) });
487          my $marc;          my $marc;
488          ok($marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");          ok($marc = WebPAC::Normalize::MARC::_get_marc_fields(), "_get_marc_fields");
489          diag dump( $marc ) if ($debug);          diag dump( $marc ) if ($debug);
490    
491          is_deeply( $marc, [          is_deeply( $marc, [
# Line 510  sub test_s { Line 496  sub test_s {
496          test_s(qq{ marc_indicators('900',' ',9) });          test_s(qq{ marc_indicators('900',' ',9) });
497          test_s(qq{ marc_repeatable_subfield('900','a', rec('200') ) });          test_s(qq{ marc_repeatable_subfield('900','a', rec('200') ) });
498    
499          ok($marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");          ok($marc = WebPAC::Normalize::MARC::_get_marc_fields(), "_get_marc_fields");
500          diag dump( $marc ) if ($debug);          diag dump( $marc ) if ($debug);
501    
502          is_deeply( $marc, [          is_deeply( $marc, [
# Line 526  sub test_s { Line 512  sub test_s {
512                  my ($msg, $rec, $rules, $struct) = @_;                  my ($msg, $rec, $rules, $struct) = @_;
513    
514                  _clean_ds();                  _clean_ds();
515                  _set_rec($rec);                  _set_ds($rec);
516    
517                  foreach my $r (split(/;/, $rules)) {                  foreach my $r (split(/;\s*$/, $rules)) {
518                          $r =~ s/[\s\n\r]+/ /gs;                          $r =~ s/[\s\n\r]+/ /gs;
519                          $r =~ s/^\s+//gs;                          $r =~ s/^\s+//gs;
520                          $r =~ s/\s+$//gs;                          $r =~ s/\s+$//gs;
521                            diag "rule: $r" if $debug;
522                          test_s($r) if ($r);                          test_s($r) if ($r);
523                  }                  }
524    
525                  ok(my $marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");                  ok(my $marc = WebPAC::Normalize::MARC::_get_marc_fields(), "_get_marc_fields");
526                  diag dump( $marc ) if ($debug);                  diag dump( $marc ) if $debug;
527                  diag "expects:\n", dump($struct) if ($debug > 1);                  diag "expects:\n", dump($struct) if ($debug > 1);
528                  is_deeply( $marc, $struct, $msg );                  is_deeply( $marc, $struct, $msg );
529          }          }
# Line 635  sub test_s { Line 622  sub test_s {
622          sub test_rule {          sub test_rule {
623                  my ($msg, $rec, $rule, $struct) = @_;                  my ($msg, $rec, $rule, $struct) = @_;
624                  _clean_ds();                  _clean_ds();
625                  _set_rec( $rec );                  _set_ds( $rec );
626                  $rule =~ s/\\/\\/gs;                  $rule =~ s/\\/\\/gs;
627                  my $r = test_s( $rule );                  my $r = test_s( $rule );
628                  diag "for ", dump($rec), " got:\n", dump($r), "\nexpect:\n" if ($debug > 1);                  diag "for ", dump($rec), " got:\n", dump($r), "\nexpect:\n" if ($debug > 1);
# Line 745  sub test_s { Line 732  sub test_s {
732          );          );
733    
734          test_s(qq{ marc_remove('*'); });          test_s(qq{ marc_remove('*'); });
735          ok(! WebPAC::Normalize::_get_marc_fields(), 'marc_remove(*)');          ok(! WebPAC::Normalize::MARC::_get_marc_fields(), 'marc_remove(*)');
736    
737          test_rec_rules(          test_rec_rules(
738                  'marc_duplicate',                  'marc_duplicate',
# Line 779  sub test_s { Line 766  sub test_s {
766          my $i = 0;          my $i = 0;
767          foreach my $v ( qw/bar baz bing bong/ ) {          foreach my $v ( qw/bar baz bing bong/ ) {
768    
769                  ok($marc = WebPAC::Normalize::_get_marc_fields( offset => $i ),                  ok($marc = WebPAC::Normalize::MARC::_get_marc_fields( offset => $i ),
770                          "_get_marc_fields( offset => $i )"                          "_get_marc_fields( offset => $i )"
771                  );                  );
772                  diag "marc $i = ", dump( $marc ) if ($debug);                  diag "marc $i = ", dump( $marc ) if ($debug);
# Line 787  sub test_s { Line 774  sub test_s {
774                          [ [ '900', ' ', ' ', 'a', 42, 'b', $v ] ],                          [ [ '900', ' ', ' ', 'a', 42, 'b', $v ] ],
775                          "MARC copy $i has $v",                          "MARC copy $i has $v",
776                  );                  );
777                  is_deeply(WebPAC::Normalize::_get_marc_leader(), { '06' => 42, 11 => $i }, "_get_marc_leader copy $i");                  is_deeply(WebPAC::Normalize::MARC::_get_marc_leader(), { '06' => 42, 11 => $i }, "_get_marc_leader copy $i");
778                  $i++;                  $i++;
779          }          }
780    
# Line 854  sub test_s { Line 841  sub test_s {
841                  marc_fixed('000', 10, 'A');                  marc_fixed('000', 10, 'A');
842                  marc_fixed('000', 0, '0');                  marc_fixed('000', 0, '0');
843          });          });
844          ok( my $m = WebPAC::Normalize::_get_marc_fields(), '_get_marc_fields');          ok( my $m = WebPAC::Normalize::MARC::_get_marc_fields(), '_get_marc_fields');
845          diag dump( $m );          diag dump( $m );
846          is_deeply( WebPAC::Normalize::_get_marc_fields(),          is_deeply( WebPAC::Normalize::MARC::_get_marc_fields(),
847                  [                  [
848                          ["008", "abcdef"],                          ["008", "abcdef"],
849                          #        0....5....10                          #        0....5....10
850                          ["000", "0    5    A"]                          ["000", "0    5    A"]
851                  ]                  ]
852          );          );
853    
854            test_s(qq{ isbn_13( '1558607013', '978-1558607019' ) });
855            test_s(qq{ isbn_10( '1558607013', '978-1558607019' ) });
856    
857            is_deeply(
858                    [ isbn_13( '1558607013', '978-1558607019' ) ],
859                    [ '978-1-55860-701-9', '978-1-55860-701-9', ],
860            'isbn_13' );
861    
862            is_deeply(
863                    [ isbn_10( '1558607013', '978-1558607019' ) ],
864                    [ '1-55860-701-3', '1-55860-701-3' ],
865            'isbn_10' );
866    
867            # frec
868    
869            my $rec = {
870                            '200' => [ {
871                                    a => [ 'a1', 'a2' ], b => [ 'b1', 'b2' ], c => [ 'c1', 'c2' ],
872                                    subfields => [ qw/a 0 b 0 a 1 b 1 c 0 c 1/ ],
873                                    i1 => '0', i2 => '1',
874                            }, {
875                                    a => [ 'a3', 'a4', 'a5' ], b => 'b3', c => 'c3',
876                                    subfields => [ qw/a 0 a 1 b 0 c 0 a 2/ ],
877                            } ],
878            };
879    
880            test_rule( 'frec', $rec, qq{ frec(200) }, [ 'a1' ] );
881            test_rule( 'frec', $rec, qq{ frec(200,'a') }, [ 'a1' ] );
882            test_rule( 'frec', $rec, qq{ frec(200,'b') }, [ 'b1' ] );
883            test_rule( 'frec', $rec, qq{ frec(200,'c') }, [ 'c1' ] );
884    
885            $rec->{'900'} = $rec->{'200'};
886            foreach my $sf ( qw/a b c/ ) {
887                    ok( frec_eq( '200' => $sf, '900' => $sf ), "frec_eq 200 == 900 $sf");
888                    ok( ! frec_ne( '200' => $sf, '900' => $sf ), "! frec_ne 200 == 900 $sf");
889            }
890    
891            foreach my $sf ( qw/a b/ ) {
892                    ok( ! frec_eq( '200' => $sf, '200' => 'c' ), "! frec_eq 200 $sf == 200 c");
893                    ok( frec_ne( '200' => $sf, '200' => 'c' ), "frec_ne 200 $sf == 200 c");
894            }
895    
896            test_rule( 'rec(200,i1)', $rec, qq{ rec(200,'i1') }, [ '0' ] );
897            test_rule( 'rec(200,i2)', $rec, qq{ rec(200,'i2') }, [ '1' ] );
898    
899  }  }
900    

Legend:
Removed from v.923  
changed lines
  Added in v.1048

  ViewVC Help
Powered by ViewVC 1.1.26