Bug 27981: Add option to automatically set 001 to the biblionumber
[koha.git] / t / db_dependent / Biblio.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19
20 use Test::More tests => 15;
21 use Test::MockModule;
22 use Test::Warn;
23 use List::MoreUtils qw( uniq );
24 use MARC::Record;
25
26 use t::lib::Mocks qw( mock_preference );
27 use t::lib::TestBuilder;
28
29 use Koha::Database;
30 use Koha::Caches;
31 use Koha::MarcSubfieldStructures;
32
33 use C4::Linker::Default qw( get_link );
34
35 BEGIN {
36     use_ok('C4::Biblio', qw( AddBiblio GetMarcFromKohaField BiblioAutoLink GetMarcSubfieldStructure GetMarcSubfieldStructureFromKohaField LinkBibHeadingsToAuthorities GetBiblioData ModBiblio GetMarcISSN GetMarcControlnumber GetMarcISBN GetMarcPrice GetFrameworkCode GetMarcUrls IsMarcStructureInternal GetMarcStructure GetXmlBiblio DelBiblio ));
37 }
38
39 my $schema = Koha::Database->new->schema;
40 $schema->storage->txn_begin;
41 my $dbh = C4::Context->dbh;
42 Koha::Caches->get_instance->clear_from_cache( "MarcSubfieldStructure-" );
43
44 my $builder = t::lib::TestBuilder->new;
45
46 subtest 'AddBiblio' => sub {
47     plan tests => 5;
48
49     my $marcflavour = 'MARC21';
50     t::lib::Mocks::mock_preference( 'marcflavour', $marcflavour );
51     my $record = MARC::Record->new();
52
53     my ( $f, $sf ) = GetMarcFromKohaField('biblioitems.lccn');
54     my $lccn_field = MARC::Field->new( $f, ' ', ' ',
55         $sf => 'ThisisgoingtobetoomanycharactersfortheLCCNfield' );
56     $record->append_fields($lccn_field);
57
58     my $nb_biblios = Koha::Biblios->count;
59     my ( $biblionumber, $biblioitemnumber );
60     warnings_like { ( $biblionumber, $biblioitemnumber ) = C4::Biblio::AddBiblio( $record, '' ) }
61         [ qr/Data too long for column 'lccn'/, qr/Data too long for column 'lccn'/ ],
62         "expected warnings when adding too long LCCN";
63     is( $biblionumber, undef,
64         'AddBiblio returns undef for biblionumber if something went wrong' );
65     is( $biblioitemnumber, undef,
66         'AddBiblio returns undef for biblioitemnumber if something went wrong'
67     );
68     is( Koha::Biblios->count, $nb_biblios,
69         'No biblio should have been added if something went wrong' );
70
71     t::lib::Mocks::mock_preference( 'BiblioAddsAuthorities', $marcflavour );
72     t::lib::Mocks::mock_preference( 'AutoCreateAuthorities', $marcflavour );
73
74     my $mock_biblio = Test::MockModule->new("C4::Biblio");
75     $mock_biblio->mock( BiblioAutoLink => sub {
76         my $record = shift;
77         my $frameworkcode = shift;
78         warn "My biblionumber is ".$record->subfield('999','c')." and my frameworkcode is $frameworkcode";
79     });
80     warning_like { $builder->build_sample_biblio(); }
81         qr/My biblionumber is \d+ and my frameworkcode is /, "The biblionumber is correctly passed to BiblioAutoLink";
82
83 };
84
85 subtest 'GetMarcSubfieldStructureFromKohaField' => sub {
86     plan tests => 25;
87
88     my @columns = qw(
89         tagfield tagsubfield liblibrarian libopac repeatable mandatory kohafield tab
90         authorised_value authtypecode value_builder isurl hidden frameworkcode
91         seealso link defaultvalue maxlength
92     );
93
94     # biblio.biblionumber must be mapped so this should return something
95     my $marc_subfield_structure = GetMarcSubfieldStructureFromKohaField('biblio.biblionumber');
96
97     ok(defined $marc_subfield_structure, "There is a result");
98     is(ref $marc_subfield_structure, "HASH", "Result is a hashref");
99     foreach my $col (@columns) {
100         ok(exists $marc_subfield_structure->{$col}, "Hashref contains key '$col'");
101     }
102     is($marc_subfield_structure->{kohafield}, 'biblio.biblionumber', "Result is the good result");
103     like($marc_subfield_structure->{tagfield}, qr/^\d{3}$/, "tagfield is a valid tagfield");
104
105     # Add a test for list context (BZ 10306)
106     my @results = GetMarcSubfieldStructureFromKohaField('biblio.biblionumber');
107     is( @results, 1, 'We expect only one mapping' );
108     is_deeply( $results[0], $marc_subfield_structure,
109         'The first entry should be the same hashref as we had before' );
110
111     # foo.bar does not exist so this should return undef
112     $marc_subfield_structure = GetMarcSubfieldStructureFromKohaField('foo.bar');
113     is($marc_subfield_structure, undef, "invalid kohafield returns undef");
114
115 };
116
117 subtest "GetMarcSubfieldStructure" => sub {
118     plan tests => 5;
119
120     # Add multiple Koha to Marc mappings
121     Koha::MarcSubfieldStructures->search({ frameworkcode => '', tagfield => '399', tagsubfield => [ 'a', 'b' ] })->delete;
122     Koha::MarcSubfieldStructure->new({ frameworkcode => '', tagfield => '399', tagsubfield => 'a', kohafield => "mytable.nicepages" })->store;
123     Koha::MarcSubfieldStructure->new({ frameworkcode => '', tagfield => '399', tagsubfield => 'b', kohafield => "mytable.nicepages" })->store;
124     Koha::Caches->get_instance->clear_from_cache( "MarcSubfieldStructure-" );
125     my $structure = C4::Biblio::GetMarcSubfieldStructure('');
126
127     is( @{ $structure->{"mytable.nicepages"} }, 2,
128         'GetMarcSubfieldStructure should return two entries for nicepages' );
129     is( $structure->{"mytable.nicepages"}->[0]->{tagfield}, '399',
130         'Check tagfield for first entry' );
131     is( $structure->{"mytable.nicepages"}->[0]->{tagsubfield}, 'a',
132         'Check tagsubfield for first entry' );
133     is( $structure->{"mytable.nicepages"}->[1]->{tagfield}, '399',
134         'Check tagfield for second entry' );
135     is( $structure->{"mytable.nicepages"}->[1]->{tagsubfield}, 'b',
136         'Check tagsubfield for second entry' );
137 };
138
139 subtest "GetMarcFromKohaField" => sub {
140     plan tests => 8;
141
142     #NOTE: We are building on data from the previous subtest
143     # With: field 399 / mytable.nicepages
144
145     # Check call in list context for multiple mappings
146     my @retval = C4::Biblio::GetMarcFromKohaField('mytable.nicepages');
147     is( @retval, 4, 'Should return two tags and subfields' );
148     is( $retval[0], '399', 'Check first tag' );
149     is( $retval[1], 'a', 'Check first subfield' );
150     is( $retval[2], '399', 'Check second tag' );
151     is( $retval[3], 'b', 'Check second subfield' );
152
153     # Check same call in scalar context
154     is( C4::Biblio::GetMarcFromKohaField('mytable.nicepages'), '399',
155         'GetMarcFromKohaField returns first tag in scalar context' );
156
157     # Bug 19096 Default is authoritative
158     # If we add a new empty framework, we should still get the mappings
159     # from Default. CAUTION: This test passes intentionally the obsoleted
160     # framework parameter.
161     my $new_fw = t::lib::TestBuilder->new->build({source => 'BiblioFramework'});
162     @retval = C4::Biblio::GetMarcFromKohaField(
163         'mytable.nicepages', $new_fw->{frameworkcode},
164     );
165     is( @retval, 4, 'Still got two pairs of tags/subfields' );
166     is( $retval[0].$retval[1], '399a', 'Including 399a' );
167 };
168
169 subtest "Authority creation with default linker" => sub {
170     plan tests => 4;
171     # Automatic authority creation
172     t::lib::Mocks::mock_preference('LinkerModule', 'Default');
173     t::lib::Mocks::mock_preference('BiblioAddsAuthorities', 1);
174     t::lib::Mocks::mock_preference('AutoCreateAuthorities', 1);
175     t::lib::Mocks::mock_preference('marcflavour', 'MARC21');
176     my $linker = C4::Linker::Default->new({});
177     my $authorities_mod = Test::MockModule->new( 'C4::Heading' );
178     $authorities_mod->mock(
179         'authorities',
180         sub {
181             my $results = [{ authid => 'original' },{ authid => 'duplicate' }];
182             return $results;
183         }
184     );
185     my $marc_record = MARC::Record->new();
186     my $field = MARC::Field->new(655, ' ', ' ','a' => 'Magical realism');
187     $marc_record->append_fields( $field );
188     my ($num_changed,$results) = LinkBibHeadingsToAuthorities($linker, $marc_record, "",undef);
189     is( $num_changed, 0, "We shouldn't link or create a new record");
190     ok( !defined $results->{added}, "If we have multiple matches, we shouldn't create a new record");
191
192     ($num_changed,$results) = LinkBibHeadingsToAuthorities($linker, $marc_record, "",undef);
193     is( $num_changed, 0, "We shouldn't link or create a new record using cached result");
194     ok( !defined $results->{added}, "If we have multiple matches, we shouldn't create a new record on second instance");
195 };
196
197
198
199 # Mocking variables
200 my $biblio_module = Test::MockModule->new('C4::Biblio');
201 $biblio_module->mock(
202     'GetMarcSubfieldStructure',
203     sub {
204         my ($self) = shift;
205
206         my ( $title_field,            $title_subfield )            = get_title_field();
207         my ( $subtitle_field,         $subtitle_subfield )         = get_subtitle_field();
208         my ( $medium_field,           $medium_subfield )           = get_medium_field();
209         my ( $part_number_field,      $part_number_subfield )      = get_part_number_field();
210         my ( $part_name_field,        $part_name_subfield )        = get_part_name_field();
211         my ( $isbn_field,             $isbn_subfield )             = get_isbn_field();
212         my ( $issn_field,             $issn_subfield )             = get_issn_field();
213         my ( $biblionumber_field,     $biblionumber_subfield )     = ( '999', 'c' );
214         my ( $biblioitemnumber_field, $biblioitemnumber_subfield ) = ( '999', '9' );
215         my ( $itemnumber_field,       $itemnumber_subfield )       = get_itemnumber_field();
216
217         return {
218             'biblio.title'                 => [ { tagfield => $title_field,            tagsubfield => $title_subfield } ],
219             'biblio.subtitle'              => [ { tagfield => $subtitle_field,         tagsubfield => $subtitle_subfield } ],
220             'biblio.medium'                => [ { tagfield => $medium_field,           tagsubfield => $medium_subfield } ],
221             'biblio.part_number'           => [ { tagfield => $part_number_field,      tagsubfield => $part_number_subfield } ],
222             'biblio.part_name'             => [ { tagfield => $part_name_field,        tagsubfield => $part_name_subfield } ],
223             'biblio.biblionumber'          => [ { tagfield => $biblionumber_field,     tagsubfield => $biblionumber_subfield } ],
224             'biblioitems.isbn'             => [ { tagfield => $isbn_field,             tagsubfield => $isbn_subfield } ],
225             'biblioitems.issn'             => [ { tagfield => $issn_field,             tagsubfield => $issn_subfield } ],
226             'biblioitems.biblioitemnumber' => [ { tagfield => $biblioitemnumber_field, tagsubfield => $biblioitemnumber_subfield } ],
227             'items.itemnumber'             => [ { tagfield => $itemnumber_subfield,    tagsubfield => $itemnumber_subfield } ],
228         };
229       }
230 );
231
232 my $currency = Test::MockModule->new('Koha::Acquisition::Currencies');
233 $currency->mock(
234     'get_active',
235     sub {
236         return Koha::Acquisition::Currency->new(
237             {   symbol   => '$',
238                 isocode  => 'USD',
239                 currency => 'USD',
240                 active   => 1,
241             }
242         );
243     }
244 );
245
246 sub run_tests {
247
248     my $marcflavour = shift;
249     t::lib::Mocks::mock_preference('marcflavour', $marcflavour);
250     # Authority tests don't interact well with Elasticsearch at the moment due to the fact that there's currently no way to
251     # roll back ES index changes.
252     t::lib::Mocks::mock_preference('SearchEngine', 'Zebra');
253     t::lib::Mocks::mock_preference('autoControlNumber', 'OFF');
254
255     t::lib::Mocks::mock_preference( 'RealTimeHoldsQueue', 0 );
256
257     my $isbn = '0590353403';
258     my $title = 'Foundation';
259     my $subtitle1 = 'Research';
260     my $subtitle2 = 'Conclusions';
261     my $medium = 'Medium';
262     my $part_number = '123';
263     my $part_name = 'First years';
264
265     # Generate a record with just the ISBN
266     my $marc_record = MARC::Record->new;
267     $marc_record->append_fields( create_isbn_field( $isbn, $marcflavour ) );
268
269     # Add the record to the DB
270     my( $biblionumber, $biblioitemnumber ) = AddBiblio( $marc_record, '' );
271     my $data = GetBiblioData( $biblionumber );
272     is( $data->{ isbn }, $isbn,
273         '(GetBiblioData) ISBN correctly retireved.');
274     is( $data->{ title }, undef,
275         '(GetBiblioData) Title field is empty in fresh biblio.');
276
277     my $biblio = Koha::Biblios->find($biblionumber);
278
279     my ( $isbn_field, $isbn_subfield ) = get_isbn_field();
280     my $marc = $biblio->metadata->record;
281     is( $marc->subfield( $isbn_field, $isbn_subfield ), $isbn, );
282
283     # Add title
284     my $field = create_title_field( $title, $marcflavour );
285     $marc_record->append_fields( $field );
286     ModBiblio( $marc_record, $biblionumber ,'' );
287     $data = GetBiblioData( $biblionumber );
288     is( $data->{ title }, $title,
289         'ModBiblio correctly added the title field, and GetBiblioData.');
290     is( $data->{ isbn }, $isbn, '(ModBiblio) ISBN is still there after ModBiblio.');
291     $marc = $biblio->get_from_storage->metadata->record;
292     my ( $title_field, $title_subfield ) = get_title_field();
293     is( $marc->subfield( $title_field, $title_subfield ), $title, );
294
295     # Add other fields
296     $marc_record->append_fields( create_field( $subtitle1, $marcflavour, get_subtitle_field() ) );
297     $marc_record->append_fields( create_field( $subtitle2, $marcflavour, get_subtitle_field() ) );
298     $marc_record->append_fields( create_field( $medium, $marcflavour, get_medium_field() ) );
299     $marc_record->append_fields( create_field( $part_number, $marcflavour, get_part_number_field() ) );
300     $marc_record->append_fields( create_field( $part_name, $marcflavour, get_part_name_field() ) );
301
302     ModBiblio( $marc_record, $biblionumber ,'' );
303     $data = GetBiblioData( $biblionumber );
304     is( $data->{ title }, $title, '(ModBiblio) still there after adding other fields.' );
305     is( $data->{ isbn }, $isbn, '(ModBiblio) ISBN is still there after adding other fields.' );
306
307     is( $data->{ subtitle }, "$subtitle1 | $subtitle2", '(ModBiblio) subtitles correctly added and returned in GetBiblioData.' );
308     is( $data->{ medium }, $medium, '(ModBiblio) medium correctly added and returned in GetBiblioData.' );
309     is( $data->{ part_number }, $part_number, '(ModBiblio) part_number correctly added and returned in GetBiblioData.' );
310     is( $data->{ part_name }, $part_name, '(ModBiblio) part_name correctly added and returned in GetBiblioData.' );
311
312     my $biblioitem = Koha::Biblioitems->find( $biblioitemnumber );
313     is( $biblioitem->_result->biblio->title, $title, # Should be $biblioitem->biblio instead, but not needed elsewhere for now
314         'Do not know if this makes sense - compare result of previous two GetBiblioData tests.');
315     is( $biblioitem->isbn, $isbn,
316         'Second test checking it returns the correct isbn.');
317
318     my $success = 0;
319     $field = MARC::Field->new(
320             655, ' ', ' ',
321             'a' => 'Auction catalogs',
322             '9' => '1'
323             );
324     eval {
325         $marc_record->append_fields($field);
326         $success = ModBiblio($marc_record,$biblionumber,'');
327     } or do {
328         diag($@);
329         $success = 0;
330     };
331     ok($success, "ModBiblio handles authority-linked 655");
332
333     eval {
334         $field->delete_subfields('a');
335         $marc_record->append_fields($field);
336         $success = ModBiblio($marc_record,$biblionumber,'');
337     } or do {
338         diag($@);
339         $success = 0;
340     };
341     ok($success, "ModBiblio handles 655 with authority link but no heading");
342
343     eval {
344         $field->delete_subfields('9');
345         $marc_record->append_fields($field);
346         $success = ModBiblio($marc_record,$biblionumber,'');
347     } or do {
348         diag($@);
349         $success = 0;
350     };
351     ok($success, "ModBiblio handles 655 with no subfields");
352
353     ## Testing GetMarcISSN
354     my $issns;
355     $issns = GetMarcISSN( $marc_record, $marcflavour );
356     is( $issns->[0], undef,
357         'GetMarcISSN handles records without the ISSN field (list is empty)' );
358     is( scalar @$issns, 0,
359         'GetMarcISSN handles records without the ISSN field (count is 0)' );
360     # Add an ISSN field
361     my $issn = '1234-1234';
362     $field = create_issn_field( $issn, $marcflavour );
363     $marc_record->append_fields($field);
364     $issns = GetMarcISSN( $marc_record, $marcflavour );
365     is( $issns->[0], $issn,
366         'GetMarcISSN handles records with a single ISSN field (first element is correct)' );
367     is( scalar @$issns, 1,
368         'GetMARCISSN handles records with a single ISSN field (count is 1)');
369     # Add multiple ISSN field
370     my @more_issns = qw/1111-1111 2222-2222 3333-3333/;
371     foreach (@more_issns) {
372         $field = create_issn_field( $_, $marcflavour );
373         $marc_record->append_fields($field);
374     }
375     $issns = GetMarcISSN( $marc_record, $marcflavour );
376     is( scalar @$issns, 4,
377         'GetMARCISSN handles records with multiple ISSN fields (count correct)');
378     # Create an empty ISSN
379     $field = create_issn_field( "", $marcflavour );
380     $marc_record->append_fields($field);
381     $issns = GetMarcISSN( $marc_record, $marcflavour );
382     is( scalar @$issns, 4,
383         'GetMARCISSN skips empty ISSN fields (Bug 12674)');
384
385     ## Testing GetMarcControlnumber
386     my $controlnumber;
387     $controlnumber = GetMarcControlnumber( $marc_record, $marcflavour );
388     is( $controlnumber, '', 'GetMarcControlnumber handles records without 001' );
389
390     $field = MARC::Field->new( '001', '' );
391     $marc_record->append_fields($field);
392     $controlnumber = GetMarcControlnumber( $marc_record, $marcflavour );
393     is( $controlnumber, '', 'GetMarcControlnumber handles records with empty 001' );
394
395     $field = $marc_record->field('001');
396     $field->update('123456789X');
397     $controlnumber = GetMarcControlnumber( $marc_record, $marcflavour );
398     is( $controlnumber, '123456789X', 'GetMarcControlnumber handles records with 001' );
399
400     ## Testing GetMarcISBN
401     my $record_for_isbn = MARC::Record->new();
402     my $isbns = GetMarcISBN( $record_for_isbn, $marcflavour );
403     is( scalar @$isbns, 0, '(GetMarcISBN) The record contains no ISBN');
404
405     # We add one ISBN
406     $isbn_field = create_isbn_field( $isbn, $marcflavour );
407     $record_for_isbn->append_fields( $isbn_field );
408     $isbns = GetMarcISBN( $record_for_isbn, $marcflavour );
409     is( scalar @$isbns, 1, '(GetMarcISBN) The record contains one ISBN');
410     is( $isbns->[0], $isbn, '(GetMarcISBN) The record contains our ISBN');
411
412     # We add 3 more ISBNs
413     $record_for_isbn = MARC::Record->new();
414     my @more_isbns = qw/1111111111 2222222222 3333333333 444444444/;
415     foreach (@more_isbns) {
416         $field = create_isbn_field( $_, $marcflavour );
417         $record_for_isbn->append_fields($field);
418     }
419     $isbns = GetMarcISBN( $record_for_isbn, $marcflavour );
420     is( scalar @$isbns, 4, '(GetMarcISBN) The record contains 4 ISBNs');
421     for my $i (0 .. $#more_isbns) {
422         is( $isbns->[$i], $more_isbns[$i],
423             "(GetMarcISBN) Correctly retrieves ISBN #". ($i + 1));
424     }
425
426     is( GetMarcPrice( $record_for_isbn, $marcflavour ), 100,
427         "GetMarcPrice returns the correct value");
428     my $frameworkcode = GetFrameworkCode($biblionumber);
429     my $updatedrecord = $biblio->metadata->record;
430     my ( $biblioitem_tag, $biblioitem_subfield ) = GetMarcFromKohaField( "biblioitems.biblioitemnumber" );
431     die qq{No biblioitemnumber tag for framework "$frameworkcode"} unless $biblioitem_tag;
432     my $biblioitemnumbertotest;
433     if ( $biblioitem_tag < 10 ) {
434         $biblioitemnumbertotest = $updatedrecord->field($biblioitem_tag)->data();
435     } else {
436         $biblioitemnumbertotest = $updatedrecord->field($biblioitem_tag)->subfield($biblioitem_subfield);
437     }
438
439     # test for GetMarcUrls
440     $marc_record->append_fields(
441         MARC::Field->new( '856', '', '', u => ' https://koha-community.org ' ),
442         MARC::Field->new( '856', '', '', u => 'koha-community.org' ),
443     );
444     my $marcurl = GetMarcUrls( $marc_record, $marcflavour );
445     is( @$marcurl, 2, 'GetMarcUrls returns two URLs' );
446     like( $marcurl->[0]->{MARCURL}, qr/^https/, 'GetMarcUrls did not stumble over a preceding space' );
447     ok( $marcflavour ne 'MARC21' || $marcurl->[1]->{MARCURL} =~ /^http:\/\//,
448         'GetMarcUrls prefixed a MARC21 URL with http://' );
449
450     # Automatic authority creation
451     t::lib::Mocks::mock_preference('BiblioAddsAuthorities', 1);
452     t::lib::Mocks::mock_preference('AutoCreateAuthorities', 1);
453     my $authorities_mod = Test::MockModule->new( 'C4::Heading' );
454     $authorities_mod->mock(
455         'authorities',
456         sub {
457             my @results;
458             return \@results;
459         }
460     );
461     $success = 0;
462     $field = create_author_field('Author Name');
463     eval {
464         $marc_record->append_fields($field);
465         $success = ModBiblio($marc_record,$biblionumber,'');
466     } or do {
467         diag($@);
468         $success = 0;
469     };
470     ok($success, "ModBiblio handles authority addition for author");
471
472     my ($author_field, $author_subfield, $author_relator_subfield) = get_author_field();
473     $field = $marc_record->field($author_field);
474     ok($field->subfield($author_subfield), "ModBiblio keeps $author_field$author_subfield intact");
475
476     my $authid = $field->subfield('9');
477     ok($authid, 'ModBiblio adds authority id');
478
479     use_ok('C4::AuthoritiesMarc', qw( GetAuthority ));
480     my $auth_record = C4::AuthoritiesMarc::GetAuthority($authid);
481     ok($auth_record, 'Authority record successfully retrieved');
482
483
484     my ($auth_author_field, $auth_author_subfield) = get_auth_author_field();
485     $field = $auth_record->field($auth_author_field);
486     ok($field, "Authority record contains field $auth_author_field");
487     is(
488         $field->subfield($auth_author_subfield),
489         'Author Name',
490         'Authority $auth_author_field$auth_author_subfield contains author name'
491     );
492     is($field->subfield($author_relator_subfield), undef, 'Authority does not contain relator subfield');
493
494     # Reset settings
495     t::lib::Mocks::mock_preference('BiblioAddsAuthorities', 0);
496     t::lib::Mocks::mock_preference('AutoCreateAuthorities', 0);
497 }
498
499 sub get_title_field {
500     my $marc_flavour = C4::Context->preference('marcflavour');
501     return ( $marc_flavour eq 'UNIMARC' ) ? ( '200', 'a' ) : ( '245', 'a' );
502 }
503
504 sub get_medium_field {
505     my $marc_flavour = C4::Context->preference('marcflavour');
506     return ( $marc_flavour eq 'UNIMARC' ) ? ( '200', 'b' ) : ( '245', 'h' );
507 }
508
509 sub get_subtitle_field {
510     my $marc_flavour = C4::Context->preference('marcflavour');
511     return ( $marc_flavour eq 'UNIMARC' ) ? ( '200', 'e' ) : ( '245', 'b' );
512 }
513
514 sub get_part_number_field {
515     my $marc_flavour = C4::Context->preference('marcflavour');
516     return ( $marc_flavour eq 'UNIMARC' ) ? ( '200', 'h' ) : ( '245', 'n' );
517 }
518
519 sub get_part_name_field {
520     my $marc_flavour = C4::Context->preference('marcflavour');
521     return ( $marc_flavour eq 'UNIMARC' ) ? ( '200', 'i' ) : ( '245', 'p' );
522 }
523
524 sub get_isbn_field {
525     my $marc_flavour = C4::Context->preference('marcflavour');
526     return ( $marc_flavour eq 'UNIMARC' ) ? ( '010', 'a' ) : ( '020', 'a' );
527 }
528
529 sub get_issn_field {
530     my $marc_flavour = C4::Context->preference('marcflavour');
531     return ( $marc_flavour eq 'UNIMARC' ) ? ( '011', 'a' ) : ( '022', 'a' );
532 }
533
534 sub get_itemnumber_field {
535     my $marc_flavour = C4::Context->preference('marcflavour');
536     return ( $marc_flavour eq 'UNIMARC' ) ? ( '995', '9' ) : ( '952', '9' );
537 }
538
539 sub get_author_field {
540     my $marc_flavour = C4::Context->preference('marcflavour');
541     return ( $marc_flavour eq 'UNIMARC' ) ? ( '700', 'a', '4' ) : ( '100', 'a', 'e' );
542 }
543
544 sub get_auth_author_field {
545     my $marc_flavour = C4::Context->preference('marcflavour');
546     return ( $marc_flavour eq 'UNIMARC' ) ? ( '106', 'a' ) : ( '100', 'a' );
547 }
548
549 sub create_title_field {
550     my ( $title, $marcflavour ) = @_;
551
552     my ( $title_field, $title_subfield ) = get_title_field();
553     my $field = MARC::Field->new( $title_field, '', '', $title_subfield => $title );
554
555     return $field;
556 }
557
558 sub create_field {
559     my ( $content, $marcflavour, $field, $subfield ) = @_;
560
561     return MARC::Field->new( $field, '', '', $subfield => $content );
562 }
563
564 sub create_isbn_field {
565     my ( $isbn, $marcflavour ) = @_;
566
567     my ( $isbn_field, $isbn_subfield ) = get_isbn_field();
568     my $field = MARC::Field->new( $isbn_field, '', '', $isbn_subfield => $isbn );
569
570     # Add the price subfield
571     my $price_subfield = ( $marcflavour eq 'UNIMARC' ) ? 'd' : 'c';
572     $field->add_subfields( $price_subfield => '$100' );
573
574     return $field;
575 }
576
577 sub create_issn_field {
578     my ( $issn, $marcflavour ) = @_;
579
580     my ( $issn_field, $issn_subfield ) = get_issn_field();
581     my $field = MARC::Field->new( $issn_field, '', '', $issn_subfield => $issn );
582
583     return $field;
584 }
585
586 sub create_author_field {
587     my ( $author ) = @_;
588
589     my ( $author_field, $author_subfield, $author_relator_subfield ) = get_author_field();
590     my $field = MARC::Field->new(
591         $author_field, '', '',
592         $author_subfield => $author,
593         $author_relator_subfield => 'aut'
594     );
595
596     return $field;
597 }
598
599 subtest 'MARC21' => sub {
600     plan tests => 46;
601     run_tests('MARC21');
602     $schema->storage->txn_rollback;
603     $schema->storage->txn_begin;
604 };
605
606 subtest 'UNIMARC' => sub {
607     plan tests => 46;
608
609     # Mock the auth type data for UNIMARC
610     $dbh->do("UPDATE auth_types SET auth_tag_to_report = '106' WHERE auth_tag_to_report = '100'") or die $dbh->errstr;
611
612     run_tests('UNIMARC');
613     $schema->storage->txn_rollback;
614     $schema->storage->txn_begin;
615 };
616
617 subtest 'IsMarcStructureInternal' => sub {
618     plan tests => 9;
619     my $tagslib = GetMarcStructure();
620     my @internals;
621     for my $tag ( sort keys %$tagslib ) {
622         next unless $tag;
623         for my $subfield ( sort keys %{ $tagslib->{$tag} } ) {
624             push @internals, $subfield if IsMarcStructureInternal($tagslib->{$tag}{$subfield});
625         }
626     }
627     @internals = uniq @internals;
628     is( scalar(@internals), 7, 'expect 7 internals');
629     is( grep( /^lib$/, @internals ), 1, 'check lib' );
630     is( grep( /^tab$/, @internals ), 1, 'check tab' );
631     is( grep( /^mandatory$/, @internals ), 1, 'check mandatory' );
632     is( grep( /^repeatable$/, @internals ), 1, 'check repeatable' );
633     is( grep( /^important$/, @internals ), 1, 'check important' );
634     is( grep( /^a$/, @internals ), 0, 'no subfield a' );
635     is( grep( /^ind1_defaultvalue$/, @internals ), 1, 'check indicator 1 default value' );
636     is( grep( /^ind2_defaultvalue$/, @internals ), 1, 'check indicator 2 default value' );
637 };
638
639 subtest 'deletedbiblio_metadata' => sub {
640     plan tests => 2;
641
642     t::lib::Mocks::mock_preference( 'RealTimeHoldsQueue', 0 );
643
644     my ($biblionumber, $biblioitemnumber) = AddBiblio(MARC::Record->new, '');
645     my $biblio_metadata = C4::Biblio::GetXmlBiblio( $biblionumber );
646     C4::Biblio::DelBiblio( $biblionumber );
647     my ( $moved ) = $dbh->selectrow_array(q|SELECT biblionumber FROM deletedbiblio WHERE biblionumber=?|, undef, $biblionumber);
648     is( $moved, $biblionumber, 'Found in deletedbiblio' );
649     ( $moved ) = $dbh->selectrow_array(q|SELECT biblionumber FROM deletedbiblio_metadata WHERE biblionumber=?|, undef, $biblionumber);
650     is( $moved, $biblionumber, 'Found in deletedbiblio_metadata' );
651 };
652
653 subtest 'DelBiblio' => sub {
654
655     plan tests => 5;
656
657     t::lib::Mocks::mock_preference( 'RealTimeHoldsQueue', 0 );
658
659     my ($biblionumber, $biblioitemnumber) = C4::Biblio::AddBiblio(MARC::Record->new, '');
660     my $deleted = C4::Biblio::DelBiblio( $biblionumber );
661     is( $deleted, undef, 'DelBiblio returns undef is the biblio has been deleted correctly - Must be 1 instead'); # FIXME We should return 1 instead!
662
663     $deleted = C4::Biblio::DelBiblio( $biblionumber );
664     is( $deleted, undef, 'DelBiblo should return undef is the record did not exist');
665
666     my $biblio       = $builder->build_sample_biblio;
667     my $subscription = $builder->build_object(
668         {
669             class => 'Koha::Subscriptions',
670             value => { biblionumber => $biblio->biblionumber }
671         }
672     );
673     my $serial = $builder->build_object(
674         {
675             class => 'Koha::Serials',
676             value => {
677                 biblionumber   => $biblio->biblionumber,
678                 subscriptionid => $subscription->subscriptionid
679             }
680         }
681     );
682     my $subscription_history = $builder->build_object(
683         {
684             class => 'Koha::Subscription::Histories',
685             value => {
686                 biblionumber   => $biblio->biblionumber,
687                 subscriptionid => $subscription->subscriptionid
688             }
689         }
690     );
691     C4::Biblio::DelBiblio($biblio->biblionumber); # Or $biblio->delete
692     is( $subscription->get_from_storage, undef, 'subscription should be deleted on biblio deletion' );
693     is( $serial->get_from_storage, undef, 'serial should be deleted on biblio deletion' );
694     is( $subscription_history->get_from_storage, undef, 'subscription history should be deleted on biblio deletion' );
695 };
696
697 subtest 'MarcFieldForCreatorAndModifier' => sub {
698     plan tests => 8;
699
700     t::lib::Mocks::mock_preference('MarcFieldForCreatorId', '998$a');
701     t::lib::Mocks::mock_preference('MarcFieldForCreatorName', '998$b');
702     t::lib::Mocks::mock_preference('MarcFieldForModifierId', '998$c');
703     t::lib::Mocks::mock_preference('MarcFieldForModifierName', '998$d');
704     my $c4_context = Test::MockModule->new('C4::Context');
705     $c4_context->mock('userenv', sub { return { number => 123, firstname => 'John', surname => 'Doe'}; });
706
707     my $record = MARC::Record->new();
708     my ($biblionumber) = C4::Biblio::AddBiblio($record, '');
709
710     my $biblio = Koha::Biblios->find($biblionumber);
711     $record = $biblio->metadata->record;
712     is($record->subfield('998', 'a'), 123, '998$a = 123');
713     is($record->subfield('998', 'b'), 'John Doe', '998$b = John Doe');
714     is($record->subfield('998', 'c'), 123, '998$c = 123');
715     is($record->subfield('998', 'd'), 'John Doe', '998$d = John Doe');
716
717     $c4_context->mock('userenv', sub { return { number => 321, firstname => 'Jane', surname => 'Doe'}; });
718     C4::Biblio::ModBiblio($record, $biblionumber, '');
719
720     $record = $biblio->get_from_storage->metadata->record;
721     is($record->subfield('998', 'a'), 123, '998$a = 123');
722     is($record->subfield('998', 'b'), 'John Doe', '998$b = John Doe');
723     is($record->subfield('998', 'c'), 321, '998$c = 321');
724     is($record->subfield('998', 'd'), 'Jane Doe', '998$d = Jane Doe');
725 };
726
727 subtest 'ModBiblio called from linker test' => sub {
728     plan tests => 2;
729     my $called = 0;
730     t::lib::Mocks::mock_preference('BiblioAddsAuthorities', 1);
731     my $biblio_mod = Test::MockModule->new( 'C4::Biblio' );
732     $biblio_mod->mock( 'LinkBibHeadingsToAuthorities', sub {
733         $called = 1;
734     });
735     my $record = MARC::Record->new();
736     my ($biblionumber) = C4::Biblio::AddBiblio($record,'');
737     C4::Biblio::ModBiblio($record,$biblionumber,'');
738     is($called,1,"We called to link bibs because not from linker");
739     $called = 0;
740     C4::Biblio::ModBiblio($record,$biblionumber,'',{ disable_autolink => 1 });
741     is($called,0,"We didn't call to link bibs because from linker");
742 };
743
744 subtest "LinkBibHeadingsToAuthorities record generation tests" => sub {
745     plan tests => 12;
746
747     # Set up mocks to ensure authorities are generated
748     my $biblio_mod = Test::MockModule->new( 'C4::Linker::Default' );
749     $biblio_mod->mock( 'get_link', sub {
750         return (undef,undef);
751     });
752     # UNIMARC valid headings are built from the marc_subfield_structure for bibs and
753     # include all subfields as valid, testing with MARC21 should be sufficient for now
754     t::lib::Mocks::mock_preference('marcflavour', 'MARC21');
755     t::lib::Mocks::mock_preference('AutoCreateAuthorities', '1');
756
757     my $linker = C4::Linker::Default->new();
758     my $biblio = $builder->build_sample_biblio();
759     my $record = $biblio->metadata->record;
760
761     # Generate a record including all valid subfields and an invalid one 'e'
762     my $field = MARC::Field->new('650','','','a' => 'Beach city', 'b' => 'Weirdness', 'v' => 'Fiction', 'x' => 'Books', 'y' => '21st Century', 'z' => 'Fish Stew Pizza', 'e' => 'Depicted');
763
764     $record->append_fields($field);
765     my ( $num_headings_changed, $results ) = LinkBibHeadingsToAuthorities($linker, $record, "",undef,650);
766
767     is( $num_headings_changed, 1, 'We changed the one we passed' );
768     is_deeply( $results->{added},
769         {"Beach city Weirdness--Fiction--Books--21st Century--Fish Stew Pizza" => 1 },
770         "We added an authority record for the heading"
771     );
772
773     # Now we check the authority record itself
774     my $authority = GetAuthority( $record->subfield('650','9') );
775     is( $authority->field('150')->as_string(),
776         "Beach city Weirdness Fiction Books 21st Century Fish Stew Pizza",
777         "The generated record contains the correct subfields"
778     );
779
780     #Add test for this case using verbose
781     $record->field('650')->delete_subfield('9');
782     ( $num_headings_changed, $results ) = LinkBibHeadingsToAuthorities($linker, $record, "",undef, 650, 1);
783     is( $num_headings_changed, 1, 'We changed the one we passed' );
784     is( $results->{details}->[0]->{status}, 'CREATED', "We added an authority record for the heading using verbose");
785
786     # Now we check the authority record itself
787     $authority = GetAuthority($results->{details}->[0]->{authid});
788
789     is( $authority->field('150')->as_string(),
790          "Beach city Weirdness Fiction Books 21st Century Fish Stew Pizza",
791          "The generated record contains the correct subfields when using verbose"
792     );
793
794     # Example series link with volume and punctuation
795     $field = MARC::Field->new('800','','','a' => 'Tolkien, J. R. R.', 'q' => '(John Ronald Reuel),', 'd' => '1892-1973.', 't' => 'Lord of the rings ;', 'v' => '1');
796     $record->append_fields($field);
797
798     ( $num_headings_changed, $results ) = LinkBibHeadingsToAuthorities($linker, $record, "",undef, 800);
799
800     is( $num_headings_changed, 1, 'We changed the one we passed' );
801     is_deeply( $results->{added},
802         {"Tolkien, J. R. R. (John Ronald Reuel), 1892-1973. Lord of the rings ;" => 1 },
803         "We added an authority record for the heading"
804     );
805
806     # Now we check the authority record itself
807     $authority = GetAuthority( $record->subfield('800','9') );
808     is( $authority->field('100')->as_string(),
809         "Tolkien, J. R. R. (John Ronald Reuel), 1892-1973. Lord of the rings",
810         "The generated record contains the correct subfields"
811     );
812
813     # The same example With verbose
814     $record->field('800')->delete_subfield('9');
815     ( $num_headings_changed, $results ) = LinkBibHeadingsToAuthorities($linker, $record, "",undef, 800, 1);
816     is( $num_headings_changed, 1, 'We changed the one we passed' );
817     is( $results->{details}->[0]->{status}, 'CREATED', "We added an authority record for the heading using verbose");
818
819     # Now we check the authority record itself
820     $authority = GetAuthority($results->{details}->[0]->{authid});
821     is( $authority->field('100')->as_string(),
822          "Tolkien, J. R. R. (John Ronald Reuel), 1892-1973. Lord of the rings",
823          "The generated record contains the correct subfields"
824     );
825 };
826
827 subtest 'autoControlNumber tests' => sub {
828     plan tests => 3;
829
830     t::lib::Mocks::mock_preference('autoControlNumber', 'OFF');
831
832     my $record = MARC::Record->new();
833     my ($biblionumber) = C4::Biblio::AddBiblio($record, '');
834     $record = GetMarcBiblio({biblionumber => $biblionumber});
835     is($record->field('001'), undef, '001 not set when pref is off');
836
837     t::lib::Mocks::mock_preference('autoControlNumber', 'biblionumber');
838     C4::Biblio::ModBiblio($record, $biblionumber, "", 1);
839     $record = GetMarcBiblio({biblionumber => $biblionumber});
840     is($record->field('001')->as_string(), $biblionumber, '001 set to biblionumber when pref set and field is blank');
841
842     $record->field('001')->update('Not biblionumber');
843     C4::Biblio::ModBiblio($record, $biblionumber, "", 1);
844     $record = GetMarcBiblio({biblionumber => $biblionumber});
845     is($record->field('001')->as_string(), 'Not biblionumber', '001 not set to biblionumber when pref set and field exists');
846
847 };
848
849
850 # Cleanup
851 Koha::Caches->get_instance->clear_from_cache( "MarcSubfieldStructure-" );
852 $schema->storage->txn_rollback;