View | Details | Raw Unified | Return to bug 28478
Collapse All | Expand All

(-)a/Koha/Biblio/Metadata/Extractor/MARC.pm (+17 lines)
Lines 100-105 sub get_control_number { Link Here
100
    return $control_number;
100
    return $control_number;
101
}
101
}
102
102
103
=head2 get_opac_suppression
104
105
    my $opac_suppressed = $extractor->get_opac_suppression();
106
107
Returns whether the record is flagged as suppressed in the OPAC.
108
FIXME: Revisit after 38330 discussion
109
110
=cut
111
112
sub get_opac_suppression {
113
    my ($self) = @_;
114
115
    my $record = $self->metadata;
116
117
    return $record->subfield( '942', 'n' ) ? 1 : 0;
118
}
119
103
=head3 _normalize_string
120
=head3 _normalize_string
104
121
105
    my $normalized_string = $self->_normalize_string($string);
122
    my $normalized_string = $self->_normalize_string($string);
(-)a/t/db_dependent/Koha/Biblio/Metadata/Extractor/MARC.t (-2 / +24 lines)
Lines 19-25 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;
Lines 54-56 subtest 'get_control_number() tests' => sub { 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
};

Return to bug 28478