Bug 14585: Fixing up online help on main page
[koha.git] / t / Koha_MetadataRecord.t
blob33cdeb1f13f188444ba9dbc0241441529ae3ac89
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 use strict;
21 use warnings;
23 use Test::More tests => 4;
25 BEGIN {
26 use_ok('Koha::MetadataRecord');
29 my $marcrecord = MARC::Record->new;
31 $marcrecord->add_fields(
32 [ '001', '1234' ],
33 [ '150', ' ', ' ', a => 'Cooking' ],
34 [ '450', ' ', ' ', a => 'Cookery', z => 'Instructional manuals' ],
36 my $record = Koha::MetadataRecord->new({ 'record' => $marcrecord, 'schema' => 'marc21' });
38 is(ref($record), 'Koha::MetadataRecord', 'Created valid Koha::MetadataRecord object');
40 my $samplehash = [
42 'field' => [
44 'value' => '1234',
45 'tag' => '001',
50 'field' => [
52 'subfield' => [
54 'value' => 'Cooking',
55 'subtag' => 'a'
58 'indicator2' => ' ',
59 'tag' => 150,
60 'indicator1' => ' ',
65 'field' => [
67 'subfield' => [
69 'value' => 'Cookery',
70 'subtag' => 'a'
73 'value' => 'Instructional manuals',
74 'subtag' => 'z'
77 'indicator2' => ' ',
78 'tag' => 450,
79 'indicator1' => ' ',
85 my $hash = $record->createMergeHash();
86 my %fieldkeys;
87 foreach my $field (@$hash) {
88 $fieldkeys{delete $field->{'field'}->[0]->{'key'}}++;
89 if (defined $field->{'field'}->[0]->{'subfield'}) {
90 foreach my $subfield (@{$field->{'field'}->[0]->{'subfield'}}) {
91 $fieldkeys{delete $subfield->{'subkey'}}++;
96 is_deeply($hash, $samplehash, 'Generated hash correctly');
97 my $dupkeys = grep { $_ > 1 } values %fieldkeys;
98 is($dupkeys, 0, 'No duplicate keys');