/[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 1079 - (hide annotations)
Wed Nov 28 22:52:59 2007 UTC (16 years, 6 months ago) by dpavlin
File MIME type: application/x-troff
File size: 751 byte(s)
test mfn

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

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26