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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1343 - (hide annotations)
Sat Oct 16 17:38:47 2010 UTC (13 years, 7 months ago) by dpavlin
File MIME type: application/x-troff
File size: 841 byte(s)
tab separated values input module

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

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26