Bugzilla – Attachment 169424 Details for
Bug 37430
(Bug 33407 follow-up) ISBD punctuation removal in ES searches
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37430: (Bug 33407 follow-up) Unit tests
Bug-37430-Bug-33407-follow-up-Unit-tests.patch (text/plain), 4.81 KB, created by
Roman Dolny
on 2024-07-23 14:18:47 UTC
(
hide
)
Description:
Bug 37430: (Bug 33407 follow-up) Unit tests
Filename:
MIME Type:
Creator:
Roman Dolny
Created:
2024-07-23 14:18:47 UTC
Size:
4.81 KB
patch
obsolete
>From a7f11ff4b559efd55dc899d15a7952ba9e01c5ca Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Wed, 12 Jun 2024 11:41:53 +0000 >Subject: [PATCH] Bug 37430: (Bug 33407 follow-up) Unit tests > >Signed-off-by: Roman Dolny <roman.dolny@jezuici.pl> >--- > .../SearchEngine/Elasticsearch/QueryBuilder.t | 79 +++++++++++++++++-- > 1 file changed, 72 insertions(+), 7 deletions(-) > >diff --git a/t/db_dependent/Koha/SearchEngine/Elasticsearch/QueryBuilder.t b/t/db_dependent/Koha/SearchEngine/Elasticsearch/QueryBuilder.t >index cf36311dfe..4b3c4f0b2f 100755 >--- a/t/db_dependent/Koha/SearchEngine/Elasticsearch/QueryBuilder.t >+++ b/t/db_dependent/Koha/SearchEngine/Elasticsearch/QueryBuilder.t >@@ -449,13 +449,78 @@ subtest 'build_query tests' => sub { > "query of boolean type field is not truncated even if QueryAutoTruncate is set" > ); > >- ( undef, $query ) = >- $qb->build_query_compat( undef, ['First title ; Second title : some & subtitle / Authors Name'] ); >- is( >- $query->{query}{query_string}{query}, >- '(First* title* Second* title* some* subtitle* Authors* Name*)', >- "ISBD punctualtion and problematic characters properly removed" >- ); >+ subtest 'removal of punctuation surrounded by spaces when autotruncate enabled' => sub { >+ plan tests => 7; >+ t::lib::Mocks::mock_preference( 'QueryAutoTruncate', '1' ); >+ t::lib::Mocks::mock_preference( 'QueryRegexEscapeOptions', 'escape' ); >+ ( undef, $query ) = $qb->build_query_compat( >+ undef, >+ ['First title ; subtitle : some & subtitle / Authors Name. Second title ; Third title / Second Author'] >+ ); >+ is( >+ $query->{query}{query_string}{query}, >+ '(First* title* subtitle* some* subtitle* Authors* Name. Second* title* Third* title* Second* Author*)', >+ "ISBD punctuation and problematic characters surrounded by spaces properly removed" >+ ); >+ >+ t::lib::Mocks::mock_preference( 'QueryRegexEscapeOptions', 'dont_escape' ); >+ ( undef, $query ) = $qb->build_query_compat( >+ undef, >+ ['First title ; subtitle : some & subtitle / Authors Name. Second title ; Third title / Second Author'] >+ ); >+ is( >+ $query->{query}{query_string}{query}, >+ '(First* title* subtitle* some* subtitle* / Authors* Name. Second* title* ; Third* title* / Second* Author*)', >+ "ISBD punctuation and problematic characters surrounded by spaces properly removed, RE saved" >+ ); >+ ( undef, $query ) = >+ $qb->build_query_compat( undef, ['Lorem / ipsum dolor / sit ; / amet'] ); >+ is( >+ $query->{query}{query_string}{query}, >+ '(Lorem* / ipsum* dolor* / sit* amet*)', >+ "RE saved, last odd unescaped slash preceded by a semicolon removed" >+ ); >+ >+ t::lib::Mocks::mock_preference( 'QueryRegexEscapeOptions', 'escape' ); >+ ( undef, $query ) = >+ $qb->build_query_compat( undef, ['Lorem \/ ipsum dolor \/ sit ; \/ amet'] ); >+ is( >+ $query->{query}{query_string}{query}, >+ '(Lorem* ipsum* dolor* sit* amet*)', >+ "Escaped slashes (also preceded by another punctuation followed by a space) removed" >+ ); >+ ( undef, $query ) = >+ $qb->build_query_compat( undef, ['comma , period . equal = hyphen - slash / escaped_slash \/'] ); >+ is( >+ $query->{query}{query_string}{query}, >+ '(comma* period* equal* hyphen* slash* escaped_slash* \/)', >+ "Other problematic characters surrounded by spaces properly removed" >+ ); >+ >+ ( undef, $query ) = >+ $qb->build_query_compat( undef, [' &;,:=-/ // \/\/ /&&&==&& ::-:: '] ); >+ is( >+ $query->{query}{query_string}{query}, >+ '()', >+ "Repeated problematic characters surrounded by spaces removed" >+ ); >+ >+ ( undef, $query ) = $qb->build_query_compat( >+ undef, >+ [ >+ '& amp& semicolon; ;colonsemi full: :full comma, ,comma dot. .dot =equal equal= hyphen- -hypen slash\/ \/slash' >+ ] >+ ); >+ is( >+ $query->{query}{query_string}{query}, >+ '(&* amp& semicolon; ;colonsemi* full* full* comma, ,comma* dot. .dot* equal* equal* hyphen- -hypen* slash\/ \/slash*)', >+ "ISBD punctuation and problematic characters not removed when not surrounded by spaces." >+ ); >+ >+ # Note above: semicolons and equals removed asthose are search field indicators - terms ending in punctuation >+ # are not truncated. >+ # Note that (colons/equal signs)/spaces glued to words are not removed by the feature under test but before. >+ }; > > ( undef, $query ) = $qb->build_query_compat( undef, ['J.R.R'] ); > is( >-- >2.39.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 37430
:
169408
|
169409
|
169423
|
169424
|
171606
|
171607