/[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 725 by dpavlin, Fri Sep 29 18:55:41 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 => 309;  
 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 => 352;
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            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 191  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          # lookups
201    
202          throws_ok { _set_load_ds() } qr/CODE/, 'empty _set_load_ds()';          throws_ok { _set_load_row() } qr/CODE/, 'empty _set_load_row()';
203    
204          ok(_set_load_ds(sub {          ok(_set_load_row(sub {
205                  my ($database,$input,$mfn) = @_;                  my ($database,$input,$mfn) = @_;
206                  diag "load_ds( $database, $input, $mfn )";                  diag "load_row( $database, $input, $mfn )" if ($debug);
207                  cmp_ok( $#_, '==', 2, 'have 3 arguments');                  cmp_ok( $#_, '==', 2, 'have 3 arguments');
208                  ok($database, '_load_ds database');                  ok($database, '_load_row database');
209                  ok($input, '_load_ds input');                  ok($input, '_load_row input');
210                  ok($mfn, '_load_ds mfn');                  ok($mfn, '_load_row mfn');
211                  return {                  return {
212                          '900' => [{ x => '900x-' . $mfn , y => '900y-' . $mfn }],                          '900' => [{ x => '900x-' . $mfn , y => '900y-' . $mfn }],
213                  }                  }
214    
215          }), '_set_load_ds');          }), '_set_load_row');
216    
217          my @v = qw/foo bar baz aaa bbb ccc ddd/;          my @v = qw/foo bar baz aaa bbb ccc ddd/;
218    
# Line 229  sub test_s { Line 232  sub test_s {
232                  );                  );
233    
234                  ok(my $l = WebPAC::Normalize::_get_lookup(), '_get_lookup');                  ok(my $l = WebPAC::Normalize::_get_lookup(), '_get_lookup');
235                  diag "_get_lookup = ", dump($l);                  diag "_get_lookup = ", dump($l) if ($debug);
236    
237                  my @lookup;                  my @lookup;
238    
239                  ok(my @lookup = lookup(                  ok(@lookup = lookup(
240                                  sub {                                  sub {
241                                          diag "in show";                                          diag "in show" if ($debug);
242                                          rec('900','x');                                          rec('900','x');
243                                  },                                  },
244                                  'db','input','key',                                  'db','input','key',
# Line 254  sub test_s { Line 257  sub test_s {
257          }          }
258    
259          ok(my $l = WebPAC::Normalize::_get_lookup(), '_get_lookup');          ok(my $l = WebPAC::Normalize::_get_lookup(), '_get_lookup');
260          diag "_get_lookup = ", dump($l);          diag "_get_lookup = ", dump($l) if ($debug);
261    
262          is_deeply( $l, {          is_deeply( $l, {
263                  db => {                  db => {
# Line 274  sub test_s { Line 277  sub test_s {
277    
278  #######  #######
279    
280          diag "lookup_hash1 = ", dump($lookup_hash1);          diag "lookup_hash1 = ", dump($lookup_hash1) if ($debug);
281          ok(_set_lookup( $lookup_hash1 ), '_set_lookup $lookup_hash1');          ok(_set_lookup( $lookup_hash1 ), '_set_lookup $lookup_hash1');
282    
283          throws_ok { _set_load_ds() } qr/CODE/, 'empty _set_load_ds()';          throws_ok { _set_load_row() } qr/CODE/, 'empty _set_load_row()';
284    
285          ok(_set_load_ds(sub {          ok(_set_load_row(sub {
286                  my ($database,$input,$mfn) = @_;                  my ($database,$input,$mfn) = @_;
287                  diag "load_ds( $database, $input, $mfn )";                  diag "load_row( $database, $input, $mfn )";
288                  cmp_ok( $#_, '==', 2, 'have 3 arguments');                  cmp_ok( $#_, '==', 2, 'have 3 arguments');
289                  ok($database, 'database');                  ok($database, 'database');
290                  ok($input, 'input');                  ok($input, 'input');
291                  ok($mfn, 'mfn');                  ok($mfn, 'mfn');
292    
293          }), '_set_load_ds');          }), '_set_load_row');
294    
295    
296  #       cmp_ok(lookup(  #       cmp_ok(lookup(
# Line 357  sub test_s { Line 360  sub test_s {
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 416  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 439  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 457  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 469  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    
# Line 508  sub test_s { Line 514  sub test_s {
514                  my ($msg, $rec, $rules, $struct) = @_;                  my ($msg, $rec, $rules, $struct) = @_;
515    
516                  _clean_ds();                  _clean_ds();
517                  _set_rec($rec);                  _set_ds($rec);
518    
519                  foreach my $r (split(/;/, $rules)) {                  foreach my $r (split(/;/, $rules)) {
520                          $r =~ s/[\s\n\r]+/ /gs;                          $r =~ s/[\s\n\r]+/ /gs;
# Line 617  sub test_s { Line 623  sub test_s {
623          sub test_rule {          sub test_rule {
624                  my ($msg, $rec, $rule, $struct) = @_;                  my ($msg, $rec, $rule, $struct) = @_;
625                  _clean_ds();                  _clean_ds();
626                  _set_rec( $rec );                  _set_ds( $rec );
627                  $rule =~ s/\\/\\/gs;                  $rule =~ s/\\/\\/gs;
628                  my $r = test_s( $rule );                  my $r = test_s( $rule );
629                  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 725  sub test_s { Line 731  sub test_s {
731                          [ '901', ' ', ' ', 'b', 'bar', 'c', 'baz' ],                          [ '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(          test_rec_rules(
739                  'marc_duplicate',                  'marc_duplicate',
740                  { '200' => [{ a => 42, b => 'bar', c => 'baz', d => 'bing', e => 'bong' }] },                  { '200' => [{ a => 42, b => 'bar', c => 'baz', d => 'bing', e => 'bong' }] },
741                  qq{                  qq{
742                            marc_leader('06',42);
743                            marc_leader('11',0);
744                          marc('900', 'a', rec('200','a') );                          marc('900', 'a', rec('200','a') );
745                          marc('900', 'b', rec('200','b') );                          marc('900', 'b', rec('200','b') );
746                          marc_duplicate;                          marc_duplicate;
747                            marc_leader('11',1);
748                          marc_remove('900','b');                          marc_remove('900','b');
749                          marc('900', 'b', rec('200','c') );                          marc('900', 'b', rec('200','c') );
750                          marc_duplicate;                          marc_duplicate;
751                            marc_leader('11',2);
752                          marc_remove('900','b');                          marc_remove('900','b');
753                          marc('900', 'b', rec('200','d') );                          marc('900', 'b', rec('200','d') );
754                          marc_duplicate;                          marc_duplicate;
755                            marc_leader('11',3);
756                          marc_remove('900','b');                          marc_remove('900','b');
757                          marc('900', 'b', rec('200','e') );                          marc('900', 'b', rec('200','e') );
758                  },                  },
# Line 747  sub test_s { Line 762  sub test_s {
762                  ],                  ],
763          );          );
764    
765            cmp_ok( marc_count(), '==', 3, 'marc_count' );
766    
767          my $i = 0;          my $i = 0;
768          foreach my $v ( qw/bar baz bing bong/ ) {          foreach my $v ( qw/bar baz bing bong/ ) {
769    
# Line 758  sub test_s { Line 775  sub test_s {
775                          [ [ '900', ' ', ' ', 'a', 42, 'b', $v ] ],                          [ [ '900', ' ', ' ', 'a', 42, 'b', $v ] ],
776                          "MARC copy $i has $v",                          "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++;                  $i++;
780          }          }
781    
# Line 816  sub test_s { Line 834  sub test_s {
834                  '^aa1^bb1^aa2^bb2^cc1^cc2',                  '^aa1^bb1^aa2^bb2^cc1^cc2',
835                  '_pack_subfields_hash( $h, 1 )'                  '_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    

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

  ViewVC Help
Powered by ViewVC 1.1.26