Marcel de Rooy
80db256a47
There is really no need for all those modules here. What remains, is just a trivial test. Test plan: Run t/SuggestionEngine_AuthorityFile.t Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
50 lines
1.9 KiB
Perl
Executable file
50 lines
1.9 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# This file is part of Koha.
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Koha is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Koha; if not, see <http://www.gnu.org/licenses>.
|
|
|
|
# This Koha test module uses Test::MockModule to get around the need for known
|
|
# contents in the authority file by returning a single known authority record
|
|
# for every call to SearchAuthorities
|
|
|
|
use Modern::Perl;
|
|
use Test::More tests => 2;
|
|
use Test::MockModule;
|
|
|
|
use Koha::SuggestionEngine;
|
|
|
|
my $module = Test::MockModule->new('C4::AuthoritiesMarc');
|
|
$module->mock('SearchAuthorities', sub {
|
|
return [ { 'authid' => '1234',
|
|
'reported_tag' => undef,
|
|
'even' => 0,
|
|
'summary' => {
|
|
'authorized' => [ { 'heading' => 'Cooking' } ],
|
|
'otherscript' => [],
|
|
'seefrom' => [ 'Cookery' ],
|
|
'notes' => [ 'Your quintessential poor heading selection' ],
|
|
'seealso' => []
|
|
},
|
|
'used' => 1,
|
|
'authtype' => 'Topical Term'
|
|
} ], 1
|
|
});
|
|
|
|
my $suggestor = Koha::SuggestionEngine->new( { plugins => [ 'AuthorityFile' ] } );
|
|
is(ref($suggestor), 'Koha::SuggestionEngine', 'Created suggestion engine');
|
|
|
|
my $result = $suggestor->get_suggestions({search => 'Cookery'});
|
|
|
|
is_deeply($result, [ { 'search' => 'an:1234', 'relevance' => 1, 'label' => 'Cooking' } ], "Suggested correct alternative to 'Cookery'");
|