-
Notifications
You must be signed in to change notification settings - Fork 25k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…6484) This commit adds support for rules with multiple tokens on LHS, also known as "contraction rules", into stemmer override token filter. Contraction rules are handy into translating multiple inflected words into the same root form. One side effect of this change is that it brings stemmer override rules format closer to synonym rules format so that it makes it easier to translate one into another. This change also makes stemmer override rules parser more strict so that it should catch more errors which were previously accepted. Closes #56113
- Loading branch information
Showing
5 changed files
with
112 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
running => run | ||
running, runs => run | ||
|
||
stemmer => stemmer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
...c/test/java/org/elasticsearch/analysis/common/StemmerOverrideTokenFilterFactoryTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
* 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.apache.lucene.analysis.Tokenizer; | ||
import org.apache.lucene.analysis.core.WhitespaceTokenizer; | ||
import org.elasticsearch.common.settings.Settings; | ||
import org.elasticsearch.env.Environment; | ||
import org.elasticsearch.index.analysis.AnalysisTestsHelper; | ||
import org.elasticsearch.index.analysis.TokenFilterFactory; | ||
import org.elasticsearch.test.ESTestCase; | ||
import org.elasticsearch.test.ESTokenStreamTestCase; | ||
import org.junit.Rule; | ||
import org.junit.rules.ExpectedException; | ||
|
||
import java.io.IOException; | ||
import java.io.StringReader; | ||
import java.util.Arrays; | ||
import java.util.Locale; | ||
|
||
public class StemmerOverrideTokenFilterFactoryTests extends ESTokenStreamTestCase { | ||
@Rule | ||
public ExpectedException expectedException = ExpectedException.none(); | ||
|
||
public static TokenFilterFactory create(String... rules) throws IOException { | ||
ESTestCase.TestAnalysis analysis = AnalysisTestsHelper.createTestAnalysisFromSettings( | ||
Settings.builder() | ||
.put("index.analysis.filter.my_stemmer_override.type", "stemmer_override") | ||
.putList("index.analysis.filter.my_stemmer_override.rules", rules) | ||
.put(Environment.PATH_HOME_SETTING.getKey(), createTempDir().toString()) | ||
.build(), | ||
new CommonAnalysisPlugin()); | ||
|
||
return analysis.tokenFilter.get("my_stemmer_override"); | ||
} | ||
|
||
public void testRuleError() { | ||
for (String rule : Arrays.asList( | ||
"", // empty | ||
"a", // no arrow | ||
"a=>b=>c", // multiple arrows | ||
"=>a=>b", // multiple arrows | ||
"a=>", // no override | ||
"a=>b,c", // multiple overrides | ||
"=>a", // no keys | ||
"a,=>b" // empty key | ||
)) { | ||
expectThrows(RuntimeException.class, String.format( | ||
Locale.ROOT, "Should fail for invalid rule: '%s'", rule | ||
), () -> create(rule)); | ||
} | ||
} | ||
|
||
public void testRulesOk() throws IOException { | ||
TokenFilterFactory tokenFilterFactory = create( | ||
"a => 1", | ||
"b,c => 2" | ||
); | ||
Tokenizer tokenizer = new WhitespaceTokenizer(); | ||
tokenizer.setReader(new StringReader("a b c")); | ||
assertTokenStreamContents(tokenFilterFactory.create(tokenizer), new String[]{"1", "2", "2"}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters