From: Frédéric Demians Date: Tue, 5 May 2020 17:19:26 +0000 (+0200) Subject: Bug 25325: Test ES lack of staff_client/opac fields X-Git-Url: http://git.equinoxoli.org/?p=koha-equinox.git;a=commitdiff_plain;h=f08e7ff8b583ffc547e4ac1faeee7101811fc6df Bug 25325: Test ES lack of staff_client/opac fields Run this test to see that export_elasticsearch_mappings.pl doesn't export staff_client/opac fields. Signed-off-by: Victor Grousset/tuxayo Signed-off-by: Jonathan Druart Signed-off-by: Martin Renvoize --- diff --git a/t/db_dependent/Koha/SearchEngine/Elasticsearch/ExportConfig.t b/t/db_dependent/Koha/SearchEngine/Elasticsearch/ExportConfig.t index b065b92..82dc553 100644 --- a/t/db_dependent/Koha/SearchEngine/Elasticsearch/ExportConfig.t +++ b/t/db_dependent/Koha/SearchEngine/Elasticsearch/ExportConfig.t @@ -17,7 +17,7 @@ use Modern::Perl; -use Test::More tests => 16; +use Test::More tests => 18; use Koha::Database; use Koha::SearchFields; @@ -40,8 +40,9 @@ my $search_field = Koha::SearchFields->find_or_create( name => 'title', label => 'Title', type => 'string', - weight => 17 - + weight => 17, + staff_client => 0, + opac => 1, }, { key => 'name' } ); @@ -92,6 +93,8 @@ my $mappings = Koha::SearchEngine::Elasticsearch::raw_elasticsearch_mappings(); is( $mappings->{biblios}{title}{type}, 'string', 'Title is of type string'); is( $mappings->{biblios}{title}{label}, 'Title', 'title has label Title'); is( $mappings->{biblios}{title}{facet_order}, undef, 'Facet order is undef'); +is( $mappings->{biblios}{title}{opac}, 1, 'title is opac searchable'); +is( $mappings->{biblios}{title}{staff_client}, 0, 'title is not staff searchable'); is(scalar(@{ $mappings->{biblios}{title}{mappings} }), 3, 'Title has 3 mappings');