/[webpac2]/trunk/t/3-normalize-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

Diff of /trunk/t/3-normalize-xml.t

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

revision 12 by dpavlin, Sat Jul 16 22:57:26 2005 UTC revision 13 by dpavlin, Sat Jul 16 23:56:14 2005 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl -w  #!/usr/bin/perl -w
2    
3  use Test::More tests => 6;  use Test::More tests => 8;
4  use Test::Exception;  use Test::Exception;
5  use Cwd qw/abs_path/;  use Cwd qw/abs_path/;
6  use blib;  use blib;
# Line 14  ok(my $abs_path = abs_path($0), "abs_pat Line 14  ok(my $abs_path = abs_path($0), "abs_pat
14  $abs_path =~ s#/[^/]*$#/#;  $abs_path =~ s#/[^/]*$#/#;
15  diag "abs_path: $abs_path";  diag "abs_path: $abs_path";
16    
17  throws_ok { new WebPAC::Normalize::XML() } qr/tag/, "new without tag";  ok(my $n = new WebPAC::Normalize::XML( debug => 1 ), "new");
18  throws_ok { new WebPAC::Normalize::XML( tag => 'isis' ) } qr/xml_file/, "new without xml_file";  
19  throws_ok { new WebPAC::Normalize::XML( tag => 'isis', xml_file => 'foo' ) } qr/file.*doesn't exist/, "new with invalid xml_file";  
20  ok(my $isis = new WebPAC::Normalize::XML(  throws_ok { $n->open() } qr/tag/, "open without tag";
21    throws_ok { $n->open( tag => 'isis' ) } qr/xml_file/, "open without xml_file";
22    throws_ok { $n->open( tag => 'isis', xml_file => 'foo' ) } qr/file.*doesn't exist/, "open with invalid xml_file";
23    ok( $n->open(
24          tag => 'isis',          tag => 'isis',
25          xml_file => "$abs_path../conf/normalize/isis.xml",          xml_file => "$abs_path../conf/normalize/isis.xml",
26          debug => 1,  ), "open");
27  ), "new");  
28    my $rec = {
29            '000' => [ '001' ],
30            '800' => [ 'foo' ],
31            '900' => [ 'bar' ],
32    };
33    
34    ok(my @ds = $n->data_structure( $rec ), "data_structure");
35    
36    use Data::Dumper;
37    diag Dumper(\@ds);

Legend:
Removed from v.12  
changed lines
  Added in v.13

  ViewVC Help
Powered by ViewVC 1.1.26