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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 904 - (hide annotations)
Fri Oct 12 12:07:35 2007 UTC (16 years, 7 months ago) by dpavlin
File MIME type: application/x-troff
File size: 831 byte(s)
 r1355@llin:  dpavlin | 2007-10-12 14:07:29 +0200
 fix empty tags

1 dpavlin 898 #!/usr/bin/perl -w
2    
3 dpavlin 899 use Test::More tests => 9;
4 dpavlin 898 use Test::Exception;
5     use Cwd qw/abs_path/;
6     use blib;
7     use strict;
8    
9     use Data::Dump qw/dump/;
10    
11 dpavlin 904 my $debug = @ARGV ? 1 : 0;
12 dpavlin 898
13     BEGIN {
14     use_ok( 'WebPAC::Input' );
15     }
16    
17     ok(my $abs_path = abs_path($0), "abs_path");
18 dpavlin 904 $abs_path =~ s#/[^/]*$#/#; #
19 dpavlin 898
20     my $module = 'WebPAC::Input::ISI';
21     diag "testing with $module";
22    
23     ok(my $input = new WebPAC::Input(
24     module => $module,
25     no_log => 0,
26     no_progress_bar => 1,
27     debug => $debug,
28     ), "new");
29    
30     ok(my $db = $input->open(
31     path => "$abs_path/data/recs.txt"
32     ), "open");
33     ok(my $size = $input->size, "size");
34    
35     foreach my $mfn ( 1 ... $size ) {
36     my $rec = $input->fetch;
37     if ($mfn <= 10 || $mfn == 20) {
38     ok($rec, "fetch $mfn");
39     } else {
40     ok(! $rec, "empty $mfn");
41     }
42    
43     cmp_ok($input->pos, '==', $mfn, "pos $mfn");
44    
45 dpavlin 904 diag "rec: ", dump($rec), "\n" if $debug;
46 dpavlin 898 }
47    

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26