/[webpac2]/trunk/t/3-normalize-marc.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-marc.t

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1031 by dpavlin, Sun Nov 11 19:58:57 2007 UTC revision 1037 by dpavlin, Mon Nov 12 11:17:19 2007 UTC
# Line 11  BEGIN { Line 11  BEGIN {
11          use_ok( 'WebPAC::Normalize::MARC' );          use_ok( 'WebPAC::Normalize::MARC' );
12  }  }
13    
14    _debug( $debug - 1 ) if $debug > 1;
15    
16  my $rec = {  my $rec = {
17          '225' => [{          '225' => [{
18                  'a' => 'a-1-1',                  'a' => 'a-1-1',
# Line 50  my $rec = { Line 52  my $rec = {
52          }],          }],
53  };  };
54    
55  ok( _set_ds( $rec ), '_set_ds' );  sub test_marc_template {
56            my $rec = shift;
57    
58            ok( _set_ds( $rec ), '_set_ds' );
59    
60  ok( marc_template(          ok( marc_template(
61          from => 225, to => 440,                  from => 225, to => 440,
62          subfields_rename => [                  subfields_rename => [
63                  'a' => 'a',                          'a' => 'a',
64                  'x' => 'x',                          'x' => 'x',
65                  'v' => 'v',                          'v' => 'v',
66                  'h' => 'n',                          'h' => 'n',
67                  'i' => 'p',                          'i' => 'p',
68                  'w' => 'v',                          'w' => 'v',
69          ],                  ],
70          isis_template => [                  isis_template => [
71                  'a ; |v. |i',                          'a ; |v. |i',
72                  'a. |i ; |w',                          'a. |i ; |w',
73          ],                  ],
74          marc_template => [                  marc_template => [
75                  'a',                          'a',
76                  'a ;|v',                          'a ;|v',
77                  'a.|p',                          'a.|p',
78                  'a, |x ; |v. |n, |p ; |v',                          'a, |x ; |v. |n, |p ; |v',
79                  'a ; |v. |p ; |v',                          'a ; |v. |p ; |v',
80                  'v',                          'v',
81          ],                  ],
82  ), 'marc_template' );          ), 'marc_template' );
83    
84  ok(my $marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");          ok(my $marc = WebPAC::Normalize::MARC::_get_marc_fields(), "_get_marc_fields");
85  diag " _get_marc_fields = ",dump( $marc ) if $debug;          diag " _get_marc_fields = ",dump( $marc ) if $debug;
86    
87  is_deeply( $marc, [          return $marc;
88    }
89    
90    my $marc_out = [
91          [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"],          [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"],
92          [440, " ", " ", "v", "v-9-1"],          [440, " ", " ", "v", "v-9-1"],
93          [440, " ", " ", "a", "a-2-1 ; ", "v", "v-2-1. ", "p", "i-2-1"],          [440, " ", " ", "a", "a-2-1 ; ", "v", "v-2-1. ", "p", "i-2-1"],
# Line 89  is_deeply( $marc, [ Line 97  is_deeply( $marc, [
97          [440, " ", " ", "a", "a-6-1. ", "p", "i-6-1 ; ", "v", "w-6-1"],          [440, " ", " ", "a", "a-6-1. ", "p", "i-6-1 ; ", "v", "w-6-1"],
98          [440, " ", " ", "a", "a-7-1"],          [440, " ", " ", "a", "a-7-1"],
99          [440, " ", " ", "a", "a-8-1 ;", "v", "v-8-1"],          [440, " ", " ", "a", "a-8-1 ;", "v", "v-8-1"],
100  ], 'is_deeply');  ];
101    
102    is_deeply( test_marc_template($rec), $marc_out , 'is_deeply');
103    
104    __END__
105    
106    my $max_occ = $#{ $rec->{225} };
107    
108    foreach my $from ( 0 .. $max_occ - 1 ) {
109            foreach my $to ( 1 .. $max_occ ) {
110                    my $new_rec = {
111                            225 => [ splice( @{ $rec->{225} }, $from, $to ) ],
112                    };
113                    diag "new_rec = ",dump( $new_rec ) if $debug;
114            
115                    my $expect_marc = [ splice( @{ $marc_out }, $from, $to ) ];
116                    diag "expect_marc = ",dump( $expect_marc ) if $debug;
117    
118                    is_deeply( [ test_marc_template($rec) ], $expect_marc, 'is_deeply');
119            }
120    }

Legend:
Removed from v.1031  
changed lines
  Added in v.1037

  ViewVC Help
Powered by ViewVC 1.1.26