org.elasticsearch.index.analysis.AnalysisTestsHelper 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 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 or the Server
* Side Public License, v 1.
*/
package org.elasticsearch.index.analysis;
import org.elasticsearch.cluster.metadata.IndexMetadata;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.env.Environment;
import org.elasticsearch.index.IndexService.IndexCreationContext;
import org.elasticsearch.index.IndexSettings;
import org.elasticsearch.index.IndexVersion;
import org.elasticsearch.indices.analysis.AnalysisModule;
import org.elasticsearch.plugins.AnalysisPlugin;
import org.elasticsearch.plugins.scanners.StablePluginsRegistry;
import org.elasticsearch.test.ESTestCase;
import org.elasticsearch.test.IndexSettingsModule;
import java.io.IOException;
import java.nio.file.Path;
import java.util.Arrays;
public class AnalysisTestsHelper {
public static ESTestCase.TestAnalysis createTestAnalysisFromClassPath(
final Path baseDir,
final String resource,
final AnalysisPlugin... plugins
) throws IOException {
final Settings settings = Settings.builder()
.loadFromStream(resource, AnalysisTestsHelper.class.getResourceAsStream(resource), false)
.put(Environment.PATH_HOME_SETTING.getKey(), baseDir.toString())
.build();
return createTestAnalysisFromSettings(settings, plugins);
}
public static ESTestCase.TestAnalysis createTestAnalysisFromSettings(final Settings settings, final AnalysisPlugin... plugins)
throws IOException {
return createTestAnalysisFromSettings(settings, null, plugins);
}
public static ESTestCase.TestAnalysis createTestAnalysisFromSettings(
final Settings settings,
final Path configPath,
final AnalysisPlugin... plugins
) throws IOException {
final Settings actualSettings;
if (settings.get(IndexMetadata.SETTING_VERSION_CREATED) == null) {
actualSettings = Settings.builder().put(settings).put(IndexMetadata.SETTING_VERSION_CREATED, IndexVersion.current()).build();
} else {
actualSettings = settings;
}
final IndexSettings indexSettings = IndexSettingsModule.newIndexSettings("test", actualSettings);
final AnalysisRegistry analysisRegistry = new AnalysisModule(
new Environment(actualSettings, configPath),
Arrays.asList(plugins),
new StablePluginsRegistry()
).getAnalysisRegistry();
return new ESTestCase.TestAnalysis(
analysisRegistry.build(IndexCreationContext.CREATE_INDEX, indexSettings),
analysisRegistry.buildTokenFilterFactories(indexSettings),
analysisRegistry.buildTokenizerFactories(indexSettings),
analysisRegistry.buildCharFilterFactories(indexSettings)
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy