Link Here
|
19 |
|
19 |
|
20 |
use Modern::Perl; |
20 |
use Modern::Perl; |
21 |
|
21 |
|
22 |
use Test::More tests => 1; |
22 |
use Test::More tests => 2; |
23 |
use Test::Exception; |
23 |
use Test::Exception; |
24 |
|
24 |
|
25 |
use t::lib::TestBuilder; |
25 |
use t::lib::TestBuilder; |
Link Here
|
54 |
is( $extractor->get_control_number, $identifier, 'Returns the right value' ); |
54 |
is( $extractor->get_control_number, $identifier, 'Returns the right value' ); |
55 |
} |
55 |
} |
56 |
}; |
56 |
}; |
57 |
- |
57 |
|
|
|
58 |
subtest 'get_opac_suppression() tests' => sub { |
59 |
|
60 |
plan tests => 8; |
61 |
|
62 |
foreach my $marcflavour (qw( MARC21 UNIMARC )) { |
63 |
t::lib::Mocks::mock_preference( 'marcflavour', $marcflavour ); |
64 |
|
65 |
my $record = MARC::Record->new(); |
66 |
my $extractor = Koha::Biblio::Metadata::Extractor->new( { metadata => $record } ); |
67 |
|
68 |
is( $extractor->get_opac_suppression(), 0, 'If 942$n absent, then not suppressed' ); |
69 |
|
70 |
$record->append_fields( MARC::Field->new( '942', q{}, q{}, n => '' ) ); |
71 |
is( $extractor->get_opac_suppression(), 0, 'If 942$n has empty string, then not suppressed' ); |
72 |
|
73 |
$record->field('942')->replace_with( MARC::Field->new( '942', q{}, q{}, n => 'potato' ) ); |
74 |
is( $extractor->get_opac_suppression(), 1, 'If 942$n has something different than false, then suppressed' ); |
75 |
|
76 |
$record->field('942')->replace_with( MARC::Field->new( '942', q{}, q{}, n => '1' ) ); |
77 |
is( $extractor->get_opac_suppression(), 1, 'If 942$n is 1, then suppressed' ); |
78 |
} |
79 |
}; |