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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1366 - (hide annotations)
Thu Dec 15 21:40:02 2011 UTC (12 years, 5 months ago) by dpavlin
File MIME type: application/x-troff
File size: 829 byte(s)
import OAI repository
1 dpavlin 1366 #!/usr/bin/perl -w
2    
3     use strict;
4     use lib 'lib';
5    
6     use Test::More tests => 28;
7    
8     BEGIN {
9     use_ok( 'WebPAC::Test' );
10     use_ok( 'WebPAC::Input' );
11     }
12    
13     my $module = 'WebPAC::Input::OAI';
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     my $path = '/tank/oai/hrcak';
23    
24     ok(my $db = $input->open(
25     url => 'http://hrcak.srce.hr/oai/',
26     from => '2010-01-01',
27     until => '2011-12-31',
28     path => 'var/oai/hrcak',
29     ), "open");
30     ok(my $size = $input->size, "size");
31     cmp_ok( $size, '==', 7, 'size ok' );
32    
33     foreach my $mfn ( 3 + 1 ... 3 + $size ) {
34     my $rec = $input->fetch;
35     ok($rec, "fetch $mfn");
36     cmp_ok($rec->{'000'}->[0], '==', $mfn, 'has mfn');
37     cmp_ok($input->pos, '==', $mfn, "pos $mfn");
38     diag "rec: ", dump($rec), "\n" if $debug;
39     }
40    
41     ok( unlink $path, "unlink $path" );

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26