
org.elasticsearch.search.fetch.HighlighterTestCase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
Elasticsearch subproject :test:framework
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the "Elastic License
* 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side
* Public License v 1"; you may not use this file except in compliance with, at
* your election, the "Elastic License 2.0", the "GNU Affero General Public
* License v3.0 only", or the "Server Side Public License, v 1".
*/
package org.elasticsearch.search.fetch;
import org.apache.lucene.index.DirectoryReader;
import org.apache.lucene.index.FilterDirectoryReader;
import org.apache.lucene.index.FilterLeafReader;
import org.apache.lucene.index.IndexableField;
import org.apache.lucene.index.LeafReader;
import org.apache.lucene.index.StoredFields;
import org.elasticsearch.common.text.Text;
import org.elasticsearch.index.mapper.MapperService;
import org.elasticsearch.index.mapper.MapperServiceTestCase;
import org.elasticsearch.index.mapper.ParsedDocument;
import org.elasticsearch.index.query.ParsedQuery;
import org.elasticsearch.index.query.SearchExecutionContext;
import org.elasticsearch.search.SearchHit;
import org.elasticsearch.search.builder.SearchSourceBuilder;
import org.elasticsearch.search.fetch.subphase.highlight.DefaultHighlighter;
import org.elasticsearch.search.fetch.subphase.highlight.FastVectorHighlighter;
import org.elasticsearch.search.fetch.subphase.highlight.HighlightField;
import org.elasticsearch.search.fetch.subphase.highlight.HighlightPhase;
import org.elasticsearch.search.fetch.subphase.highlight.Highlighter;
import org.elasticsearch.search.fetch.subphase.highlight.PlainHighlighter;
import org.elasticsearch.search.lookup.Source;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
public class HighlighterTestCase extends MapperServiceTestCase {
protected Map getHighlighters() {
return Map.of(
"unified",
new DefaultHighlighter(),
"fvh",
new FastVectorHighlighter(getIndexSettings()),
"plain",
new PlainHighlighter()
);
}
/**
* Runs the highlight phase for a search over a specific document
* @param mapperService the Mappings to use for highlighting
* @param doc a parsed document to highlight
* @param search the search to highlight
*/
protected final Map highlight(MapperService mapperService, ParsedDocument doc, SearchSourceBuilder search)
throws IOException {
Map highlights = new HashMap<>();
withLuceneIndex(mapperService, iw -> iw.addDocument(doc.rootDoc()), ir -> {
SearchExecutionContext context = createSearchExecutionContext(
mapperService,
newSearcher(new NoStoredFieldsFilterDirectoryReader(ir))
);
HighlightPhase highlightPhase = new HighlightPhase(getHighlighters());
FetchSubPhaseProcessor processor = highlightPhase.getProcessor(fetchContext(context, search));
Map> storedFields = storedFields(processor.storedFieldsSpec(), doc);
Source source = Source.fromBytes(doc.source());
FetchSubPhase.HitContext hitContext = new FetchSubPhase.HitContext(
SearchHit.unpooled(0, "id"),
ir.leaves().get(0),
0,
storedFields,
source,
null
);
processor.process(hitContext);
highlights.putAll(hitContext.hit().getHighlightFields());
});
return highlights;
}
private static Map> storedFields(StoredFieldsSpec spec, ParsedDocument doc) {
Map> storedFields = new HashMap<>();
for (String field : spec.requiredStoredFields()) {
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy