added test file
[webpac2] / t / 2-input-ak.t
1 #!/usr/bin/perl -w
2
3 use strict;
4 use lib 'lib';
5
6 use Test::More tests => 12;
7
8 BEGIN {
9 use_ok( 'WebPAC::Test' );
10 use_ok( 'WebPAC::Input' );
11 }
12
13 my $module = 'WebPAC::Input::AK';
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/ak.txt"
24         path => "/data/FF/AKF/novo/2015-04-22/zagreb_vollstaendig_20150422.csv",
25 ), "open");
26 ok(my $size = $input->size, "size");
27 cmp_ok( $size, '==', 3, 'size ok' );
28
29 foreach my $mfn ( 1 ... $size ) {
30         my $rec = $input->fetch;
31
32         ok( exists($rec->{TI}), 'TI' );
33
34         cmp_ok($input->pos, '==', $mfn, "pos $mfn");
35
36         diag "rec: ", dump($rec), "\n" if $debug;
37 }
38