/[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 980 by dpavlin, Sat Nov 3 13:33:19 2007 UTC revision 1014 by dpavlin, Thu Nov 8 16:55:59 2007 UTC
# 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 863  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            # marc_template
885    
886            test_rec_rules(
887                    'marc_template',
888                    {
889                            '225' => [{
890                                    'a' => 'a-1-1',
891                                    'i' => 'i-1-1',
892                                    'v' => 'v-1-1',
893                                    'w' => 'w-1-1',
894                                    'h' => 'h-1-1',
895                                    'x' => 'x-1-1',
896                            },{
897                                    'a' => 'a-2-1',
898                                    'v' => 'v-2-1',
899                                    'i' => 'i-2-1',
900                            },{
901                                    'a' => 'a-3-1',
902                                    'i' => 'i-3-1',
903                                    'v' => 'v-3-1',
904                            },{
905                                    'a' => 'a-4-1',
906                                    'v' => 'v-4-1',
907                                    'i' => 'i-4-1',
908                                    'w' => 'w-4-1',
909                            }],
910                    },
911                    qq{
912                            marc_template(
913                                    from => 225, to => 440,
914                                    subfields_rename => [
915                                            'a' => 'a',
916                                            'x' => 'x',
917                                            'v' => 'v',
918                                            'h' => 'n',
919                                            'i' => 'p',
920                                            'w' => 'v',
921                                    ],
922                                    marc_template => [
923                                            'a, |x ; |v. |n, |p ; |v',
924                                            'a ; |v. |p ; |v',
925                                            'a. |p ; |v',
926                                    ],
927                            );
928                    },
929                    [
930                            [440, " ", " ",
931                                    ["a", "a-1-1"],
932                                    ["x", "x-1-1"],
933                                    ["v", "v-1-1"],
934                                    ["n", "h-1-1"],
935                                    ["p", "i-1-1"],
936                                    ["v", "w-1-1"],
937                            ],
938                            [440, " ", " ", ["a", "a-2-1"], ["p", "i-2-1"], ["v", "v-2-1"]],
939                            [440, " ", " ", ["a", "a-3-1"], ["p", "i-3-1"], ["v", "v-3-1"]],
940                            [440, " ", " ",
941                                    ["a", "a-4-1"],
942                                    ["v", "v-4-1"],
943                                    ["p", "i-4-1"],
944                                    ["v", "w-4-1"],
945                            ],
946                    ],
947            );
948  }  }
949    

Legend:
Removed from v.980  
changed lines
  Added in v.1014

  ViewVC Help
Powered by ViewVC 1.1.26