/[webpac2]/trunk/t/2-input.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/2-input.t

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

revision 799 by dpavlin, Sun Feb 4 15:09:01 2007 UTC revision 1256 by dpavlin, Tue Jul 28 12:40:46 2009 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl -w  #!/usr/bin/perl -w
2    
 use Test::More tests => 108;  
 use Test::Exception;  
 use Cwd qw/abs_path/;  
 use blib;  
3  use strict;  use strict;
4    use lib 'lib';
5    
6  use Data::Dump qw/dump/;  use Test::More tests => 124;
7    
8  BEGIN {  BEGIN {
9    use_ok( 'WebPAC::Test' );
10  use_ok( 'WebPAC::Input::ISIS' );  use_ok( 'WebPAC::Input::ISIS' );
11  use_ok( 'WebPAC::Input::MARC' );  use_ok( 'WebPAC::Input::MARC' );
12  use_ok( 'WebPAC::Input::Test' );  use_ok( 'WebPAC::Input::Test' );
13  }  }
14    
15  my $debug = shift @ARGV;  $LOG{no_progress_bar} = 1;
 my $no_log = $debug ? 0 : 1;  
16    
17  ok(my $abs_path = abs_path($0), "abs_path");  warn "# LOG = ",dump( %LOG );
 $abs_path =~ s#/[^/]*$#/#;  
