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

Annotation of /trunk/t/2-input-gutenberg.t

Parent Directory Parent Directory | Revision Log Revision Log


Revision 949 - (hide annotations)
Thu Nov 1 00:16:48 2007 UTC (16 years, 6 months ago) by dpavlin
File MIME type: application/x-troff
File size: 876 byte(s)
 r1433@llin:  dpavlin | 2007-10-31 22:48:02 +0100
 HUGE swiping changes to implement new testing architecture
 based on all new WebPAC::Test module which makes
 test writing a joy

1 dpavlin 777 #!/usr/bin/perl -w
2    
3 dpavlin 949 use strict;
4 dpavlin 777 use blib;
5    
6 dpavlin 949 use Test::More tests => 300;
7 dpavlin 777
8     BEGIN {
9 dpavlin 949 use_ok( 'WebPAC::Test' );
10 dpavlin 777 use_ok( 'WebPAC::Input' );
11     }
12    
13     my $module = 'WebPAC::Input::Gutenberg';
14     diag "testing with $module", $debug ? ' with debug' : '';
15    
16     ok(my $input = new WebPAC::Input(
17     module => $module,
18     no_progress_bar => 1,
19 dpavlin 949 %LOG
20 dpavlin 777 ), "new");
21    
22     ok(my $db = $input->open(
23 dpavlin 781 path => "$abs_path/data/gutenberg-small.rdf"
24 dpavlin 777 ), "open");
25     ok(my $size = $input->size, "size");
26    
27     diag "size: $size" if ($debug);
28    
29     ok(defined($input->{ll_db}->{_rows}), 'have ll_db->rows');
30    
31     foreach my $mfn ( 1 ... $size ) {
32    
33     ok(defined($input->{ll_db}->{_rows}->{$mfn}), "have ll_db->_rows->$mfn");
34    
35     diag "row: ", dump( $input->{ll_db}->{_rows}->{$mfn} ) if ($debug);
36    
37     my $rec = $input->fetch;
38    
39     ok($rec, "fetch $mfn");
40    
41     cmp_ok($input->pos, '==', $mfn, "pos $mfn");
42    
43     diag "rec: ", dump($rec), "\n" if ($debug);
44     }
45    

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26