Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

78 lines
3.2 KiB

#!/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>.
use Modern::Perl;
use Test::More tests => 3;
use Test::MockModule;
use_ok('Koha::SearchEngine::Zebra::QueryBuilder');
subtest 'build_authorities_query' => sub {
plan tests => 2;
my @test_search = (
['mainmainentry'], ['and'], [''], ['contains'], ['any'], '',
'HeadingAsc'
);
my $expected_result = {
marclist => ['mainmainentry'],
and_or => ['and'],
excluding => [''],
operator => ['contains'],
value => ['any'],
authtypecode => '',
orderby => 'HeadingAsc',
};
my $built_search =
Koha::SearchEngine::Zebra::QueryBuilder->build_authorities_query( @test_search );
is_deeply(
$built_search, $expected_result,
"We are simply hashifying our array of refs/values, should otherwise not be altered"
);
$expected_result->{value} = ['"any"'];
$test_search[4] = ['"any"'];
$built_search =
Koha::SearchEngine::Zebra::QueryBuilder->build_authorities_query( @test_search );
is_deeply(
$built_search, $expected_result,
"The same should hold true if the search contains double quotes which will be escaped during searching by search_auth_compat subroutine"
);
};
subtest 'build_query_compat() tests' => sub {
plan tests => 4;
my $search = Test::MockModule->new('C4::Search');
$search->mock( 'buildQuery', sub { return ( 'error', 'query', 'simple_query', 'query_cgi', 'query_desc', 'limit', 'limit_cgi', 'limit_desc', 'query_type' ) } );
my $qb = Koha::SearchEngine::Zebra::QueryBuilder->new();
my $query;
( undef, $query ) = $qb->build_query_compat( undef, undef, undef, undef, undef, undef, undef, { suppress => 1 } );
is( $query, '(query) not Suppress=1', 'Suppress part of the query added correctly');
( undef, $query ) = $qb->build_query_compat( undef, undef, undef, undef, undef, undef, undef, { suppress => 0 } );
is( $query, 'query', 'Suppress part of the query not added');
$search->mock( 'buildQuery', sub { return ( 'error', 'query', 'simple_query', 'query_cgi', 'query_desc', 'limit', 'limit_cgi', 'limit_desc', 'pqf' ) } );
( undef, $query ) = $qb->build_query_compat( undef, undef, undef, undef, undef, undef, undef, { suppress => 1 } );
is( $query, '@not query @attr 14=1 @attr 1=9011 1', 'Suppress part of the query added correctly (PQF)');
( undef, $query ) = $qb->build_query_compat( undef, undef, undef, undef, undef, undef, undef, { suppress => 0 } );
is( $query, 'query', 'Suppress part of the query not added (PQF)');
};