X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=t%2F2-parse.t;h=34a795bdc114ff0d6320429bf7c658eee09e4253;hb=01091188dac765b18d9fb9bd84cad20ee4bd3e95;hp=4d757f255af0e034a94b7499964662e12a0f9fd1;hpb=17391cb5aa74c9c1590a9a54a22470d25e2ddd57;p=webpac2 diff --git a/t/2-parse.t b/t/2-parse.t index 4d757f2..34a795b 100755 --- a/t/2-parse.t +++ b/t/2-parse.t @@ -1,35 +1,29 @@ #!/usr/bin/perl -w use strict; -use Test::More tests => 51; -use Test::Exception; -use blib; +use lib 'lib'; + +use Test::More tests => 60; -use Data::Dump qw/dump/; -use Cwd qw/abs_path/; use YAML qw/LoadFile/; BEGIN { +use_ok( 'WebPAC::Test' ); use_ok( 'WebPAC::Parser' ); use_ok( 'WebPAC::Config' ); } -my $debug = shift @ARGV; - -ok(my $abs_path = abs_path($0), "abs_path"); -$abs_path =~ s#/[^/]*$#/#; - my $config_path = "$abs_path/conf/test.yml"; ok(-e $config_path, "$config_path exists"); -throws_ok { new WebPAC::Parser( no_log => 1 ) } qr/WebPAC::Config/, "new without config"; +throws_ok { new WebPAC::Parser( %LOG ) } qr/WebPAC::Config/, "new without config"; ok( my $parser = new WebPAC::Parser( config => new WebPAC::Config( path => $config_path ), base_path => $abs_path, - debug => $debug, + %LOG ), "new"); my $inputs = { @@ -67,7 +61,8 @@ ok(my $n = $parser->{_normalize_source}, "_normalize_source"); diag "_normalize_source = ",dump($n) if ($debug); foreach my $db (keys %$n) { foreach my $i (keys %{$n->{$db}}) { - ok(my $r = $parser->normalize_rules($db,$i), "normalize_source($db/$i)"); + ok(my $r = $parser->normalize_rules($db,$i), "normalize_rules($db/$i)"); + diag "normalize_rules($db,$i) = $r" if ($debug); cmp_ok($n->{$db}->{$i}, 'eq', $r, "same"); } } @@ -111,3 +106,53 @@ foreach my $db (keys %$d) { } } +$config_path = "$abs_path/conf/marc.yml"; + +ok(-e $config_path, "$config_path exists"); + +ok( + $parser = new WebPAC::Parser( + config => new WebPAC::Config( path => $config_path ), + base_path => $abs_path, + %LOG, +), "new"); + +ok(my $marc = $parser->have_rules('marc', 'marc', 'marc-input'), 'have_rules(marc,...)'); + +diag "marc: ",dump($marc) if ($debug); + +is_deeply($marc, { + marc => 1, + marc_compose => 1, + marc_duplicate => 1, + marc_indicators => 1, + marc_leader => 1, + marc_original_order => 1, + marc_remove => 1, + marc_repeatable_subfield => 1, +}, 'catched all marc_*'); + + +$config_path = "$abs_path/conf/sub.yml"; + +ok(-e $config_path, "$config_path exists"); + +ok( + $parser = new WebPAC::Parser( + config => new WebPAC::Config( path => $config_path ), + base_path => $abs_path, + %LOG, +), "new"); + +ok(my $rules = $parser->normalize_rules('sub','sub-input'), "normalize_rules(sub)"); + +diag "rules: $rules" if $debug; + +our @test; +eval $rules; +diag "test = ",dump( @test ) if $debug; + +ok(! $@, "eval: $@" ); + +is_deeply( [ @test ], [ "foo", "foo", "bar >>2<<", "bar >>42<<", 1,2,3 ], 'source fixed' ); +