/[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 506 by dpavlin, Mon May 15 09:59:05 2006 UTC revision 774 by dpavlin, Fri Nov 3 20:56:21 2006 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl -w  #!/usr/bin/perl -w
2    
3  use Test::More tests => 62;  use Test::More tests => 104;
4  use Test::Exception;  use Test::Exception;
5  use Cwd qw/abs_path/;  use Cwd qw/abs_path/;
6  use blib;  use blib;
7  use strict;  use strict;
8    
9  use Data::Dumper;  use Data::Dump qw/dump/;
10    
11  BEGIN {  BEGIN {
12  use_ok( 'WebPAC::Input::ISIS' );  use_ok( 'WebPAC::Input::ISIS' );
13  use_ok( 'WebPAC::Input::MARC' );  use_ok( 'WebPAC::Input::MARC' );
14  }  }
15    
16  my $debug = 1;  my $debug = shift @ARGV;
17  my $no_log = $debug ? 0 : 1;  my $no_log = $debug ? 0 : 1;
18    
19  ok(my $abs_path = abs_path($0), "abs_path");  ok(my $abs_path = abs_path($0), "abs_path");
# Line 23  my $module = 'WebPAC::Input::ISIS'; Line 23  my $module = 'WebPAC::Input::ISIS';
23  diag "testing with $module";  diag "testing with $module";
24    
25  throws_ok { my $input = new WebPAC::Input( ) } qr/module/, "need module";  throws_ok { my $input = new WebPAC::Input( ) } qr/module/, "need module";
26  ok(my $input = new WebPAC::Input( module => $module, no_log => $no_log, no_progress_bar => 1, stats => 1 ), "new");  ok(my $input = new WebPAC::Input( module => $module, no_log => $no_log, no_progress_bar => 1, stats => 1 ), "new $module");
27  ok(my $input_lm = new WebPAC::Input( module => $module, low_mem => 1, no_log => $no_log, no_progress_bar => 1 ), "new $module");  ok(my $input_lm = new WebPAC::Input( module => $module, no_log => $no_log, no_progress_bar => 1 ), "new $module");
28    
29  throws_ok { $input->open( ) } qr/path/, "need path";  throws_ok { $input->open( ) } qr/path/, "need path";
30    
31  throws_ok { $input->open( path => '/dev/null', ) } qr/can't find database/ , "open";  throws_ok { $input->open( path => '/dev/null', ) } qr/can't find database/ , "open";
32    
33  ok($input->open( path => "$abs_path/winisis/BIBL" ), "open");  my $store;
34  ok($input_lm->open( path => "$abs_path/winisis/BIBL", low_mem => 1 ), "open");  
35    ok($input->open( path => "$abs_path/winisis/BIBL" ), "open winisis");
36    ok($input_lm->open(
37            path => "$abs_path/winisis/BIBL",
38            save_row => sub {
39                    my $a = shift;
40                    $store->{ $a->{id} } = $a->{row};
41            },
42            load_row => sub {
43                    my $a = shift;
44                    return defined($store->{ $a->{id} }) &&
45                            $store->{ $a->{id} };
46            },
47    ), "open winisis");
48    
49    cmp_ok( keys %$store, '==', 5, 'have 5 rows');
50    
51    foreach my $i ( 1 .. 5 ) {
52            ok(my $r = $store->{$i}, "row $i");
53            ok($r->{'000'}, "have 000");
54            isa_ok($r->{'000'}, 'ARRAY', "is ARRAY");
55            cmp_ok($r->{'000'}->[0], '==', $i, 'sane value');
56    }
57    
58    diag "store = ",dump( $store ) if ($debug);
59    
60  sub test_after_open($) {  sub test_after_open($) {
61          my $input = shift;          my $input = shift;
# Line 53  sub test_fetch($$) { Line 77  sub test_fetch($$) {
77                  ok(my $rec = $input->fetch, "fetch $mfn");                  ok(my $rec = $input->fetch, "fetch $mfn");
78                  cmp_ok($input->pos, '==', $mfn, "pos $mfn");                  cmp_ok($input->pos, '==', $mfn, "pos $mfn");
79                  push @db, $rec;                  push @db, $rec;
80                    ok(my $dump = $input->dump_ascii, "dump_ascii $mfn");
81                    diag $dump if ($debug);
82          }          }
83    
84          return @db;          return @db;
# Line 68  sub test_start_limit($$$$) { Line 94  sub test_start_limit($$$$) {
94    
95          diag "offset $s, limit: $l, expected: $e";          diag "offset $s, limit: $l, expected: $e";
96    
97          ok($s = $input->open( path => "$abs_path/winisis/BIBL", offset => $s, limit => $l, debug => 1 ), "open");          ok($s = $input->open( path => "$abs_path/winisis/BIBL", offset => $s, limit => $l, debug => $debug ), "open winisis");
98          cmp_ok($s, '==', $size, "db size from open = $size");          cmp_ok($s, '==', $size, "db size from open = $size");
99          cmp_ok($input->size, '==', $e, "input->size = $e");          cmp_ok($input->size, '==', $e, "input->size = $e");
100  }  }
# Line 79  test_start_limit($input, 3, $size, $size Line 105  test_start_limit($input, 3, $size, $size
105  test_start_limit($input, 1, $size + 2, $size);  test_start_limit($input, 1, $size + 2, $size);
106    
107  ok(my $s = $input->stats, 'stats');  ok(my $s = $input->stats, 'stats');
108  diag "stats: ",Dumper($s);  diag "stats:\n$s";
109    
110  $module = 'WebPAC::Input::MARC';  $module = 'WebPAC::Input::MARC';
111  diag "testing with $module";  diag "testing with $module";
112    
113  ok($input = new WebPAC::Input( module => $module, low_mem => 1, no_log => $no_log, no_progress_bar => 1 ), "new $module");  ok($input = new WebPAC::Input( module => $module, no_log => $no_log, no_progress_bar => 1 ), "new $module");
114    
115  ok($input->open( path => "$abs_path/data/marc.iso" ), "open");  ok($input->open( path => "$abs_path/data/marc.iso" ), "open marc.iso");
116    
117  test_after_open($input);  test_after_open($input);
118    
119  test_fetch($input, $input->size);  test_fetch($input, $input->size);
120    
121    # test modify_record
122    $module = 'WebPAC::Input::ISIS';
123    ok($input = new WebPAC::Input( module => $module, no_log => $no_log, no_progress_bar => 1 ), "new $module");
124    
125    ok($input->open( path => "$abs_path/modify_isis/LIBRI", ), "open modify_isis (plain)");
126    ok(my $rec_p = $input->fetch, 'fetch');
127    
128    ok($input->open(
129            path => "$abs_path/modify_isis/LIBRI",
130            modify_records => {
131                    200 => {
132                            '*' => { '^c' => '. ' },
133                    }
134            },
135    ), "open modify_isis (with modify_records)");
136    
137    ok(my $rec = $input->fetch, 'fetch');
138    
139    cmp_ok($rec_p->{200}->[0]->{f} . '. ' . $rec_p->{200}->[0]->{c}, 'eq' ,$rec->{200}->[0]->{f}, 'modify_records working');
140    

Legend:
Removed from v.506  
changed lines
  Added in v.774

  ViewVC Help
Powered by ViewVC 1.1.26