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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 989 - (hide annotations)
Sun Nov 4 13:26:06 2007 UTC (16 years, 6 months ago) by dpavlin
File MIME type: application/x-troff
File size: 819 byte(s)
 r1517@llin:  dpavlin | 2007-11-04 14:26:05 +0100
 New rewamp of WebPAC::Input::XML with added mungle rules (perl code really)
 to modify xml hash returned from XML::Simple

1 dpavlin 968 #!/usr/bin/perl -w
2    
3     use strict;
4     use blib;
5    
6 dpavlin 989 use Test::More tests => 18;
7 dpavlin 968
8     BEGIN {
9     use_ok( 'WebPAC::Test' );
10     use_ok( 'WebPAC::Input' );
11     }
12    
13     my $module = 'WebPAC::Input::XML';
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     throws_ok { $input->open( path => '/tmp/does_not_exit', %LOG ) } qr/can't find path/, 'open with non-existant path';
23    
24     ok(my $db = $input->open(
25 dpavlin 989 path => "$abs_path/data/xml/",
26     mungle => "$abs_path/conf/mungle/xml.pl",
27 dpavlin 968 ), "open");
28     ok(my $size = $input->size, "size");
29    
30     foreach my $mfn ( 1 ... $size ) {
31     my $rec = $input->fetch;
32     if ($mfn <= 10 || $mfn == 20) {
33     ok($rec, "fetch $mfn");
34     } else {
35     ok(! $rec, "empty $mfn");
36     }
37    
38     cmp_ok($input->pos, '==', $mfn, "pos $mfn");
39    
40     diag "rec: ", dump($rec), "\n" if $debug;
41     }
42    

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26