Bug 9302: Use patron-title.inc
[koha.git] / t / Koha_Util_MARC.t
blob3e205c9caed421d515ee9e92a9459286777e9050
1 #!/usr/bin/perl
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.
23 use strict;
24 use warnings;
26 use Test::More tests => 4;
28 BEGIN {
29 use_ok('Koha::Util::MARC');
32 my $marcrecord = MARC::Record->new;
34 $marcrecord->add_fields(
35 [ '001', '1234' ],
36 [ '150', ' ', ' ', a => 'Cooking' ],
37 [ '450', ' ', ' ', a => 'Cookery', z => 'Instructional manuals' ],
39 my $samplehash = [
41 'value' => '1234',
42 'tag' => '001',
45 'subfield' => [
47 'value' => 'Cooking',
48 'subtag' => 'a'
51 'indicator2' => ' ',
52 'tag' => 150,
53 'indicator1' => ' ',
56 'subfield' => [
58 'value' => 'Cookery',
59 'subtag' => 'a'
62 'value' => 'Instructional manuals',
63 'subtag' => 'z'
66 'indicator2' => ' ',
67 'tag' => 450,
68 'indicator1' => ' ',
72 my $hash = Koha::Util::MARC::createMergeHash($marcrecord);
73 my %fieldkeys;
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');