/[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 1029 by dpavlin, Sun Nov 11 17:11:33 2007 UTC revision 1038 by dpavlin, Mon Nov 12 11:57:00 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( _clean_ds(), '_clean_ds' );
59            ok( _set_ds( $rec ), '_set_ds' );
60    
61            ok( marc_template(
62                    from => 225, to => 440,
63                    subfields_rename => [
64                            'a' => 'a',
65                            'x' => 'x',
66                            'v' => 'v',
67                            'h' => 'n',
68                            'i' => 'p',
69                            'w' => 'v',
70                    ],
71                    isis_template => [
72                            'a ; |v. |i',
73                            'a. |i ; |w',
74                    ],
75                    marc_template => [
76                            'a',
77                            'a ;|v',
78                            'a.|p',
79                            'a, |x ; |v. |n, |p ; |v',
80                            'a ; |v. |p ; |v',
81                            'v',
82                    ],
83            ), 'marc_template' );
84    
85            ok(my $marc = WebPAC::Normalize::MARC::_get_marc_fields(), "_get_marc_fields");
86            diag " _get_marc_fields = ",dump( $marc ) if $debug;
87    
88            return $marc;
89    }
90    
91    my $marc_out = [
92            [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"],
93            [440, " ", " ", "a", "a-2-1 ; ", "v", "v-2-1. ", "p", "i-2-1"],
94            [440, " ", " ", "a", "a-3-1 ; ", "v", "v-3-1. ", "p", "i-3-1"],
95            [440, " ", " ", "a", "a-4-1 ; ", "v", "v-4-1. ", "p", "i-4-1 ; ", "v", "w-4-1"],
96            [440, " ", " ", "a", "a-5-1 ; ", "v", "v-5-1. ", "p", "i-5-1"],
97            [440, " ", " ", "a", "a-6-1. ", "p", "i-6-1 ; ", "v", "w-6-1"],
98            [440, " ", " ", "a", "a-7-1"],
99            [440, " ", " ", "a", "a-8-1 ;", "v", "v-8-1"],
100            [440, " ", " ", "v", "v-9-1"],
101    ];
102    
103  ok( marc_template(  is_deeply( test_marc_template($rec), $marc_out , 'is_deeply');
104          from => 225, to => 440,  
105          subfields_rename => [  my $max_occ = $#{ $rec->{225} };
106                  'a' => 'a',  
107                  'x' => 'x',  foreach my $from ( 0 .. $max_occ - 1 ) {
108                  'v' => 'v',          foreach my $to ( $from + 1 .. $max_occ ) {
109                  'h' => 'n',                  my @orig_rec = @{ $rec->{225} };
110                  'i' => 'p',                  my $new_rec = {
111                  'w' => 'v',                          225 => [ splice( @orig_rec, $from, $to ) ],
112          ],                  };
113          isis_template => [                  diag "$from-$to new_rec = ",dump( $new_rec ) if $debug;
114                  'a ; |v. |i',  
115                  'a. |i ; |w',                  my @expect = @$marc_out;
116          ],                  my $expect_marc = [ splice( @expect, $from, $to ) ];
117          marc_template => [                  diag "$from-$to expect_marc = ",dump( $expect_marc ) if $debug;
118                  'a',  
119                  'a ;|v',                  is_deeply( test_marc_template($new_rec), $expect_marc, "$from-$to is_deeply");
120                  'a.|p',  
121                  'a, |x ; |v. |n, |p ; |v',          }
122                  'a ; |v. |p ; |v',  }
                 'v',  
         ],  
 ), 'marc_template' );  
   
 ok(my $marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");  
 diag dump( $marc ) if $debug;  
   
 is_deeply( $marc,  
         [  
                 [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-2-1", "v", "v-2-1", "p", "i-2-1"],  
                 [440, " ", " ", "a", "a-3-1", "v", "v-3-1", "p", "i-3-1"],  
                 [440, " ", " ", "a", "a-4-1", "v", "v-4-1", "p", "i-4-1", "v", "w-4-1"],  
                 [440, " ", " ", "a", "a-5-1", "v", "v-5-1", "p", "i-5-1"],  
                 [440, " ", " ", "a", "a-6-1", "p", "i-6-1", "v", "w-6-1"],  
                 [440, " ", " ", "a", "a-7-1"],  
         ],  
 'is_deeply');  

Legend:
Removed from v.1029  
changed lines
  Added in v.1038

  ViewVC Help
Powered by ViewVC 1.1.26