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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1325 - (hide annotations)
Tue Feb 2 18:03:17 2010 UTC (14 years, 3 months ago) by dpavlin
File MIME type: application/x-troff
File size: 860 byte(s)
added offset and limit [0.02]

1 dpavlin 1231 #!/usr/bin/perl -w
2    
3     use strict;
4     use lib 'lib';
5    
6 dpavlin 1325 use Test::More tests => 28;
7 dpavlin 1231
8     BEGIN {
9     use_ok( 'WebPAC::Test' );
10     use_ok( 'WebPAC::Input' );
11     }
12    
13     my $module = 'WebPAC::Input::Koha';
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 dpavlin 1325 my $path = '/tmp/koha.marc';
23    
24 dpavlin 1231 ok(my $db = $input->open(
25 dpavlin 1325 path => $path,
26 dpavlin 1231 dsn => 'dbi:mysql:database=koha',
27     user => $ENV{KOHA_USER},
28     passwd => $ENV{KOHA_PASSWD},
29 dpavlin 1325 limit => 7,
30     offset => 3,
31 dpavlin 1231 ), "open");
32     ok(my $size = $input->size, "size");
33     cmp_ok( $size, '==', 7, 'size ok' );
34    
35 dpavlin 1325 foreach my $mfn ( 3 + 1 ... 3 + $size ) {
36 dpavlin 1231 my $rec = $input->fetch;
37     ok($rec, "fetch $mfn");
38     cmp_ok($rec->{'000'}->[0], '==', $mfn, 'has mfn');
39     cmp_ok($input->pos, '==', $mfn, "pos $mfn");
40     diag "rec: ", dump($rec), "\n" if $debug;
41     }
42    
43 dpavlin 1325 ok( unlink $path, "unlink $path" );

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26