3 # Copyright 2013 C & P Bibliography Services
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 # Note that at present this test is almost identical to the one testing
21 # the encapsulating method in Koha::MetadataRecord.
26 use Test
::More tests
=> 4;
29 use_ok
('Koha::Util::MARC');
32 my $marcrecord = MARC
::Record
->new;
34 $marcrecord->add_fields(
36 [ '150', ' ', ' ', a
=> 'Cooking' ],
37 [ '450', ' ', ' ', a
=> 'Cookery', z
=> 'Instructional manuals' ],
72 'value' => 'Instructional manuals',
84 my $hash = Koha
::Util
::MARC
::createMergeHash
($marcrecord);
86 foreach my $field (@
$hash) {
87 $fieldkeys{delete $field->{'field'}->[0]->{'key'}}++;
88 if (defined $field->{'field'}->[0]->{'subfield'}) {
89 foreach my $subfield (@
{$field->{'field'}->[0]->{'subfield'}}) {
90 $fieldkeys{delete $subfield->{'subkey'}}++;
95 is_deeply
($hash, $samplehash, 'Generated hash correctly');
96 my $dupkeys = grep { $_ > 1 } values %fieldkeys;
97 is
($dupkeys, 0, 'No duplicate keys');
99 is
(Koha
::Util
::MARC
::getAuthorityAuthorizedHeading
($marcrecord, 'marc21'), 'Cooking', 'Routine for retrieving authorized heading works');