/[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 983 by dpavlin, Sun Nov 4 11:12:38 2007 UTC revision 1021 by dpavlin, Sat Nov 10 11:11:16 2007 UTC
# Line 3  Line 3 
3  use strict;  use strict;
4  use blib;  use blib;
5    
6  use Test::More tests => 352;  use Test::More tests => 343;
7    
8  BEGIN {  BEGIN {
9          use_ok( 'WebPAC::Test' );          use_ok( 'WebPAC::Test' );
# Line 164  sub test_s { Line 164  sub test_s {
164    
165          _set_ds( $rec1 );          _set_ds( $rec1 );
166    
         is_deeply( get_ds, $rec1, 'get_ds' );  
   
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' );
169          cmp_ok( join(" * ", sort(rec1('200'), rec1('201') )), 'eq', '200a * 200a*2 * 200b * 200c * 200d * 200d*2 * 201x * 201y', 'join sort rec1 rec1' );          cmp_ok( join(" * ", sort(rec1('200'), rec1('201') )), 'eq', '200a * 200a*2 * 200b * 200c * 200d * 200d*2 * 201x * 201y', 'join sort rec1 rec1' );
# Line 516  sub test_s { Line 514  sub test_s {
514                  _clean_ds();                  _clean_ds();
515                  _set_ds($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::_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 865  sub test_s { Line 864  sub test_s {
864                  [ '1-55860-701-3', '1-55860-701-3' ],                  [ '1-55860-701-3', '1-55860-701-3' ],
865          'isbn_10' );          '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                                    'a' => 'a-4-1',
922                                    'v' => 'v-4-1',
923                                    'i' => 'i-4-1',
924                            },{
925                                    'a' => 'a-4-1',
926                                    'i' => 'i-4-1',
927                                    'w' => 'w-4-1',
928                            }],
929                    },
930                    qq{
931                            marc_template(
932                                    from => 225, to => 440,
933                                    subfields_rename => [
934                                            'a' => 'a',
935                                            'x' => 'x',
936                                            'v' => 'v',
937                                            'h' => 'n',
938                                            'i' => 'p',
939                                            'w' => 'v',
940                                    ],
941                                    isis_template => [
942                                            'a ; |v. |i',
943                                            'a. |i ; |w',
944                                    ],
945                                    marc_template => [
946                                            'a',
947                                            'a, |x ; |v. |n, |p ; |v',
948                                            'a ; |v. |p ; |v',
949                                    ],
950                            );
951                    },
952                    [
953                            [440, " ", " ", "a", "a-1-1", "x", "x-1-1", "v", "v-1-1", "n", "h-1-1", "p", "i-1-1", "v", "w-1-1", ],
954                            [440, " ", " ", "a", "a-2-1", "p", "i-2-1", "v", "v-2-1"],
955                            [440, " ", " ", "a", "a-3-1", "p", "i-3-1", "v", "v-3-1"],
956                            [440, " ", " ", "a", "a-4-1", "v", "v-4-1", "p", "i-4-1", "v", "w-4-1"],
957                            [440, " ", " ", "a", "a-5-1"],
958                    ],
959            );
960  }  }
961    

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

  ViewVC Help
Powered by ViewVC 1.1.26