/[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 949 by dpavlin, Thu Nov 1 00:16:48 2007 UTC revision 1015 by dpavlin, Thu Nov 8 17:19:50 2007 UTC
# Line 3  Line 3 
3  use strict;  use strict;
4  use blib;  use blib;
5    
6  use Test::More tests => 347;  use Test::More tests => 351;
7    
8  BEGIN {  BEGIN {
9          use_ok( 'WebPAC::Test' );          use_ok( 'WebPAC::Test' );
# Line 162  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 358  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 445  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 462  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 512  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    
# Line 621  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 849  sub test_s { Line 850  sub test_s {
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                            }, {
874                                    a => [ 'a3', 'a4', 'a5' ], b => 'b3', c => 'c3',
875                                    subfields => [ qw/a 0 a 1 b 0 c 0 a 2/ ],
876                            } ],
877            };
878    
879            test_rule( 'frec', $rec, qq{ frec(200) }, [ 'a1' ] );
880            test_rule( 'frec', $rec, qq{ frec(200,'a') }, [ 'a1' ] );
881            test_rule( 'frec', $rec, qq{ frec(200,'b') }, [ 'b1' ] );
882            test_rule( 'frec', $rec, qq{ frec(200,'c') }, [ 'c1' ] );
883    
884            $rec->{'900'} = $rec->{'200'};
885            foreach my $sf ( qw/a b c/ ) {
886                    ok( frec_eq( '200' => $sf, '900' => $sf ), "frec_eq 200 == 900 $sf");
887                    ok( ! frec_ne( '200' => $sf, '900' => $sf ), "! frec_ne 200 == 900 $sf");
888            }
889    
890            foreach my $sf ( qw/a b/ ) {
891                    ok( ! frec_eq( '200' => $sf, '200' => 'c' ), "! frec_eq 200 $sf == 200 c");
892                    ok( frec_ne( '200' => $sf, '200' => 'c' ), "frec_ne 200 $sf == 200 c");
893            }
894    
895            # marc_template
896    
897            test_rec_rules(
898                    'marc_template',
899                    {
900                            '225' => [{
901                                    'a' => 'a-1-1',
902                                    'i' => 'i-1-1',
903                                    'v' => 'v-1-1',
904                                    'w' => 'w-1-1',
905                                    'h' => 'h-1-1',
906                                    'x' => 'x-1-1',
907                            },{
908                                    'a' => 'a-2-1',
909                                    'v' => 'v-2-1',
910                                    'i' => 'i-2-1',
911                            },{
912                                    'a' => 'a-3-1',
913                                    'i' => 'i-3-1',
914                                    'v' => 'v-3-1',
915                            },{
916                                    'a' => 'a-4-1',
917                                    'v' => 'v-4-1',
918                                    'i' => 'i-4-1',
919                                    'w' => 'w-4-1',
920                            }],
921                    },
922                    qq{
923                            marc_template(
924                                    from => 225, to => 440,
925                                    subfields_rename => [
926                                            'a' => 'a',
927                                            'x' => 'x',
928                                            'v' => 'v',
929                                            'h' => 'n',
930                                            'i' => 'p',
931                                            'w' => 'v',
932                                    ],
933                                    marc_template => [
934                                            'a, |x ; |v. |n, |p ; |v',
935                                            'a ; |v. |p ; |v',
936                                            'a. |p ; |v',
937                                    ],
938                            );
939                    },
940                    [
941                            [440, " ", " ",
942                                    ["a", "a-1-1"],
943                                    ["x", "x-1-1"],
944                                    ["v", "v-1-1"],
945                                    ["n", "h-1-1"],
946                                    ["p", "i-1-1"],
947                                    ["v", "w-1-1"],
948                            ],
949                            [440, " ", " ", ["a", "a-2-1"], ["p", "i-2-1"], ["v", "v-2-1"]],
950                            [440, " ", " ", ["a", "a-3-1"], ["p", "i-3-1"], ["v", "v-3-1"]],
951                            [440, " ", " ",
952                                    ["a", "a-4-1"],
953                                    ["v", "v-4-1"],
954                                    ["p", "i-4-1"],
955                                    ["v", "w-4-1"],
956                            ],
957                    ],
958            );
959  }  }
960    

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

  ViewVC Help
Powered by ViewVC 1.1.26