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
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
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' ],
62 'value' => 'Instructional manuals',
72 my $hash = Koha
::Util
::MARC
::createMergeHash
($marcrecord);
74 foreach my $field (@
$hash) {
75 $fieldkeys{delete $field->{'key'}}++;
76 if (defined $field->{'subfield'}) {
77 foreach my $subfield (@
{$field->{'subfield'}}) {
78 $fieldkeys{delete $subfield->{'subkey'}}++;
83 is_deeply
($hash, $samplehash, 'Generated hash correctly');
84 my $dupkeys = grep { $_ > 1 } values %fieldkeys;
85 is
($dupkeys, 0, 'No duplicate keys');
87 is
(Koha
::Util
::MARC
::getAuthorityAuthorizedHeading
($marcrecord, 'marc21'), 'Cooking', 'Routine for retrieving authorized heading works');