/[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 796 by dpavlin, Sun Feb 4 12:42:43 2007 UTC revision 797 by dpavlin, Sun Feb 4 13:28:30 2007 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl -w  #!/usr/bin/perl -w
2    
3  use Test::More tests => 104;  use Test::More tests => 108;
4  use Test::Exception;  use Test::Exception;
5  use Cwd qw/abs_path/;  use Cwd qw/abs_path/;
6  use blib;  use blib;
# Line 123  test_fetch($input, $input->size); Line 123  test_fetch($input, $input->size);
123  $module = 'WebPAC::Input::Test';  $module = 'WebPAC::Input::Test';
124  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, no_log => $no_log, no_progress_bar => 1, debug => $debug ), "new $module");
125    
 ok($input->open( path => "$abs_path/modify_isis/LIBRI", ), "open modify_isis (plain)");  
   
126  $WebPAC::Input::Test::rec = {  $WebPAC::Input::Test::rec = {
127          '200' => [ {          '200' => [
128                  'a' => 'foo',                  { 'a' => '[200 a]', 'b' => '[200 b]', 'c' => '[200 c]', 'f' => '[200 f] test : test' },
129                  'b' => 'bar',          ],
                 }, {  
                 'a' => 'baz',  
                 } ],  
130          '900' => [          '900' => [
131                  'foobar',                  { 'x' => 'foobar', },
132                  ],          ],
133  };  };
134    
135  ok($input->size, 'size');  $WebPAC::Input::Test::size = 42;
136    
137    ok($input->open( path => "$abs_path/modify_isis/LIBRI", ), "open modify_isis (plain)");
138    
139    cmp_ok($input->size, '==', 42, 'size');
140    
141  ok(my $rec_p = $input->fetch, 'fetch');  ok(my $rec_p = $input->fetch, 'fetch');
142    
# Line 153  ok($input->open( Line 152  ok($input->open(
152          },          },
153  ), "open modify_isis (with modify_records)");  ), "open modify_isis (with modify_records)");
154    
 ok(my $rec = $input->fetch, 'fetch');  
 diag "fetched rec field 200 = ", dump($rec->{200}) if ($debug);  
   
 cmp_ok($rec_p->{200}->[0]->{f} . '. ' . $rec_p->{200}->[0]->{c}, 'eq' ,$rec->{200}->[0]->{f}, 'modify_records working');  
   
 diag "input = ",dump($input->{data}) if ($debug);  
   
 # break encapsulation, bad! bad!  
 $input->{ll_db}->{_isis_db}->{record} = {  
         900 => 'foo ; bar ; baz',  
 };  
   
 $input->{modify_record} = {  
         900 => {  
                 '*' => [  
                         { ' ; ' => 'a' },  
                         { ' ; ' => 'b' },  
                         { ' ; ' => 'c' },  
                 ],  
         }  
 };  
   
 diag "hacked: ",dump($input, $input->fetch) if ($debug);  
   
155  # seek  # seek
156  throws_ok { $input->seek } qw/without/, 'seek without position';  throws_ok { $input->seek } qr/without/, 'seek without position';
157  cmp_ok($input->seek(0), '==', -1, 'seek');  cmp_ok($input->seek(0), '==', -1, 'seek');
158    
159  ok(my $rec = $input->fetch, 'fetch');  my $f = $WebPAC::Input::Test::filter_coderef;
160  diag "fetched rec = ", dump($rec) if ($debug);  ok(ref($f) eq 'CODE', 'filter_coderef');
161    
162    cmp_ok(
163            $f->(   '^afoo^cbar^fbing : bong',      200),
164            'eq',   '^afoo. bar^fbing / bong',
165            'modify 200'
166    );
167    

Legend:
Removed from v.796  
changed lines
  Added in v.797

  ViewVC Help
Powered by ViewVC 1.1.26