18    
19  my $module = 'WebPAC::Input::ISIS';  my $module = 'WebPAC::Input::ISIS';
20  diag "testing with $module";  diag "testing with $module";
21    
22  throws_ok { my $input = new WebPAC::Input( ) } qr/module/, "need module";  throws_ok { my $input = new WebPAC::Input( %LOG ) } qr/module/, "need module";
23  ok(my $input = new WebPAC::Input( module => $module, no_log => $no_log, no_progress_bar => 1, stats => 1 ), "new $module");  ok(my $input = new WebPAC::Input( module => $module, stats => 1, \%LOG ), "new $module");
24  ok(my $input_lm = new WebPAC::Input( module => $module, no_log => $no_log, no_progress_bar => 1 ), "new $module");  ok(my $input_lm = new WebPAC::Input( module => $module, \%LOG ), "new $module");
25    
26  throws_ok { $input->open( ) } qr/path/, "need path";  throws_ok { $input->open( ) } qr/path/, "need path";
27    
# Line 79  sub test_fetch($$) { Line 75  sub test_fetch($$) {
75                  cmp_ok($input->pos, '==', $mfn, "pos $mfn");                  cmp_ok($input->pos, '==', $mfn, "pos $mfn");
76                  push @db, $rec;                  push @db, $rec;
77                  ok(my $dump = $input->dump_ascii, "dump_ascii $mfn");                  ok(my $dump = $input->dump_ascii, "dump_ascii $mfn");
78                    # XXX test count will help us keep this test in-line :-)
79                    ok($rec->{leader}, "leader $mfn") if $rec->{leader};
80                  diag $dump if ($debug);                  diag $dump if ($debug);
81          }          }
82    
# Line 105  test_start_limit($input, $size, 3, 0); Line 103  test_start_limit($input, $size, 3, 0);
103  test_start_limit($input, 3, $size, $size - 2);  test_start_limit($input, 3, $size, $size - 2);
104  test_start_limit($input, 1, $size + 2, $size);  test_start_limit($input, 1, $size + 2, $size);
105    
106  ok(my $s = $input->stats, 'stats');  ok(my $s = $input->stats, "$module stats");
107  diag "stats:\n$s" if ($debug);  diag "stats:\n$s" if ($debug);
108    
109  $module = 'WebPAC::Input::MARC';  $module = 'WebPAC::Input::MARC';
110  diag "testing with $module";  diag "testing with $module";
111    
112  ok($input = new WebPAC::Input( module => $module, no_log => $no_log, no_progress_bar => 1 ), "new $module");  ok($input = new WebPAC::Input( module => $module, stats => 1, %LOG ), "new $module");
113    
114  ok($input->open( path => "$abs_path/data/marc.iso" ), "open marc.iso");  ok($input->open( path => "$abs_path/data/marc.iso" ), "open marc.iso");
115    
# Line 119  test_after_open($input); Line 117  test_after_open($input);
117    
118  test_fetch($input, $input->size);  test_fetch($input, $input->size);
119    
120    ok(my $s = $input->stats, "$module stats");
121    
122    diag "stats:\n$s" if ($debug);
123  # test modify_record  # test modify_record
124  $module = 'WebPAC::Input::Test';  $module = 'WebPAC::Input::Test';
125  ok($input = new WebPAC::Input( module => $module, no_log => $no_log, no_progress_bar => 1, debug => $debug ), "new $module");  ok($input = new WebPAC::Input( module => $module, %LOG ), "new $module");
126    
127  $WebPAC::Input::Test::rec = {  $WebPAC::Input::Test::rec = {
128          '200' => [          '200' => [
# Line 134  $WebPAC::Input::Test::rec = { Line 135  $WebPAC::Input::Test::rec = {
135    
136  $WebPAC::Input::Test::size = 42;  $WebPAC::Input::Test::size = 42;
137    
138  ok($input->open( path => "$abs_path/modify_isis/LIBRI", ), "open modify_isis (plain)");  ok($input->open( path => "/fake/path", ), "open modify_isis (plain)");
139    
140  cmp_ok($input->size, '==', 42, 'size');  cmp_ok($input->size, '==', 42, 'size');
141    
# Line 143  ok(my $rec_p = $input->fetch, 'fetch'); Line 144  ok(my $rec_p = $input->fetch, 'fetch');
144  # modify_records  # modify_records
145    
146  ok($input->open(  ok($input->open(
147          path => "$abs_path/modify_isis/LIBRI",          path => "/another/fake/path",
148          modify_records => {          modify_records => {
149                  200 => {                  200 => {
150                          '*' => { '^c' => '. ' },                          '*' => { '^c' => '. ' },
# Line 156  ok($input->open( Line 157  ok($input->open(
157  throws_ok { $input->seek } qr/without/, 'seek without position';  throws_ok { $input->seek } qr/without/, 'seek without position';
158  cmp_ok($input->seek(0), '==', -1, 'seek');  cmp_ok($input->seek(0), '==', -1, 'seek');
159    
160  my $f = $WebPAC::Input::Test::filter_coderef;  sub test_filter {
161  ok(ref($f) eq 'CODE', 'filter_coderef');  
162            my $f = $WebPAC::Input::Test::filter_coderef;
163            ok(ref($f) eq 'CODE', 'filter_coderef');
164    
165  cmp_ok(          my ($field, $from, $to) = @_;
166          $f->(   '^afoo^cbar^fbing : bong',      200),          cmp_ok( $f->( $from, $field, 1 ), 'eq', $to, "filter $field |$from| -> |$to|" );
167          'eq',   '^afoo. bar^fbing / bong',  }
168          'modify 200'  
169    test_filter(200,
170            '^afoo^cbar^fbing : bong',
171            '^afoo. bar^fbing / bong',
172  );  );
173    
174  # modify_file  # modify_file
# Line 170  cmp_ok( Line 176  cmp_ok(
176  my $modify_file = "$abs_path/conf/modify/test.pl";  my $modify_file = "$abs_path/conf/modify/test.pl";
177    
178  ok($input->open(  ok($input->open(
179          path => "$abs_path/modify_isis/LIBRI",          path => "/and/another/fake/path",
180          modify_file => $modify_file,          modify_file => $modify_file,
181  ), "open (with modify_file $modify_file)");  ), "open (with modify_file $modify_file)");
182    
183  my $f = $WebPAC::Input::Test::filter_coderef;  diag "regexps = ", dump($input->modify_file_regexps( $modify_file )) if ($debug);
 ok(ref($f) eq 'CODE', 'filter_coderef');  
   
 diag "regexps = ", dump($input->modify_file_regexps( $modify_file ));  
   
 sub test_filter {  
         my ($field, $from, $to) = @_;  
         cmp_ok( $f->( $from, $field, 1 ), 'eq', $to, "filter $field |$from| -> |$to|" );  
 }  
184    
185  test_filter(200,  test_filter(200,
186          '^a foo ; bar = baz : zzz',          '^a foo ; bar = baz : zzz',
187          '^a foo^kbar^dbaz^ezzz',          '^a foo^kbar^dbaz : zzz',
188    );
189    
190    # empty subfield removal
191    
192    ok($input->open(
193            path => "/another/fake/path",
194            modify_records => {
195                    900 => {
196                            '^a' => { '^e' => ' : ^e' },
197                    },
198                    901 => {
199                            '^a' => { 'foo' => 'baz' },
200                    },
201            },
202    ), "open (with modify_records for empty subfields)");
203    
204    test_filter(900,
205            '^a^ebar',
206            '^a^ebar',
207  );  );
208    
209    test_filter(900,
210            '^afoo^ebar',
211            '^afoo : ^ebar',
212    );
213    
214    test_filter(901,
215            '^afoo^ebar',
216            '^abaz^ebar',
217    );

Legend:
Removed from v.799  
changed lines
  Added in v.1256

  ViewVC Help
Powered by ViewVC 1.1.26