Jonathan Druart
df3df9cf71
What we currently have: Koha/ElasticSearch.pm Koha/ElasticSearch/Indexer.pm Koha/SearchEngine/Elasticsearch/QueryBuilder.pm Koha/SearchEngine/Elasticsearch/Search.pm What we want: Koha/SearchEngine/Elasticsearch.pm Koha/SearchEngine/Elasticsearch/Indexer.pm Koha/SearchEngine/Elasticsearch/QueryBuilder.pm Koha/SearchEngine/Elasticsearch/Search.pm Test plan: % git grep -i Koha::ElasticSearch % git grep ElasticSearch|grep -v Catmandu::Store::ElasticSearch should not return any result Do a full reindex and search for records Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Brendan Gallagher <brendan@bywatersolutions.com>
60 lines
1.9 KiB
Perl
60 lines
1.9 KiB
Perl
# Copyright 2015 Catalyst IT
|
|
#
|
|
# 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 => 10;
|
|
|
|
use Koha::SearchEngine::Elasticsearch::QueryBuilder;
|
|
|
|
my $builder = Koha::SearchEngine::Elasticsearch::QueryBuilder->new( { index => 'mydb' } );
|
|
|
|
use_ok('Koha::SearchEngine::Elasticsearch::Search');
|
|
|
|
ok(
|
|
my $searcher = Koha::SearchEngine::Elasticsearch::Search->new(
|
|
{ 'nodes' => ['localhost:9200'], 'index' => 'mydb' }
|
|
),
|
|
'Creating a Koha::SearchEngine::Elasticsearch::Search object'
|
|
);
|
|
|
|
is( $searcher->index, 'mydb', 'Testing basic accessor' );
|
|
|
|
ok( my $query = $builder->build_query('easy'), 'Build a search query');
|
|
|
|
SKIP: {
|
|
|
|
eval { $builder->get_elasticsearch_params; };
|
|
|
|
skip 'ElasticSeatch configuration not available', 6
|
|
if $@;
|
|
|
|
ok( my $results = $searcher->search( $query) , 'Do a search ' );
|
|
|
|
ok( my $marc = $searcher->json2marc( $results->first ), 'Convert JSON to MARC');
|
|
|
|
is (my $count = $searcher->count( $query ), 0 , 'Get a count of the results, without returning results ');
|
|
|
|
ok ($results = $searcher->search_compat( $query ), 'Test search_compat' );
|
|
|
|
ok (($results,$count) = $searcher->search_auth_compat ( $query ), 'Test search_auth_compat' );
|
|
|
|
is ( $count = $searcher->count_auth_use($searcher,1), 0, 'Testing count_auth_use');
|
|
|
|
}
|
|
|
|
1;
|