Bug 13748: Acquisition wizard: some strings not translatable
[koha.git] / t / Koha_MetadataRecord.t
blob53f25a12e5446485662164f519a21fcc61654ed8
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 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
10 # version.
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 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');