Bugzilla – Attachment 103858 Details for
Bug 25189
AutoCreateAuthorities can repeatedly generate authority records when using Default linker
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 25189: Unit tests
Bug-25189-Unit-tests.patch (text/plain), 1.94 KB, created by
Nick Clemens (kidclamp)
on 2020-04-28 13:30:12 UTC
(
hide
)
Description:
Bug 25189: Unit tests
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2020-04-28 13:30:12 UTC
Size:
1.94 KB
patch
obsolete
>From 7bed15f73418903440ebcd4de2a276c4584aec81 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Tue, 28 Apr 2020 13:29:52 +0000 >Subject: [PATCH] Bug 25189: Unit tests > >--- > t/db_dependent/Biblio.t | 28 ++++++++++++++++++++++++++++ > 1 file changed, 28 insertions(+) > >diff --git a/t/db_dependent/Biblio.t b/t/db_dependent/Biblio.t >index 1d12d29b37..f599819ff7 100755 >--- a/t/db_dependent/Biblio.t >+++ b/t/db_dependent/Biblio.t >@@ -29,6 +29,8 @@ use Koha::Database; > use Koha::Caches; > use Koha::MarcSubfieldStructures; > >+use C4::Linker::Default; >+ > BEGIN { > use_ok('C4::Biblio'); > } >@@ -124,6 +126,32 @@ subtest "GetMarcFromKohaField" => sub { > is( $retval[0].$retval[1], '399a', 'Including 399a' ); > }; > >+subtest "Authority creation with default linker" => sub { >+ plan tests => 2; >+ # Automatic authority creation >+ t::lib::Mocks::mock_preference('LinkerModule', 'Default'); >+ t::lib::Mocks::mock_preference('BiblioAddsAuthorities', 1); >+ t::lib::Mocks::mock_preference('AutoCreateAuthorities', 1); >+ t::lib::Mocks::mock_preference('marcflavour', 'MARC21'); >+ my $linker = C4::Linker::Default->new({}); >+ my $authorities_mod = Test::MockModule->new( 'C4::Heading' ); >+ $authorities_mod->mock( >+ 'authorities', >+ sub { >+ my $results = [{ authid => 'original' },{ authid => 'duplicate' }]; >+ return $results; >+ } >+ ); >+ my $marc_record = MARC::Record->new(); >+ my $field = MARC::Field->new(655, ' ', ' ','a' => 'Magical realism'); >+ $marc_record->append_fields( $field ); >+ my ($num_changed,$results) = LinkBibHeadingsToAuthorities($linker, $marc_record, "",undef); >+ is( $num_changed, 0, "We shouldn't link or create a new record"); >+ ok( !defined $results->{added}, "If we have multiple matches, we shouldn't create a new record"); >+}; >+ >+ >+ > # Mocking variables > my $biblio_module = new Test::MockModule('C4::Biblio'); > $biblio_module->mock( >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 25189
:
103858
|
103870
|
103871
|
103894
|
103895
|
106073
|
106074