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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1054 - (hide annotations)
Tue Nov 20 09:30:56 2007 UTC (16 years, 5 months ago) by dpavlin
File MIME type: application/x-troff
File size: 669 byte(s)
 r1645@llin:  dpavlin | 2007-11-19 23:05:23 +0100
 added experimenal (still not working) WebPAC::Input::PDF

1 dpavlin 1054 #!/usr/bin/perl -w
2    
3     use strict;
4     use blib;
5    
6     use Test::More tests => 9;
7    
8     BEGIN {
9     use_ok( 'WebPAC::Test' );
10     use_ok( 'WebPAC::Input' );
11     }
12    
13     my $module = 'WebPAC::Input::PDF';
14     diag "testing with $module";
15    
16     ok(my $input = new WebPAC::Input(
17     module => $module,
18     no_progress_bar => 1,
19     %LOG
20     ), "new");
21    
22     ok(my $db = $input->open(
23     path => "$abs_path/data/UFOReport1998.pdf"
24     ), "open");
25     ok(my $size = $input->size, "size");
26    
27     foreach my $mfn ( 1 ... $size ) {
28     my $rec = $input->fetch;
29     if ($mfn <= 10 || $mfn == 20) {
30     ok($rec, "fetch $mfn");
31     } else {
32     ok(! $rec, "empty $mfn");
33     }
34    
35     cmp_ok($input->pos, '==', $mfn, "pos $mfn");
36    
37     diag "rec: ", dump($rec), "\n" if $debug;
38     }
39    

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26