Bug 33406: Add tests
[koha.git] / t / Koha / SearchEngine / Elasticsearch / Search.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 => 2;
21 use Test::MockModule;
22 use t::lib::Mocks;
23
24 use_ok('Koha::SearchEngine::Elasticsearch::Search');
25
26 subtest 'search_auth_compat' => sub {
27     plan tests => 4;
28
29     t::lib::Mocks::mock_preference( 'QueryRegexEscapeOptions', 'dont_escape' );
30
31     my $search;
32     ok(
33         $search = Koha::SearchEngine::Elasticsearch::Search->new(
34             { index => $Koha::SearchEngine::Elasticsearch::AUTHORITIES_INDEX }
35         ),
36         'Creating a new Search object'
37     );
38
39     my $builder;
40     ok(
41         $builder =
42             Koha::SearchEngine::QueryBuilder->new( { index => $Koha::SearchEngine::Elasticsearch::AUTHORITIES_INDEX } ),
43         'Creating a new Builder object'
44     );
45
46     my $search_query = $builder->build_authorities_query_compat(
47         ['mainmainentry'], ['and'], [''], ['contains'],
48         ['Donald - Duck'], '',      'HeadingAsc'
49     );
50
51     my ( $bad_results, undef ) = $search->search_auth_compat( $search_query, 0, 20, undef );
52
53     is( @$bad_results[0], undef, 'We expect no record because it doesnt exist' );
54
55     my $module = Test::MockModule->new('Koha::SearchEngine::Elasticsearch::Search');
56     $module->mock( 'count_auth_use', sub { return 1 } );
57     $module->mock(
58         'search',
59         sub {
60             # While the 001 and the authid should be the same, it is not always the case
61             # The _id is always the authid and so should be our source of trutch
62             my $marc_record = MARC::Record->new();
63             $marc_record->append_fields(
64                 MARC::Field->new( '001', 'Wrong001Number' ),
65             );
66             return {
67                 hits => {
68                     hits => [
69                         {
70                             '_id'     => 8675309,
71                             '_source' => {
72                                 'local-number' => ['Wrong001Number'],
73                                 'marc_data'    => $marc_record,
74                                 'marc_format'  => 'base64ISO2709',
75                             },
76                         }
77                     ]
78                 }
79             };
80         }
81     );
82
83     my ( $results, undef ) = $search->search_auth_compat('faked');
84
85     is( @$results[0]->{authid}, '8675309', 'We get the expected record _id and not the 001' );
86
87 };
88
89 1;