|
@@ -0,0 +1,89 @@
|
|
|
+/*
|
|
|
+ * Licensed to Elasticsearch under one or more contributor
|
|
|
+ * license agreements. See the NOTICE file distributed with
|
|
|
+ * this work for additional information regarding copyright
|
|
|
+ * ownership. Elasticsearch licenses this file to you under
|
|
|
+ * the Apache License, Version 2.0 (the "License"); you may
|
|
|
+ * not use this file except in compliance with the License.
|
|
|
+ * You may obtain a copy of the License at
|
|
|
+ *
|
|
|
+ * http://www.apache.org/licenses/LICENSE-2.0
|
|
|
+ *
|
|
|
+ * Unless required by applicable law or agreed to in writing,
|
|
|
+ * software distributed under the License is distributed on an
|
|
|
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
+ * KIND, either express or implied. See the License for the
|
|
|
+ * specific language governing permissions and limitations
|
|
|
+ * under the License.
|
|
|
+ */
|
|
|
+
|
|
|
+package org.elasticsearch.analysis.common;
|
|
|
+
|
|
|
+import org.elasticsearch.Version;
|
|
|
+import org.elasticsearch.cluster.metadata.IndexMetaData;
|
|
|
+import org.elasticsearch.common.settings.Settings;
|
|
|
+import org.elasticsearch.env.Environment;
|
|
|
+import org.elasticsearch.env.TestEnvironment;
|
|
|
+import org.elasticsearch.index.IndexSettings;
|
|
|
+import org.elasticsearch.index.analysis.IndexAnalyzers;
|
|
|
+import org.elasticsearch.index.analysis.NamedAnalyzer;
|
|
|
+import org.elasticsearch.indices.analysis.AnalysisModule;
|
|
|
+import org.elasticsearch.script.Script;
|
|
|
+import org.elasticsearch.script.ScriptContext;
|
|
|
+import org.elasticsearch.script.ScriptService;
|
|
|
+import org.elasticsearch.test.ESTokenStreamTestCase;
|
|
|
+import org.elasticsearch.test.IndexSettingsModule;
|
|
|
+
|
|
|
+import java.io.IOException;
|
|
|
+import java.util.Collections;
|
|
|
+
|
|
|
+public class PredicateTokenScriptFilterTests extends ESTokenStreamTestCase {
|
|
|
+
|
|
|
+ public void testSimpleFilter() throws IOException {
|
|
|
+ Settings settings = Settings.builder()
|
|
|
+ .put(Environment.PATH_HOME_SETTING.getKey(), createTempDir().toString())
|
|
|
+ .build();
|
|
|
+ Settings indexSettings = Settings.builder()
|
|
|
+ .put(IndexMetaData.SETTING_VERSION_CREATED, Version.CURRENT)
|
|
|
+ .put("index.analysis.filter.f.type", "predicate_token_filter")
|
|
|
+ .put("index.analysis.filter.f.script.source", "token.getTerm().length() > 5")
|
|
|
+ .put("index.analysis.analyzer.myAnalyzer.type", "custom")
|
|
|
+ .put("index.analysis.analyzer.myAnalyzer.tokenizer", "standard")
|
|
|
+ .putList("index.analysis.analyzer.myAnalyzer.filter", "f")
|
|
|
+ .build();
|
|
|
+ IndexSettings idxSettings = IndexSettingsModule.newIndexSettings("index", indexSettings);
|
|
|
+
|
|
|
+ AnalysisPredicateScript.Factory factory = () -> new AnalysisPredicateScript() {
|
|
|
+ @Override
|
|
|
+ public boolean execute(Token token) {
|
|
|
+ return token.getTerm().length() > 5;
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ @SuppressWarnings("unchecked")
|
|
|
+ ScriptService scriptService = new ScriptService(indexSettings, Collections.emptyMap(), Collections.emptyMap()){
|
|
|
+ @Override
|
|
|
+ public <FactoryType> FactoryType compile(Script script, ScriptContext<FactoryType> context) {
|
|
|
+ assertEquals(context, AnalysisPredicateScript.CONTEXT);
|
|
|
+ assertEquals(new Script("token.getTerm().length() > 5"), script);
|
|
|
+ return (FactoryType) factory;
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ CommonAnalysisPlugin plugin = new CommonAnalysisPlugin();
|
|
|
+ plugin.createComponents(null, null, null, null, scriptService, null, null, null, null);
|
|
|
+ AnalysisModule module
|
|
|
+ = new AnalysisModule(TestEnvironment.newEnvironment(settings), Collections.singletonList(plugin));
|
|
|
+
|
|
|
+ IndexAnalyzers analyzers = module.getAnalysisRegistry().build(idxSettings);
|
|
|
+
|
|
|
+ try (NamedAnalyzer analyzer = analyzers.get("myAnalyzer")) {
|
|
|
+ assertNotNull(analyzer);
|
|
|
+ assertAnalyzesTo(analyzer, "Vorsprung Durch Technik", new String[]{
|
|
|
+ "Vorsprung", "Technik"
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+}
|