/[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 1026 by dpavlin, Sun Nov 11 13:47:43 2007 UTC revision 1062 by dpavlin, Wed Nov 21 10:09:55 2007 UTC
# Line 3  Line 3 
3  use strict;  use strict;
4  use blib;  use blib;
5    
6  use Test::More tests => 7;  use Test::More tests => 325;
7    
8  BEGIN {  BEGIN {
9          use_ok( 'WebPAC::Test' );          use_ok( 'WebPAC::Test' );
# 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 42  my $rec = { Line 44  my $rec = {
44                  'w' => 'w-6-1',                  'w' => 'w-6-1',
45          },{          },{
46                  'a' => 'a-7-1',                  'a' => 'a-7-1',
47            },{
48                    'a' => 'a-8-1',
49                    'v' => 'v-8-1',
50            },{
51                    'v' => 'v-9-1',
52            },{
53                    'v' => '0',
54          }],          }],
55  };  };
56    
57  ok( _set_ds( $rec ), '_set_ds' );  sub test_marc_template {
58            my $rec = shift;
59    
60            ok( _clean_ds(), '_clean_ds' );
61            ok( _set_ds( $rec ), '_set_ds' );
62    
63            ok( marc_indicators( 440, '0', '1' ), 'marc_indicators' );
64    
65            ok( marc_template(
66                    from => 225, to => 440,
67                    subfields_rename => [
68                            'a' => 'a',
69                            'x' => 'x',
70                            'v' => 'v',
71                            'h' => 'n',
72                            'i' => 'p',
73                            'w' => 'v',
74                    ],
75                    isis_template => [
76                            'a ; |v. |i',
77                            'a. |i ; |w',
78                    ],
79                    marc_template => [
80                            'a',
81                            'a ;|v',
82                            'a.|p',
83                            'a, |x ; |v. |n, |p ; |v',
84                            'a ; |v. |p ; |v',
85                            'v',
86                    ],
87            ), 'marc_template' );
88    
89  ok( marc_template(          ok(my $marc = WebPAC::Normalize::MARC::_get_marc_fields(), "_get_marc_fields");
90          from => 225, to => 440,          diag " _get_marc_fields = ",dump( $marc ) if $debug;
91          subfields_rename => [  
92                  'a' => 'a',          ok( marc_indicators( 440, 'x', 'y' ), 'marc_indicators' );
93                  'x' => 'x',  
94                  'v' => 'v',          return $marc;
95                  'h' => 'n',  }
96                  'i' => 'p',  
97                  'w' => 'v',  my $marc_out = [
98          ],          [440, "0", "1", "a", "a-1-1, ", "x", "x-1-1 ; ", "v", "v-1-1. ", "n", "h-1-1, ", "p", "i-1-1 ; ", "v", "w-1-1"],
99          isis_template => [          [440, "0", "1", "a", "a-2-1 ; ", "v", "v-2-1. ", "p", "i-2-1"],
100                  'a ; |v. |i',          [440, "0", "1", "a", "a-3-1 ; ", "v", "v-3-1. ", "p", "i-3-1"],
101                  'a. |i ; |w',          [440, "0", "1", "a", "a-4-1 ; ", "v", "v-4-1. ", "p", "i-4-1 ; ", "v", "w-4-1"],
102          ],          [440, "0", "1", "a", "a-5-1 ; ", "v", "v-5-1. ", "p", "i-5-1"],
103          marc_template => [          [440, "0", "1", "a", "a-6-1. ", "p", "i-6-1 ; ", "v", "w-6-1"],
104                  'a',          [440, "0", "1", "a", "a-7-1"],
105                  'a, |x ; |v. |n, |p ; |v',          [440, "0", "1", "a", "a-8-1 ;", "v", "v-8-1"],
106                  'a ; |v. |p ; |v',          [440, "0", "1", "v", "v-9-1"],
107          ],          [440, 0, 1, "v", 0],
108  ), 'marc_template' );  ];
109    
110  ok(my $marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");  is_deeply( test_marc_template($rec), $marc_out , 'is_deeply');
111  diag dump( $marc ) if $debug;  
112    my $max_occ = $#{ $rec->{225} };
113  is_deeply( $marc,  
114          [  foreach my $from ( 0 .. $max_occ - 1 ) {
115                  [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", ],          foreach my $to ( $from + 1 .. $max_occ ) {
116                  [440, " ", " ", "a", "a-2-1", "v", "v-2-1", "p", "i-2-1"],                  my @orig_rec = @{ $rec->{225} };
117                  [440, " ", " ", "a", "a-3-1", "v", "v-3-1", "p", "i-3-1"],                  my $new_rec = {
118                  [440, " ", " ", "a", "a-4-1", "v", "v-4-1", "p", "i-4-1", "v", "w-4-1"],                          225 => [ splice( @orig_rec, $from, $to ) ],
119                  [440, " ", " ", "a", "a-5-1", "v", "v-5-1", "p", "i-5-1"],                  };
120                  [440, " ", " ", "a", "a-6-1", "p", "i-6-1", "v", "w-6-1"],                  diag "$from-$to new_rec = ",dump( $new_rec ) if $debug;
121                  [440, " ", " ", "a", "a-7-1"],  
122          ],                  my @expect = @$marc_out;
123  'is_deeply');                  my $expect_marc = [ splice( @expect, $from, $to ) ];
124                    diag "$from-$to expect_marc = ",dump( $expect_marc ) if $debug;
125    
126                    is_deeply( test_marc_template($new_rec), $expect_marc, "$from-$to is_deeply");
127    
128            }
129    }

Legend:
Removed from v.1026  
changed lines
  Added in v.1062

  ViewVC Help
Powered by ViewVC 1.1.26