Bugzilla – Attachment 171875 Details for
Bug 33348
Show authority heading use with Elasticsearch
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33348: Tests
Bug-33348-Tests.patch (text/plain), 2.58 KB, created by
Janusz Kaczmarek
on 2024-09-23 10:31:12 UTC
(
hide
)
Description:
Bug 33348: Tests
Filename:
MIME Type:
Creator:
Janusz Kaczmarek
Created:
2024-09-23 10:31:12 UTC
Size:
2.58 KB
patch
obsolete
>From 35a28a07d125de5765e6fc01958e99ec60455973 Mon Sep 17 00:00:00 2001 >From: Aleisha Amohia <aleishaamohia@hotmail.com> >Date: Thu, 16 Nov 2023 21:38:35 +0000 >Subject: [PATCH] Bug 33348: Tests > >prove t/Koha/SearchEngine/Elasticsearch/Search.t >--- > t/Koha/SearchEngine/Elasticsearch/Search.t | 17 +++++++++++++++-- > 1 file changed, 15 insertions(+), 2 deletions(-) > >diff --git a/t/Koha/SearchEngine/Elasticsearch/Search.t b/t/Koha/SearchEngine/Elasticsearch/Search.t >index cae1b2a96e..1ca6bd359e 100755 >--- a/t/Koha/SearchEngine/Elasticsearch/Search.t >+++ b/t/Koha/SearchEngine/Elasticsearch/Search.t >@@ -20,11 +20,13 @@ use Modern::Perl; > use Test::More tests => 2; > use Test::MockModule; > use t::lib::Mocks; >+use Encode qw( encode ); >+use MIME::Base64 qw( encode_base64 ); > > use_ok('Koha::SearchEngine::Elasticsearch::Search'); > > subtest 'search_auth_compat' => sub { >- plan tests => 4; >+ plan tests => 7; > > t::lib::Mocks::mock_preference( 'QueryRegexEscapeOptions', 'dont_escape' ); > t::lib::Mocks::mock_preference( 'SearchEngine', 'Elasticsearch' ); >@@ -65,6 +67,10 @@ subtest 'search_auth_compat' => sub { > $marc_record->append_fields( > MARC::Field->new( '001', 'Wrong001Number' ), > ); >+ $marc_record->append_fields( >+ MARC::Field->new( '008', '100803n||a| nnaban |a aaa |d' ), >+ ); >+ my $marc_data = encode_base64( encode( 'UTF-8', $marc_record->as_usmarc() ) ); > return { > hits => { > hits => [ >@@ -72,7 +78,7 @@ subtest 'search_auth_compat' => sub { > '_id' => 8675309, > '_source' => { > 'local-number' => ['Wrong001Number'], >- 'marc_data' => $marc_record, >+ 'marc_data' => $marc_data, > 'marc_format' => 'base64ISO2709', > }, > } >@@ -82,10 +88,17 @@ subtest 'search_auth_compat' => sub { > } > ); > >+ t::lib::Mocks::mock_preference( 'ShowHeadingUse', 1 ); > my ( $results, undef ) = $search->search_auth_compat('faked'); > > is( @$results[0]->{authid}, '8675309', 'We get the expected record _id and not the 001' ); > >+ is( @$results[0]->{main}, 1, 'Valid main heading with ShowHeadingUse' ); >+ is( >+ @$results[0]->{subject}, >+ undef, 'Valid main heading with ShowHeadingUse' >+ ); >+ is( @$results[0]->{series}, 1, 'Valid main heading with ShowHeadingUse' ); > }; > > 1; >-- >2.39.5
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 33348
:
148791
|
150440
|
150479
|
150481
|
150482
|
152570
|
152571
|
159066
|
171601
|
171602
|
171603
|
171686
|
171687
|
171688
|
171875
|
171876
|
173987
|
173988
|
173989