From 8bbcf7f668cbf9bcdec375e018166f3b91f9ad79 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Mon, 13 Jan 2014 16:26:22 -0300 Subject: [PATCH] Bug 11533: (regression test) QP breaks authority search This patch duplicates the SearchAuthority tests, with QP enabled. Searching shouldn't be affected by QP. Instructions for manually reproducing this can be read in the first comment for the bug entry. Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: Galen Charlton Signed-off-by: Kyle M Hall --- t/db_dependent/Search.t | 16 +++++++++++++++- 1 files changed, 15 insertions(+), 1 deletions(-) diff --git a/t/db_dependent/Search.t b/t/db_dependent/Search.t index 2a7215d..d358e98 100644 --- a/t/db_dependent/Search.t +++ b/t/db_dependent/Search.t @@ -12,7 +12,7 @@ use YAML; use C4::Debug; require C4::Context; -use Test::More tests => 212; +use Test::More tests => 216; use Test::MockModule; use MARC::Record; use File::Spec; @@ -742,6 +742,20 @@ sub run_marc21_search_tests { ); is($count, 1, 'MARC21 authorities: one hit on match contains "沙士北亞威廉姆"'); + $UseQueryParser = 1; + + ($auths, $count) = SearchAuthorities( + ['mainentry'], ['and'], [''], ['starts'], + ['shakespeare'], 0, 10, '', '', 1 + ); + is($count, 1, 'MARC21 authorities: one hit on mainentry starts with "shakespeare" (QP)'); + ($auths, $count) = SearchAuthorities( + ['match'], ['and'], [''], ['contains'], + ['沙士北亞威廉姆'], 0, 10, '', '', 1 + ); + is($count, 1, 'MARC21 authorities: one hit on match contains "沙士北亞威廉姆" (QP)'); + + cleanup(); } -- 1.7.2.5