Bug 10689: add regression test
[koha.git] / t / db_dependent / Search.t
1 #!/usr/bin/perl
2 #
3 # This Koha test module is a stub!
4 # Add more tests here!!!
5
6 use strict;
7 use warnings;
8 use utf8;
9
10 use YAML;
11
12 use C4::Debug;
13 require C4::Context;
14
15 use Test::More tests => 194;
16 use Test::MockModule;
17 use MARC::Record;
18 use File::Spec;
19 use File::Basename;
20 use File::Find;
21 use Test::Warn;
22 use File::Temp qw/ tempdir /;
23 use File::Path;
24 use DBI;
25
26 # work around spurious wide character warnings
27 binmode Test::More->builder->output, ":utf8";
28 binmode Test::More->builder->failure_output, ":utf8";
29
30 our $child;
31 our $datadir;
32
33 sub index_sample_records_and_launch_zebra {
34     my ($datadir, $indexing_mode, $marc_type) = @_;
35
36     my $sourcedir = dirname(__FILE__) . "/data";
37     unlink("$datadir/zebra.log");
38     if (-f "$sourcedir/${marc_type}/zebraexport/biblio/exported_records") {
39         my $zebra_bib_cfg = ($indexing_mode eq 'dom') ? 'zebra-biblios-dom.cfg' : 'zebra-biblios.cfg';
40         system("zebraidx -c $datadir/etc/koha/zebradb/$zebra_bib_cfg  -v none,fatal,warn  -g iso2709 -d biblios init");
41         system("zebraidx -c $datadir/etc/koha/zebradb/$zebra_bib_cfg  -v none,fatal,warn   -g iso2709 -d biblios update $sourcedir/${marc_type}/zebraexport/biblio");
42         system("zebraidx -c $datadir/etc/koha/zebradb/$zebra_bib_cfg  -v none,fatal,warn  -g iso2709 -d biblios commit");
43     }
44     if (-f "$sourcedir/${marc_type}/zebraexport/authority/exported_records") {
45         my $zebra_auth_cfg = ($indexing_mode eq 'dom') ? 'zebra-authorities-dom.cfg' : 'zebra-authorities.cfg';
46         system("zebraidx -c $datadir/etc/koha/zebradb/$zebra_auth_cfg  -v none,fatal,warn  -g iso2709 -d authorities init");
47         system("zebraidx -c $datadir/etc/koha/zebradb/$zebra_auth_cfg  -v none,fatal,warn   -g iso2709 -d authorities update $sourcedir/${marc_type}/zebraexport/authority");
48         system("zebraidx -c $datadir/etc/koha/zebradb/$zebra_auth_cfg  -v none,fatal,warn  -g iso2709 -d authorities commit");
49     }
50
51     $child = fork();
52     if ($child == 0) {
53         exec("zebrasrv -f $datadir/etc/koha-conf.xml -v none,request -l $datadir/zebra.log");
54         exit;
55     }
56
57     sleep(1);
58 }
59
60 sub cleanup {
61     if ($child) {
62         kill 9, $child;
63
64         # Clean up the Zebra files since the child process was just shot
65         rmtree $datadir;
66     }
67 }
68
69 # Fall back to make sure that the Zebra process
70 # and files get cleaned up
71 END {
72     cleanup();
73 }
74
75 our $QueryStemming = 0;
76 our $QueryAutoTruncate = 0;
77 our $QueryWeightFields = 0;
78 our $QueryFuzzy = 0;
79 our $QueryRemoveStopwords = 0;
80 our $UseQueryParser = 0;
81 our $marcflavour = 'MARC21';
82 our $contextmodule = new Test::MockModule('C4::Context');
83 $contextmodule->mock('_new_dbh', sub {
84     my $dbh = DBI->connect( 'DBI:Mock:', '', '' )
85     || die "Cannot create handle: $DBI::errstr\n";
86     return $dbh });
87 $contextmodule->mock('preference', sub {
88     my ($self, $pref) = @_;
89     if ($pref eq 'marcflavour') {
90         return $marcflavour;
91     } elsif ($pref eq 'QueryStemming') {
92         return $QueryStemming;
93     } elsif ($pref eq 'QueryAutoTruncate') {
94         return $QueryAutoTruncate;
95     } elsif ($pref eq 'QueryWeightFields') {
96         return $QueryWeightFields;
97     } elsif ($pref eq 'QueryFuzzy') {
98         return $QueryFuzzy;
99     } elsif ($pref eq 'QueryRemoveStopwords') {
100         return $QueryRemoveStopwords;
101     } elsif ($pref eq 'UseQueryParser') {
102         return $UseQueryParser;
103     } elsif ($pref eq 'maxRecordsForFacets') {
104         return 20;
105     } elsif ($pref eq 'FacetLabelTruncationLength') {
106         return 20;
107     } elsif ($pref eq 'OpacHiddenItems') {
108         return '';
109     } elsif ($pref eq 'AlternateHoldingsField') {
110         return '490av';
111     } elsif ($pref eq 'authoritysep') {
112         return '--';
113     } else {
114         warn "The syspref $pref was requested but I don't know what to say; this indicates that the test requires updating"
115             unless $pref =~ m/(XSLT|item|branch|holding|image)/i;
116         return 0;
117     }
118 });
119 $contextmodule->mock('queryparser', sub {
120     my $QParser     = Koha::QueryParser::Driver::PQF->new();
121     $QParser->load_config("$datadir/etc/searchengine/queryparser.yaml");
122     return $QParser;
123 });
124
125 sub mock_marcfromkohafield {
126     my $marc_type = shift;
127     if ($marc_type eq 'marc21') {
128         $contextmodule->mock('marcfromkohafield', sub {
129             return {
130                 '' => {
131                     'biblio.biblionumber' => [ '999', 'c' ],
132                     'items.barcode' => ['952', 'p' ],
133                     'items.booksellerid' => ['952', 'e' ],
134                     'items.ccode' => ['952', '8' ],
135                     'items.cn_sort' => ['952', '6' ],
136                     'items.cn_source' => ['952', '2' ],
137                     'items.coded_location_qualifier' => ['952', 'f' ],
138                     'items.copynumber' => ['952', 't' ],
139                     'items.damaged' => ['952', '4' ],
140                     'items.dateaccessioned' => ['952', 'd' ],
141                     'items.datelastborrowed' => ['952', 's' ],
142                     'items.datelastseen' => ['952', 'r' ],
143                     'items.enumchron' => ['952', 'h' ],
144                     'items.holdingbranch' => ['952', 'b' ],
145                     'items.homebranch' => ['952', 'a' ],
146                     'items.issues' => ['952', 'l' ],
147                     'items.itemcallnumber' => ['952', 'o' ],
148                     'items.itemlost' => ['952', '1' ],
149                     'items.itemnotes' => ['952', 'z' ],
150                     'items.itemnumber' => ['952', '9' ],
151                     'items.itype' => ['952', 'y' ],
152                     'items.location' => ['952', 'c' ],
153                     'items.materials' => ['952', '3' ],
154                     'items.nonpublicnote' => ['952', 'x' ],
155                     'items.notforloan' => ['952', '7' ],
156                     'items.onloan' => ['952', 'q' ],
157                     'items.price' => ['952', 'g' ],
158                     'items.renewals' => ['952', 'm' ],
159                     'items.replacementprice' => ['952', 'v' ],
160                     'items.replacementpricedate' => ['952', 'w' ],
161                     'items.reserves' => ['952', 'n' ],
162                     'items.restricted' => ['952', '5' ],
163                     'items.stack' => ['952', 'j' ],
164                     'items.uri' => ['952', 'u' ],
165                     'items.withdrawn' => ['952', '0' ]
166                     }
167                 };
168         });
169     }
170 }
171
172 sub run_marc21_search_tests {
173     my $indexing_mode = shift;
174     $datadir = tempdir();
175     system(dirname(__FILE__) . "/zebra_config.pl $datadir marc21 $indexing_mode");
176
177     mock_marcfromkohafield('marc21');
178     my $context = new C4::Context("$datadir/etc/koha-conf.xml");
179     $context->set_context();
180
181     use_ok('C4::Search');
182
183     # set search syspreferences to a known starting point
184     $QueryStemming = 0;
185     $QueryAutoTruncate = 0;
186     $QueryWeightFields = 0;
187     $QueryFuzzy = 0;
188     $QueryRemoveStopwords = 0;
189     $UseQueryParser = 0;
190     $marcflavour = 'MARC21';
191
192     foreach my $string ("Leçon","modèles") {
193         my @results=C4::Search::_remove_stopwords($string,"kw");
194         $debug && warn "$string ",Dump(@results);
195         ok($results[0] eq $string,"$string is not modified");
196     }
197
198     foreach my $string ("A book about the stars") {
199         my @results=C4::Search::_remove_stopwords($string,"kw");
200         $debug && warn "$string ",Dump(@results);
201         ok($results[0] ne $string,"$results[0] from $string");
202     }
203
204     my $indexes = C4::Search::getIndexes();
205     is(scalar(grep(/^ti$/, @$indexes)), 1, "Title index supported");
206
207     my $bibliomodule = new Test::MockModule('C4::Biblio');
208     $bibliomodule->mock('_get_inverted_marc_field_map', sub {
209         my %hash = (
210             '' => {
211                 '245' => { 'sfs' => { 'a' => [ [ 'biblio', 'title' ] ], 'b' => [ [ 'bibliosubtitle', 'subtitle' ] ] },
212                     'list' => [ [ 'a', 'biblio', 'title' ], [ 'b', 'bibliosubtitle', 'subtitle' ] ]
213                 },
214                 '100' => {
215                     'sfs' => { 'a' => [ [ 'biblio', 'author' ] ] },
216                     'list' => [ [ 'a', 'biblio', 'author' ] ]
217                 },
218                 '999' => {
219                     'sfs' => { 'c' => [ [ 'biblio', 'biblionumber' ] ], 'd' => [ [ 'biblioitems', 'biblioitemnumber' ] ] },
220                     'list' => [ [ 'd', 'biblioitems', 'biblioitemnumber' ], [ 'c', 'biblio', 'biblionumber' ] ]
221                 },
222                 '020' => {
223                     'sfs' => { 'a' => [ [ 'biblioitems', 'isbn' ] ] },
224                     'list' => [ [ 'a', 'biblioitems', 'isbn' ] ]
225                 }
226             }
227         );
228         return \%hash;
229     });
230     my $dbh = C4::Context->dbh;
231     $dbh->{mock_add_resultset} = {
232         sql     => 'SHOW COLUMNS FROM items',
233         results => [
234             [ 'rows' ], # seems like $sth->rows is getting called
235                         # implicitly, so we need this to make
236                         # DBD::Mock return all of the results
237             [ 'itemnumber' ], [ 'biblionumber' ], [ 'biblioitemnumber' ],
238             [ 'barcode' ], [ 'dateaccessioned' ], [ 'booksellerid' ],
239             [ 'homebranch' ], [ 'price' ], [ 'replacementprice' ],
240             [ 'replacementpricedate' ], [ 'datelastborrowed' ], [ 'datelastseen' ],
241             [ 'stack' ], [ 'notforloan' ], [ 'damaged' ],
242             [ 'itemlost' ], [ 'withdrawn' ], [ 'itemcallnumber' ],
243             [ 'issues' ], [ 'renewals' ], [ 'reserves' ],
244             [ 'restricted' ], [ 'itemnotes' ], [ 'nonpublicnote' ],
245             [ 'holdingbranch' ], [ 'paidfor' ], [ 'timestamp' ],
246             [ 'location' ], [ 'permanent_location' ], [ 'onloan' ],
247             [ 'cn_source' ], [ 'cn_sort' ], [ 'ccode' ],
248             [ 'materials' ], [ 'uri' ], [ 'itype' ],
249             [ 'more_subfields_xml' ], [ 'enumchron' ], [ 'copynumber' ],
250             [ 'stocknumber' ],
251         ]
252     };
253
254     my %branches = (
255         'CPL' => { 'branchaddress1' => 'Jefferson Summit', 'branchcode' => 'CPL', 'branchname' => 'Centerville', },
256         'FFL' => { 'branchaddress1' => 'River Station', 'branchcode' => 'FFL', 'branchname' => 'Fairfield', },
257         'FPL' => { 'branchaddress1' => 'Hickory Squere', 'branchcode' => 'FPL', 'branchname' => 'Fairview', },
258         'FRL' => { 'branchaddress1' => 'Smith Heights', 'branchcode' => 'FRL', 'branchname' => 'Franklin', },
259         'IPT' => { 'branchaddress1' => '', 'branchcode' => 'IPT', 'branchname' => "Institut Protestant de Théologie", },
260         'LPL' => { 'branchaddress1' => 'East Hills', 'branchcode' => 'LPL', 'branchname' => 'Liberty', },
261         'MPL' => { 'branchaddress1' => '372 Forest Street', 'branchcode' => 'MPL', 'branchname' => 'Midway', },
262         'PVL' => { 'branchaddress1' => 'Meadow Grove', 'branchcode' => 'PVL', 'branchname' => 'Pleasant Valley', },
263         'RPL' => { 'branchaddress1' => 'Johnson Terrace', 'branchcode' => 'RPL', 'branchname' => 'Riverside', },
264         'SPL' => { 'branchaddress1' => 'Highland Boulevard', 'branchcode' => 'SPL', 'branchname' => 'Springfield', },
265         'S'   => { 'branchaddress1' => '', 'branchcode' => 'S', 'branchname' => 'Test', },
266         'TPL' => { 'branchaddress1' => 'Valley Way', 'branchcode' => 'TPL', 'branchname' => 'Troy', },
267         'UPL' => { 'branchaddress1' => 'Chestnut Hollow', 'branchcode' => 'UPL', 'branchname' => 'Union', },
268     );
269     my %itemtypes = (
270         'BK' => { 'imageurl' => 'bridge/book.gif', 'summary' => '', 'itemtype' => 'BK', 'description' => 'Books' },
271         'CF' => { 'imageurl' => 'bridge/computer_file.gif', 'summary' => '', 'itemtype' => 'CF', 'description' => 'Computer Files' },
272         'CR' => { 'imageurl' => 'bridge/periodical.gif', 'summary' => '', 'itemtype' => 'CR', 'description' => 'Continuing Resources' },
273         'MP' => { 'imageurl' => 'bridge/map.gif', 'summary' => '', 'itemtype' => 'MP', 'description' => 'Maps' },
274         'MU' => { 'imageurl' => 'bridge/sound.gif', 'summary' => '', 'itemtype' => 'MU', 'description' => 'Music' },
275         'MX' => { 'imageurl' => 'bridge/kit.gif', 'summary' => '', 'itemtype' => 'MX', 'description' => 'Mixed Materials' },
276         'REF' => { 'imageurl' => '', 'summary' => '', 'itemtype' => 'REF', 'description' => 'Reference' },
277         'VM' => { 'imageurl' => 'bridge/dvd.gif', 'summary' => '', 'itemtype' => 'VM', 'description' => 'Visual Materials' },
278     );
279
280     index_sample_records_and_launch_zebra($datadir, $indexing_mode, 'marc21');
281
282     my ($biblionumber, $title);
283     my $record = MARC::Record->new;
284
285     $record->add_fields(
286             [ '020', ' ', ' ', a => '9788522421718' ],
287             [ '245', '0', '0', a => 'Administração da produção /' ]
288             );
289     ($biblionumber,undef,$title) = FindDuplicate($record);
290     is($biblionumber, 51, 'Found duplicate with ISBN');
291
292     $record = MARC::Record->new;
293
294     $record->add_fields(
295             [ '100', '1', ' ', a => 'Carter, Philip J.' ],
296             [ '245', '1', '4', a => 'Test your emotional intelligence :' ]
297             );
298     ($biblionumber,undef,$title) = FindDuplicate($record);
299     is($biblionumber, 203, 'Found duplicate with author/title');
300
301     # Testing SimpleSearch
302
303     my ( $error, $marcresults, $total_hits ) = SimpleSearch("book", 0, 9);
304
305     is(scalar @$marcresults, 9, "SimpleSearch retrieved requested number of records");
306     is($total_hits, 101, "SimpleSearch for 'book' matched right number of records");
307     is($error, undef, "SimpleSearch does not return an error when successful");
308
309     my $marcresults2;
310     ( $error, $marcresults2, $total_hits ) = SimpleSearch("book", 5, 5);
311     is($marcresults->[5], $marcresults2->[0], "SimpleSearch cursor functions");
312
313     ( $error, $marcresults, $total_hits ) = SimpleSearch("kw=book", 0, 10);
314     is($total_hits, 101, "SimpleSearch handles simple CCL");
315
316     ( $error, $marcresults, $total_hits ) = SimpleSearch("Music-number=49631-2", 0, 10);
317     is($total_hits, 1, "SimpleSearch on music publisher number works (bug 8252)");
318     ( $error, $marcresults, $total_hits ) = SimpleSearch("Identifier-publisher-for-music=49631-2", 0, 10);
319     is($total_hits, 1, "SimpleSearch on music publisher number works using Identifier-publisher-for-music (bug 8252)");
320
321     # Testing getRecords
322
323     my $results_hashref;
324     my $facets_loop;
325     ( undef, $results_hashref, $facets_loop ) =
326         getRecords('kw:book', 'book', [], [ 'biblioserver' ], '19', 0, undef, \%branches, \%itemtypes, 'ccl', undef);
327     is($results_hashref->{biblioserver}->{hits}, 101, "getRecords keyword search for 'book' matched right number of records");
328     is(scalar @{$results_hashref->{biblioserver}->{RECORDS}}, 19, "getRecords returned requested number of records");
329     my $record5 = $results_hashref->{biblioserver}->{RECORDS}->[5];
330     ( undef, $results_hashref, $facets_loop ) =
331         getRecords('kw:book', 'book', [], [ 'biblioserver' ], '20', 5, undef, \%branches, \%itemtypes, 'ccl', undef);
332     ok(!defined $results_hashref->{biblioserver}->{RECORDS}->[0] &&
333         !defined $results_hashref->{biblioserver}->{RECORDS}->[1] &&
334         !defined $results_hashref->{biblioserver}->{RECORDS}->[2] &&
335         !defined $results_hashref->{biblioserver}->{RECORDS}->[3] &&
336         !defined $results_hashref->{biblioserver}->{RECORDS}->[4] &&
337         $results_hashref->{biblioserver}->{RECORDS}->[5] eq $record5, "getRecords cursor works");
338
339     ( undef, $results_hashref, $facets_loop ) =
340         getRecords('ti:book', 'ti:book', [], [ 'biblioserver' ], '20', 0, undef, \%branches, \%itemtypes, 'ccl', undef);
341     is($results_hashref->{biblioserver}->{hits}, 11, "getRecords title search for 'book' matched right number of records");
342
343     ( undef, $results_hashref, $facets_loop ) =
344         getRecords('au:Lessig', 'au:Lessig', [], [ 'biblioserver' ], '20', 0, undef, \%branches, \%itemtypes, 'ccl', undef);
345     is($results_hashref->{biblioserver}->{hits}, 4, "getRecords title search for 'Australia' matched right number of records");
346
347     ( undef, $results_hashref, $facets_loop ) =
348         getRecords('salud', 'salud', [], [ 'biblioserver' ], '19', 0, undef, \%branches, \%itemtypes, 'ccl', undef);
349     ok(MARC::Record::new_from_usmarc($results_hashref->{biblioserver}->{RECORDS}->[0])->title_proper() =~ m/^Efectos del ambiente/ &&
350         MARC::Record::new_from_usmarc($results_hashref->{biblioserver}->{RECORDS}->[7])->title_proper() eq 'Salud y seguridad de los trabajadores del sector salud: manual para gerentes y administradores^ies' &&
351         MARC::Record::new_from_usmarc($results_hashref->{biblioserver}->{RECORDS}->[18])->title_proper() =~ m/^Indicadores de resultados identificados/
352         , "Simple relevance sorting in getRecords matches old behavior");
353
354     ( undef, $results_hashref, $facets_loop ) =
355         getRecords('salud', 'salud', [ 'author_az' ], [ 'biblioserver' ], '38', 0, undef, \%branches, \%itemtypes, 'ccl', undef);
356     ok(MARC::Record::new_from_usmarc($results_hashref->{biblioserver}->{RECORDS}->[0])->title_proper() =~ m/la enfermedad laboral\^ies$/ &&
357         MARC::Record::new_from_usmarc($results_hashref->{biblioserver}->{RECORDS}->[6])->title_proper() =~ m/^Indicadores de resultados identificados/ &&
358         MARC::Record::new_from_usmarc($results_hashref->{biblioserver}->{RECORDS}->[18])->title_proper() eq 'World health statistics 2009^ien'
359         , "Simple ascending author sorting in getRecords matches old behavior");
360
361     ( undef, $results_hashref, $facets_loop ) =
362         getRecords('salud', 'salud', [ 'author_za' ], [ 'biblioserver' ], '38', 0, undef, \%branches, \%itemtypes, 'ccl', undef);
363     ok(MARC::Record::new_from_usmarc($results_hashref->{biblioserver}->{RECORDS}->[0])->title_proper() eq 'World health statistics 2009^ien' &&
364         MARC::Record::new_from_usmarc($results_hashref->{biblioserver}->{RECORDS}->[12])->title_proper() =~ m/^Indicadores de resultados identificados/ &&
365         MARC::Record::new_from_usmarc($results_hashref->{biblioserver}->{RECORDS}->[18])->title_proper() =~ m/la enfermedad laboral\^ies$/
366         , "Simple descending author sorting in getRecords matches old behavior");
367
368     ( undef, $results_hashref, $facets_loop ) =
369         getRecords('salud', 'salud', [ 'pubdate_asc' ], [ 'biblioserver' ], '38', 0, undef, \%branches, \%itemtypes, 'ccl', undef);
370     ok(MARC::Record::new_from_usmarc($results_hashref->{biblioserver}->{RECORDS}->[0])->title_proper() eq 'Manual de higiene industrial^ies' &&
371         MARC::Record::new_from_usmarc($results_hashref->{biblioserver}->{RECORDS}->[7])->title_proper() =~ m/seguridad e higiene del trabajo\^ies$/ &&
372         MARC::Record::new_from_usmarc($results_hashref->{biblioserver}->{RECORDS}->[18])->title_proper() =~ m/^Indicadores de resultados identificados/
373         , "Simple ascending publication date sorting in getRecords matches old behavior");
374
375     ( undef, $results_hashref, $facets_loop ) =
376         getRecords('salud', 'salud', [ 'pubdate_dsc' ], [ 'biblioserver' ], '38', 0, undef, \%branches, \%itemtypes, 'ccl', undef);
377     ok(MARC::Record::new_from_usmarc($results_hashref->{biblioserver}->{RECORDS}->[0])->title_proper() =~ m/^Estado de salud/ &&
378         MARC::Record::new_from_usmarc($results_hashref->{biblioserver}->{RECORDS}->[7])->title_proper() eq 'World health statistics 2009^ien' &&
379         MARC::Record::new_from_usmarc($results_hashref->{biblioserver}->{RECORDS}->[18])->title_proper() eq 'Manual de higiene industrial^ies'
380         , "Simple descending publication date sorting in getRecords matches old behavior");
381
382     ( undef, $results_hashref, $facets_loop ) =
383         getRecords('books', 'books', [ 'relevance' ], [ 'biblioserver' ], '20', 0, undef, \%branches, \%itemtypes, undef, 1);
384     $record = MARC::Record::new_from_usmarc($results_hashref->{biblioserver}->{RECORDS}->[0]);
385     is($record->title_proper(), 'books', "Scan returned requested item");
386     is($record->subfield('100', 'a'), 2, "Scan returned correct number of records matching term");
387
388     # Time to test buildQuery and searchResults too.
389
390     my ( $query, $simple_query, $query_cgi,
391     $query_desc, $limit, $limit_cgi, $limit_desc,
392     $stopwords_removed, $query_type );
393     ( $error, $query, $simple_query, $query_cgi,
394     $query_desc, $limit, $limit_cgi, $limit_desc,
395     $stopwords_removed, $query_type ) = buildQuery([], [ 'salud' ], [], [], [], 0, 'en');
396     like($query, qr/kw\W.*salud/, "Built CCL keyword query");
397
398     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
399     is($results_hashref->{biblioserver}->{hits}, 19, "getRecords generated keyword search for 'salud' matched right number of records");
400
401     my @newresults = searchResults('opac', $query_desc, $results_hashref->{'biblioserver'}->{'hits'}, 18, 0, 0,
402         $results_hashref->{'biblioserver'}->{"RECORDS"});
403     is(scalar @newresults,18, "searchResults returns requested number of hits");
404
405     ( $error, $query, $simple_query, $query_cgi,
406     $query_desc, $limit, $limit_cgi, $limit_desc,
407     $stopwords_removed, $query_type ) = buildQuery([ 'and' ], [ 'salud', 'higiene' ], [], [], [], 0, 'en');
408     like($query, qr/kw\W.*salud\W.*and.*kw\W.*higiene/, "Built composed explicit-and CCL keyword query");
409
410     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
411     is($results_hashref->{biblioserver}->{hits}, 3, "getRecords generated composed keyword search for 'salud' explicit-and 'higiene' matched right number of records");
412
413     ( $error, $query, $simple_query, $query_cgi,
414     $query_desc, $limit, $limit_cgi, $limit_desc,
415     $stopwords_removed, $query_type ) = buildQuery([ 'or' ], [ 'salud', 'higiene' ], [], [], [], 0, 'en');
416     like($query, qr/kw\W.*salud\W.*or.*kw\W.*higiene/, "Built composed explicit-or CCL keyword query");
417
418     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
419     is($results_hashref->{biblioserver}->{hits}, 20, "getRecords generated composed keyword search for 'salud' explicit-or 'higiene' matched right number of records");
420
421     ( $error, $query, $simple_query, $query_cgi,
422     $query_desc, $limit, $limit_cgi, $limit_desc,
423     $stopwords_removed, $query_type ) = buildQuery([], [ 'salud', 'higiene' ], [], [], [], 0, 'en');
424     like($query, qr/kw\W.*salud\W.*and.*kw\W.*higiene/, "Built composed implicit-and CCL keyword query");
425
426     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
427     is($results_hashref->{biblioserver}->{hits}, 3, "getRecords generated composed keyword search for 'salud' implicit-and 'higiene' matched right number of records");
428
429     ( $error, $query, $simple_query, $query_cgi,
430     $query_desc, $limit, $limit_cgi, $limit_desc,
431     $stopwords_removed, $query_type ) = buildQuery([], [ 'salud' ], [ 'kw' ], [ 'su-to:Laboratorios' ], [], 0, 'en');
432     like($query, qr/kw\W.*salud\W*and\W*su-to\W.*Laboratorios/, "Faceted query generated correctly");
433     unlike($query_desc, qr/Laboratorios/, "Facets not included in query description");
434
435     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
436     is($results_hashref->{biblioserver}->{hits}, 2, "getRecords generated faceted search matched right number of records");
437
438
439     ( $error, $query, $simple_query, $query_cgi,
440     $query_desc, $limit, $limit_cgi, $limit_desc,
441     $stopwords_removed, $query_type ) = buildQuery([], [ '' ], [ 'kw' ], [ 'mc-itype:MP', 'mc-itype:MU' ], [], 0, 'en');
442
443     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
444     is($results_hashref->{biblioserver}->{hits}, 2, "getRecords generated mc-faceted search matched right number of records");
445
446
447     ( $error, $query, $simple_query, $query_cgi,
448     $query_desc, $limit, $limit_cgi, $limit_desc,
449     $stopwords_removed, $query_type ) = buildQuery([], [ '' ], [ 'kw' ], [ 'mc-loc:GEN', 'branch:FFL' ], [], 0, 'en');
450
451     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
452     is($results_hashref->{biblioserver}->{hits}, 2, "getRecords generated multi-faceted search matched right number of records");
453
454
455     # FIXME: the availability limit does not actually work, so for the moment we
456     # are just checking that it behaves consistently
457     ( $error, $query, $simple_query, $query_cgi,
458     $query_desc, $limit, $limit_cgi, $limit_desc,
459     $stopwords_removed, $query_type ) = buildQuery([], [ '' ], [ 'kw' ], [ 'available' ], [], 0, 'en');
460
461     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
462     is($results_hashref->{biblioserver}->{hits}, 26, "getRecords generated availability-limited search matched right number of records");
463
464     @newresults = searchResults('opac', $query_desc, $results_hashref->{'biblioserver'}->{'hits'}, 17, 0, 0,
465         $results_hashref->{'biblioserver'}->{"RECORDS"});
466     my $allavailable = 'true';
467     foreach my $result (@newresults) {
468         $allavailable = 'false' unless $result->{availablecount} > 0;
469     }
470     is ($allavailable, 'true', 'All records have at least one item available');
471
472
473     ( $error, $query, $simple_query, $query_cgi,
474     $query_desc, $limit, $limit_cgi, $limit_desc,
475     $stopwords_removed, $query_type ) = buildQuery([], [ 'pqf=@attr 1=_ALLRECORDS @attr 2=103 ""' ], [], [], [], 0, 'en');
476
477     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
478     is($results_hashref->{biblioserver}->{hits}, 178, "getRecords on _ALLRECORDS PQF returned all records");
479
480     ( $error, $query, $simple_query, $query_cgi,
481     $query_desc, $limit, $limit_cgi, $limit_desc,
482     $stopwords_removed, $query_type ) = buildQuery([], [ 'pqf=@attr 1=1016 "Lessig"' ], [], [], [], 0, 'en');
483
484     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
485     is($results_hashref->{biblioserver}->{hits}, 4, "getRecords PQF author search for Lessig returned proper number of matches");
486
487     ( $error, $query, $simple_query, $query_cgi,
488     $query_desc, $limit, $limit_cgi, $limit_desc,
489     $stopwords_removed, $query_type ) = buildQuery([], [ 'ccl=au:Lessig' ], [], [], [], 0, 'en');
490
491     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
492     is($results_hashref->{biblioserver}->{hits}, 4, "getRecords CCL author search for Lessig returned proper number of matches");
493
494     ( $error, $query, $simple_query, $query_cgi,
495     $query_desc, $limit, $limit_cgi, $limit_desc,
496     $stopwords_removed, $query_type ) = buildQuery([], [ 'cql=dc.author any lessig' ], [], [], [], 0, 'en');
497
498     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
499     is($results_hashref->{biblioserver}->{hits}, 4, "getRecords CQL author search for Lessig returned proper number of matches");
500
501     $QueryStemming = $QueryAutoTruncate = $QueryFuzzy = $QueryRemoveStopwords = 0;
502     $QueryWeightFields = 1;
503     ( $error, $query, $simple_query, $query_cgi,
504     $query_desc, $limit, $limit_cgi, $limit_desc,
505     $stopwords_removed, $query_type ) = buildQuery([], [ 'salud' ], [ 'kw' ], [], [], 0, 'en');
506
507     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
508     is($results_hashref->{biblioserver}->{hits}, 19, "Weighted query returned correct number of results");
509     if ($indexing_mode eq 'grs1') {
510         is(MARC::Record::new_from_usmarc($results_hashref->{biblioserver}->{RECORDS}->[0])->title_proper(), 'Salud y seguridad de los trabajadores del sector salud: manual para gerentes y administradores^ies', "Weighted query returns best match first");
511     } else {
512         local $TODO = "Query weighting does not behave exactly the same in DOM vs. GRS";
513         is(MARC::Record::new_from_usmarc($results_hashref->{biblioserver}->{RECORDS}->[0])->title_proper(), 'Salud y seguridad de los trabajadores del sector salud: manual para gerentes y administradores^ies', "Weighted query returns best match first");
514     }
515
516     $QueryStemming = $QueryWeightFields = $QueryFuzzy = $QueryRemoveStopwords = 0;
517     $QueryAutoTruncate = 1;
518     ( $error, $query, $simple_query, $query_cgi,
519     $query_desc, $limit, $limit_cgi, $limit_desc,
520     $stopwords_removed, $query_type ) = buildQuery([], [ 'medic' ], [ 'kw' ], [], [], 0, 'en');
521
522     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
523     is($results_hashref->{biblioserver}->{hits}, 5, "Search for 'medic' returns matches  with automatic truncation on");
524
525     ( $error, $query, $simple_query, $query_cgi,
526     $query_desc, $limit, $limit_cgi, $limit_desc,
527     $stopwords_removed, $query_type ) = buildQuery([], [ 'medic*' ], [ 'kw' ], [], [], 0, 'en');
528
529     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
530     is($results_hashref->{biblioserver}->{hits}, 5, "Search for 'medic*' returns matches with automatic truncation on");
531
532     $QueryStemming = $QueryWeightFields = $QueryFuzzy = $QueryRemoveStopwords = $QueryAutoTruncate = 0;
533     ( $error, $query, $simple_query, $query_cgi,
534     $query_desc, $limit, $limit_cgi, $limit_desc,
535     $stopwords_removed, $query_type ) = buildQuery([], [ 'medic' ], [ 'kw' ], [], [], 0, 'en');
536
537     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
538     is($results_hashref->{biblioserver}->{hits}, undef, "Search for 'medic' returns no matches with automatic truncation off");
539
540     ( $error, $query, $simple_query, $query_cgi,
541     $query_desc, $limit, $limit_cgi, $limit_desc,
542     $stopwords_removed, $query_type ) = buildQuery([], [ 'medic*' ], [ 'kw' ], [], [], 0, 'en');
543
544     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
545     is($results_hashref->{biblioserver}->{hits}, 5, "Search for 'medic*' returns matches with automatic truncation off");
546
547     $QueryStemming = $QueryWeightFields = 1;
548     $QueryFuzzy = $QueryRemoveStopwords = $QueryAutoTruncate = 0;
549     ( $error, $query, $simple_query, $query_cgi,
550     $query_desc, $limit, $limit_cgi, $limit_desc,
551     $stopwords_removed, $query_type ) = buildQuery([], [ 'pressed' ], [ 'kw' ], [], [], 0, 'en');
552
553     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
554     is($results_hashref->{biblioserver}->{hits}, 7, "Search for 'pressed' returns matches when stemming (and query weighting) is on");
555
556     $QueryStemming = $QueryWeightFields = $QueryFuzzy = $QueryRemoveStopwords = $QueryAutoTruncate = 0;
557     ( $error, $query, $simple_query, $query_cgi,
558     $query_desc, $limit, $limit_cgi, $limit_desc,
559     $stopwords_removed, $query_type ) = buildQuery([], [ 'pressed' ], [ 'kw' ], [], [], 0, 'en');
560
561     ($error, $results_hashref, $facets_loop) = getRecords($query,$simple_query,[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
562     is($results_hashref->{biblioserver}->{hits}, undef, "Search for 'pressed' returns no matches when stemming is off");
563
564     # Let's see what happens when we pass bad data into these routines.
565     # We have to catch warnings since we're not very good about returning errors.
566
567     warning_like { ( $error, $marcresults, $total_hits ) = SimpleSearch("@==ccl blah", 0, 9) } qr/CCL parsing error/,
568         "SimpleSearch warns about CCL parsing error with nonsense query";
569     isnt($error, undef, "SimpleSearch returns an error when passed gibberish");
570
571     warning_like {( undef, $results_hashref, $facets_loop ) =
572         getRecords('kw:book', 'book', [], [ 'biblioserver' ], '19', 0, undef, \%branches, \%itemtypes, 'nonsense', undef) }
573         qr/Unknown query_type/, "getRecords warns about unknown query type";
574
575     warning_like {( undef, $results_hashref, $facets_loop ) =
576         getRecords('pqf=@attr 1=4 "title"', 'pqf=@attr 1=4 "title"', [], [ 'biblioserver' ], '19', 0, undef, \%branches, \%itemtypes, '', undef) }
577         qr/WARNING: query problem/, "getRecords warns when query type is not specified for non-CCL query";
578
579     # Let's just test a few other bits and bobs, just for fun
580
581     ($error, $results_hashref, $facets_loop) = getRecords("Godzina pąsowej róży","Godzina pąsowej róży",[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
582     @newresults = searchResults('intranet', $query_desc, $results_hashref->{'biblioserver'}->{'hits'}, 17, 0, 0,
583         $results_hashref->{'biblioserver'}->{"RECORDS"});
584     is($newresults[0]->{'alternateholdings_count'}, 1, 'Alternate holdings filled in correctly');
585
586
587     ## Regression test for Bug 10741
588
589     # make one of the test items appear to be in transit
590     my $circ_module = new Test::MockModule('C4::Circulation');
591     $circ_module->mock('GetTransfers', sub {
592         my $itemnumber = shift;
593         if ($itemnumber == 11) {
594             return ('2013-07-19', 'MPL', 'CPL');
595         } else {
596             return;
597         }
598     });
599
600     ($error, $results_hashref, $facets_loop) = getRecords("TEST12121212","TEST12121212",[ ], [ 'biblioserver' ],20,0,undef,\%branches,\%itemtypes,$query_type,0);
601     @newresults = searchResults('intranet', $query_desc, $results_hashref->{'biblioserver'}->{'hits'}, 17, 0, 0,
602         $results_hashref->{'biblioserver'}->{"RECORDS"});
603     ok(!exists($newresults[0]->{norequests}), 'presence of a transit does not block hold request action (bug 10741)');
604
605     # Testing exploding indexes
606     my $term;
607     my $searchmodule = new Test::MockModule('C4::Search');
608     $searchmodule->mock('SimpleSearch', sub {
609         my $query = shift;
610
611         is($query, "he:$term", "Searching for expected term '$term' for exploding") or return '', [], 0;
612
613         my $record = MARC::Record->new;
614         if ($query =~ m/Arizona/) {
615             $record->add_fields(
616                 [ '001', '1234' ],
617                 [ '151', ' ', ' ', a => 'Arizona' ],
618                 [ '551', ' ', ' ', a => 'United States', w => 'g' ],
619                 [ '551', ' ', ' ', a => 'Maricopa County', w => 'h' ],
620                 [ '551', ' ', ' ', a => 'Navajo County', w => 'h' ],
621                 [ '551', ' ', ' ', a => 'Pima County', w => 'h' ],
622                 [ '551', ' ', ' ', a => 'New Mexico' ],
623                 );
624         }
625         return '', [ $record->as_usmarc() ], 1;
626     });
627
628     $UseQueryParser = 1;
629     $term = 'Arizona';
630     ( $error, $query, $simple_query, $query_cgi,
631     $query_desc, $limit, $limit_cgi, $limit_desc,
632     $stopwords_removed, $query_type ) = buildQuery([], [ $term ], [ 'su-br' ], [  ], [], 0, 'en');
633     matchesExplodedTerms("Advanced search for broader subjects", $query, 'Arizona', 'United States');
634
635     ( $error, $query, $simple_query, $query_cgi,
636     $query_desc, $limit, $limit_cgi, $limit_desc,
637     $stopwords_removed, $query_type ) = buildQuery([], [ $term ], [ 'su-na' ], [  ], [], 0, 'en');
638     matchesExplodedTerms("Advanced search for narrower subjects", $query, 'Arizona', 'Maricopa County', 'Navajo County', 'Pima County');
639
640     ( $error, $query, $simple_query, $query_cgi,
641     $query_desc, $limit, $limit_cgi, $limit_desc,
642     $stopwords_removed, $query_type ) = buildQuery([], [ $term ], [ 'su-rl' ], [  ], [], 0, 'en');
643     matchesExplodedTerms("Advanced search for related subjects", $query, 'Arizona', 'United States', 'Maricopa County', 'Navajo County', 'Pima County');
644
645     ( $error, $query, $simple_query, $query_cgi,
646     $query_desc, $limit, $limit_cgi, $limit_desc,
647     $stopwords_removed, $query_type ) = buildQuery([], [ "$term", 'history' ], [ 'su-rl', 'kw' ], [  ], [], 0, 'en');
648     matchesExplodedTerms("Advanced search for related subjects and keyword 'history' searches related subjects", $query, 'Arizona', 'United States', 'Maricopa County', 'Navajo County', 'Pima County');
649     like($query, qr/history/, "Advanced search for related subjects and keyword 'history' searches for 'history'");
650
651     ( $error, $query, $simple_query, $query_cgi,
652     $query_desc, $limit, $limit_cgi, $limit_desc,
653     $stopwords_removed, $query_type ) = buildQuery([], [ 'history', "$term" ], [ 'kw', 'su-rl' ], [  ], [], 0, 'en');
654     matchesExplodedTerms("Order of terms doesn't matter for advanced search", $query, 'Arizona', 'United States', 'Maricopa County', 'Navajo County', 'Pima County');
655     like($query, qr/history/, "Order of terms doesn't matter for advanced search");
656
657     ( $error, $query, $simple_query, $query_cgi,
658     $query_desc, $limit, $limit_cgi, $limit_desc,
659     $stopwords_removed, $query_type ) = buildQuery([], [ "su-br($term)" ], [  ], [  ], [], 0, 'en');
660     matchesExplodedTerms("Simple search for broader subjects", $query, 'Arizona', 'United States');
661
662     ( $error, $query, $simple_query, $query_cgi,
663     $query_desc, $limit, $limit_cgi, $limit_desc,
664     $stopwords_removed, $query_type ) = buildQuery([], [ "su-na($term)" ], [  ], [  ], [], 0, 'en');
665     matchesExplodedTerms("Simple search for narrower subjects", $query, 'Arizona', 'Maricopa County', 'Navajo County', 'Pima County');
666
667     ( $error, $query, $simple_query, $query_cgi,
668     $query_desc, $limit, $limit_cgi, $limit_desc,
669     $stopwords_removed, $query_type ) = buildQuery([], [ "su-rl($term)" ], [  ], [  ], [], 0, 'en');
670     matchesExplodedTerms("Simple search for related subjects", $query, 'Arizona', 'United States', 'Maricopa County', 'Navajo County', 'Pima County');
671
672     ( $error, $query, $simple_query, $query_cgi,
673     $query_desc, $limit, $limit_cgi, $limit_desc,
674     $stopwords_removed, $query_type ) = buildQuery([], [ "history && su-rl($term)" ], [  ], [  ], [], 0, 'en');
675     matchesExplodedTerms("Simple search for related subjects and keyword 'history' searches related subjects", $query, 'Arizona', 'United States', 'Maricopa County', 'Navajo County', 'Pima County');
676     like($query, qr/history/, "Simple search for related subjects and keyword 'history' searches for 'history'");
677
678     sub matchesExplodedTerms {
679         my ($message, $query, @terms) = @_;
680         my $match = '(' . join ('|', map { " \@attr 1=Subject \@attr 4=1 \"$_\"" } @terms) . "){" . scalar(@terms) . "}";
681         like($query, qr/$match/, $message);
682     }
683
684     # authority records
685     use_ok('C4::AuthoritiesMarc');
686     $UseQueryParser = 0;
687
688     my ($auths, $count) = SearchAuthorities(
689         ['mainentry'], ['and'], [''], ['starts'],
690         ['shakespeare'], 0, 10, '', '', 1
691     );
692     is($count, 1, 'MARC21 authorities: one hit on mainentry starts with "shakespeare"');
693     ($auths, $count) = SearchAuthorities(
694         ['match'], ['and'], [''], ['contains'],
695         ['沙士北亞威廉姆'], 0, 10, '', '', 1
696     );
697     is($count, 1, 'MARC21 authorities: one hit on match contains "沙士北亞威廉姆"');
698
699     cleanup();
700 }
701
702 sub run_unimarc_search_tests {
703     my $indexing_mode = shift;
704     $datadir = tempdir();
705     system(dirname(__FILE__) . "/zebra_config.pl $datadir unimarc $indexing_mode");
706
707     mock_marcfromkohafield('unimarc');
708     my $context = new C4::Context("$datadir/etc/koha-conf.xml");
709     $context->set_context();
710
711     use_ok('C4::Search');
712
713     # set search syspreferences to a known starting point
714     $QueryStemming = 0;
715     $QueryAutoTruncate = 0;
716     $QueryWeightFields = 0;
717     $QueryFuzzy = 0;
718     $QueryRemoveStopwords = 0;
719     $UseQueryParser = 0;
720     $marcflavour = 'UNIMARC';
721
722     index_sample_records_and_launch_zebra($datadir, $indexing_mode, 'unimarc');
723
724     my ( $error, $marcresults, $total_hits ) = SimpleSearch("ti=Järnvägarnas efterfrågan och den svenska industrin", 0, 10);
725     is($total_hits, 1, 'UNIMARC title search');
726     ( $error, $marcresults, $total_hits ) = SimpleSearch("ta=u", 0, 10);
727     is($total_hits, 1, 'UNIMARC target audience = u');
728     ( $error, $marcresults, $total_hits ) = SimpleSearch("ta=k", 0, 10);
729     is($total_hits, 4, 'UNIMARC target audience = k');
730     ( $error, $marcresults, $total_hits ) = SimpleSearch("ta=m", 0, 10);
731     is($total_hits, 3, 'UNIMARC target audience = m');
732     ( $error, $marcresults, $total_hits ) = SimpleSearch("item=EXCLU DU PRET", 0, 10);
733     is($total_hits, 1, 'UNIMARC generic item index (bug 10037)');
734
735     # authority records
736     use_ok('C4::AuthoritiesMarc');
737     $UseQueryParser = 0;
738
739     my ($auths, $count) = SearchAuthorities(
740         ['mainentry'], ['and'], [''], ['contains'],
741         ['wil'], 0, 10, '', '', 1
742     );
743     is($count, 11, 'UNIMARC authorities: hits on mainentry contains "wil"');
744     ($auths, $count) = SearchAuthorities(
745         ['match'], ['and'], [''], ['contains'],
746         ['wil'], 0, 10, '', '', 1
747     );
748     is($count, 11, 'UNIMARC authorities: hits on match contains "wil"');
749     ($auths, $count) = SearchAuthorities(
750         ['mainentry'], ['and'], [''], ['contains'],
751         ['michel'], 0, 20, '', '', 1
752     );
753     is($count, 14, 'UNIMARC authorities: hits on mainentry contains "michel"');
754     ($auths, $count) = SearchAuthorities(
755         ['mainmainentry'], ['and'], [''], ['exact'],
756         ['valley'], 0, 20, '', '', 1
757     );
758     is($count, 1, 'UNIMARC authorities: hits on mainmainentry = "valley"');
759     ($auths, $count) = SearchAuthorities(
760         ['mainmainentry'], ['and'], [''], ['exact'],
761         ['vall'], 0, 20, '', '', 1
762     );
763     is($count, 0, 'UNIMARC authorities: no hits on mainmainentry = "vall"');
764     ($auths, $count) = SearchAuthorities(
765         ['Any'], ['and'], [''], ['starts'],
766         ['jean'], 0, 30, '', '', 1
767     );
768     is($count, 24, 'UNIMARC authorities: hits on any starts with "jean"');
769
770     cleanup();
771 }
772
773 run_marc21_search_tests('grs1');
774 run_marc21_search_tests('dom');
775
776 run_unimarc_search_tests('grs1');
777 run_unimarc_search_tests('dom');
778
779 1;