X-Git-Url: http://git.rot13.org/?p=webpac2;a=blobdiff_plain;f=t%2F3-normalize.t;h=5c59052782489190555545adb16906da022b6ea0;hp=10806cd12eb75b44cb3299721764b753d66a8365;hb=076dfe510205220045ec3c231836a0c966bb8de7;hpb=3245b8603f5867658c4f5f6269fb525e5c163406 diff --git a/t/3-normalize.t b/t/3-normalize.t index 10806cd..5c59052 100755 --- a/t/3-normalize.t +++ b/t/3-normalize.t @@ -3,7 +3,7 @@ use strict; use blib; -use Test::More tests => 351; +use Test::More tests => 344; BEGIN { use_ok( 'WebPAC::Test' ); @@ -162,7 +162,7 @@ sub test_s { ok(! _set_lookup( undef ), "set_lookup(undef)"); - _set_rec( $rec1 ); + _set_ds( $rec1 ); cmp_ok( join(",", rec2('200','a') ), 'eq', '200a,200a*2', 'join rec2' ); cmp_ok( join(",", rec2('200','a'), rec2('200','b') ), 'eq', '200a,200a*2,200b', 'join rec2 rec2' ); @@ -358,7 +358,7 @@ sub test_s { #ok(! lookup('non-existent'), 'lookup non-existant' ); - _set_rec( $rec2 ); + _set_ds( $rec2 ); test_s(qq{ search_display('Title', @@ -445,7 +445,7 @@ sub test_s { my $rules = qq{ search('mixed', rec('200') ) }; _clean_ds(); - _set_rec( $rec ); + _set_ds( $rec ); test_s( $rules ); ok($ds = _get_ds(), "get_ds"); is_deeply( $ds, { @@ -462,7 +462,7 @@ sub test_s { # wird and non-valid structure which is supported anyway _clean_ds(); - _set_rec({ + _set_ds({ '200' => [{ 'a' => '200a', }, @@ -485,7 +485,7 @@ sub test_s { test_s(qq{ marc_indicators('900',1,2) }); test_s(qq{ marc('900','a', rec('200') ) }); my $marc; - ok($marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields"); + ok($marc = WebPAC::Normalize::MARC::_get_marc_fields(), "_get_marc_fields"); diag dump( $marc ) if ($debug); is_deeply( $marc, [ @@ -496,7 +496,7 @@ sub test_s { test_s(qq{ marc_indicators('900',' ',9) }); test_s(qq{ marc_repeatable_subfield('900','a', rec('200') ) }); - ok($marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields"); + ok($marc = WebPAC::Normalize::MARC::_get_marc_fields(), "_get_marc_fields"); diag dump( $marc ) if ($debug); is_deeply( $marc, [ @@ -512,17 +512,18 @@ sub test_s { my ($msg, $rec, $rules, $struct) = @_; _clean_ds(); - _set_rec($rec); + _set_ds($rec); - foreach my $r (split(/;/, $rules)) { + foreach my $r (split(/;\s*$/, $rules)) { $r =~ s/[\s\n\r]+/ /gs; $r =~ s/^\s+//gs; $r =~ s/\s+$//gs; + diag "rule: $r" if $debug; test_s($r) if ($r); } - ok(my $marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields"); - diag dump( $marc ) if ($debug); + ok(my $marc = WebPAC::Normalize::MARC::_get_marc_fields(), "_get_marc_fields"); + diag dump( $marc ) if $debug; diag "expects:\n", dump($struct) if ($debug > 1); is_deeply( $marc, $struct, $msg ); } @@ -621,7 +622,7 @@ sub test_s { sub test_rule { my ($msg, $rec, $rule, $struct) = @_; _clean_ds(); - _set_rec( $rec ); + _set_ds( $rec ); $rule =~ s/\\/\\/gs; my $r = test_s( $rule ); diag "for ", dump($rec), " got:\n", dump($r), "\nexpect:\n" if ($debug > 1); @@ -731,7 +732,7 @@ sub test_s { ); test_s(qq{ marc_remove('*'); }); - ok(! WebPAC::Normalize::_get_marc_fields(), 'marc_remove(*)'); + ok(! WebPAC::Normalize::MARC::_get_marc_fields(), 'marc_remove(*)'); test_rec_rules( 'marc_duplicate', @@ -765,7 +766,7 @@ sub test_s { my $i = 0; foreach my $v ( qw/bar baz bing bong/ ) { - ok($marc = WebPAC::Normalize::_get_marc_fields( offset => $i ), + ok($marc = WebPAC::Normalize::MARC::_get_marc_fields( offset => $i ), "_get_marc_fields( offset => $i )" ); diag "marc $i = ", dump( $marc ) if ($debug); @@ -773,7 +774,7 @@ sub test_s { [ [ '900', ' ', ' ', 'a', 42, 'b', $v ] ], "MARC copy $i has $v", ); - is_deeply(WebPAC::Normalize::_get_marc_leader(), { '06' => 42, 11 => $i }, "_get_marc_leader copy $i"); + is_deeply(WebPAC::Normalize::MARC::_get_marc_leader(), { '06' => 42, 11 => $i }, "_get_marc_leader copy $i"); $i++; } @@ -840,9 +841,9 @@ sub test_s { marc_fixed('000', 10, 'A'); marc_fixed('000', 0, '0'); }); - ok( my $m = WebPAC::Normalize::_get_marc_fields(), '_get_marc_fields'); + ok( my $m = WebPAC::Normalize::MARC::_get_marc_fields(), '_get_marc_fields'); diag dump( $m ); - is_deeply( WebPAC::Normalize::_get_marc_fields(), + is_deeply( WebPAC::Normalize::MARC::_get_marc_fields(), [ ["008", "abcdef"], # 0....5....10 @@ -863,5 +864,37 @@ sub test_s { [ '1-55860-701-3', '1-55860-701-3' ], 'isbn_10' ); + # frec + + my $rec = { + '200' => [ { + a => [ 'a1', 'a2' ], b => [ 'b1', 'b2' ], c => [ 'c1', 'c2' ], + subfields => [ qw/a 0 b 0 a 1 b 1 c 0 c 1/ ], + i1 => '0', i2 => '1', + }, { + a => [ 'a3', 'a4', 'a5' ], b => 'b3', c => 'c3', + subfields => [ qw/a 0 a 1 b 0 c 0 a 2/ ], + } ], + }; + + test_rule( 'frec', $rec, qq{ frec(200) }, [ 'a1' ] ); + test_rule( 'frec', $rec, qq{ frec(200,'a') }, [ 'a1' ] ); + test_rule( 'frec', $rec, qq{ frec(200,'b') }, [ 'b1' ] ); + test_rule( 'frec', $rec, qq{ frec(200,'c') }, [ 'c1' ] ); + + $rec->{'900'} = $rec->{'200'}; + foreach my $sf ( qw/a b c/ ) { + ok( frec_eq( '200' => $sf, '900' => $sf ), "frec_eq 200 == 900 $sf"); + ok( ! frec_ne( '200' => $sf, '900' => $sf ), "! frec_ne 200 == 900 $sf"); + } + + foreach my $sf ( qw/a b/ ) { + ok( ! frec_eq( '200' => $sf, '200' => 'c' ), "! frec_eq 200 $sf == 200 c"); + ok( frec_ne( '200' => $sf, '200' => 'c' ), "frec_ne 200 $sf == 200 c"); + } + + test_rule( 'rec(200,i1)', $rec, qq{ rec(200,'i1') }, [ '0' ] ); + test_rule( 'rec(200,i2)', $rec, qq{ rec(200,'i2') }, [ '1' ] ); + }