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

Diff of /trunk/t/2-parse.t

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 686 by dpavlin, Sun Sep 24 17:25:04 2006 UTC revision 691 by dpavlin, Sun Sep 24 21:13:36 2006 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl -w  #!/usr/bin/perl -w
2    
3  use strict;  use strict;
4  use Test::More tests => 8;  use Test::More tests => 18;
5  use Test::Exception;  use Test::Exception;
6  use blib;  use blib;
7    
# Line 29  ok( Line 29  ok(
29          my $parser = new WebPAC::Parser(          my $parser = new WebPAC::Parser(
30                  config => new WebPAC::Config( path => $config_path ),                  config => new WebPAC::Config( path => $config_path ),
31                  base_path => $abs_path,                  base_path => $abs_path,
32                    debug => $debug,
33  ), "new");  ), "new");
34    
35  ok($parser->{source}, "source exist");  my $inputs = {
36            foo => [ qw/foo-input1 foo-input2/ ],
37            bar => [ qw/bar-input/ ],
38            baz => [ qw/baz-input/ ],
39    };
40    
41    foreach my $db (qw/foo bar baz/) {
42            ok($parser->valid_database($db), "database $db");
43            ok($inputs->{$db}, "has known inputs");
44            diag "valid inputs = ", dump($inputs->{$db});
45            foreach my $i (@{ $inputs->{$db} }) {
46                    ok($parser->valid_database_input($db,$i), "input $i");
47            }
48    }
49    ok(! $parser->valid_database('non-existant'), "no database");
50    ok(! $parser->valid_database_input('foo','non-existant'), "no database input");
51    
52    
 ok($parser->parse, 'parse');  

Legend:
Removed from v.686  
changed lines
  Added in v.691

  ViewVC Help
Powered by ViewVC 1.1.26