Bug 16330: Add routes to add, update and delete patrons
[koha.git] / t / Koha_Util_MARC.t
1 #!/usr/bin/perl
2
3 # Copyright 2013 C & P Bibliography Services
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
16 #
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>.
19
20 # Note that at present this test is almost identical to the one testing
21 # the encapsulating method in Koha::MetadataRecord.
22
23 use strict;
24 use warnings;
25
26 use Test::More tests => 4;
27
28 BEGIN {
29         use_ok('Koha::Util::MARC');
30 }
31
32 my $marcrecord = MARC::Record->new;
33
34 $marcrecord->add_fields(
35         [ '001', '1234' ],
36         [ '150', ' ', ' ', a => 'Cooking' ],
37         [ '450', ' ', ' ', a => 'Cookery', z => 'Instructional manuals' ],
38         );
39 my $samplehash = [
40     {
41         'value' => '1234',
42         'tag'   => '001',
43     },
44     {
45         'subfield' => [
46             {
47                 'value'  => 'Cooking',
48                 'subtag' => 'a'
49             }
50         ],
51         'indicator2' => ' ',
52         'tag'        => 150,
53         'indicator1' => ' ',
54     },
55     {
56         'subfield' => [
57             {
58                 'value'  => 'Cookery',
59                 'subtag' => 'a'
60             },
61             {
62                 'value'  => 'Instructional manuals',
63                 'subtag' => 'z'
64             }
65         ],
66         'indicator2' => ' ',
67         'tag'        => 450,
68         'indicator1' => ' ',
69     }
70 ];
71
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'}}++;
79         }
80     }
81 }
82
83 is_deeply($hash, $samplehash, 'Generated hash correctly');
84 my $dupkeys = grep { $_ > 1 } values %fieldkeys;
85 is($dupkeys, 0, 'No duplicate keys');
86
87 is(Koha::Util::MARC::getAuthorityAuthorizedHeading($marcrecord, 'marc21'), 'Cooking', 'Routine for retrieving authorized heading works');