[
https://issues.apache.org/jira/browse/JENA-1488?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16435558#comment-16435558
]
ASF GitHub Bot commented on JENA-1488:
--------------------------------------
Github user rvesse commented on a diff in the pull request:
https://github.com/apache/jena/pull/395#discussion_r181083359
--- Diff:
jena-text/src/test/java/org/apache/jena/query/text/filter/TestSelectiveFoldingFilter.java
---
@@ -0,0 +1,135 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF 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.apache.jena.query.text.filter;
+
+import static org.junit.Assert.assertTrue;
+
+import java.io.IOException;
+import java.io.StringReader;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Collections;
+import java.util.List;
+
+import org.apache.lucene.analysis.CharArraySet;
+import org.apache.lucene.analysis.standard.StandardTokenizer;
+import org.apache.lucene.analysis.tokenattributes.CharTermAttribute;
+import org.junit.Before;
+import org.junit.Test;
+
+/**
+ * Test {@link SelectiveFoldingFilter}.
+ */
+
+public class TestSelectiveFoldingFilter {
+
+ private StringReader inputText;
+ private CharArraySet whitelisted;
+
+ @Before
+ public void setUp() {
+ inputText = new StringReader("Señora Siobhán, look at that
façade");
+ }
+
+ /**
+ * An empty white list means that the default behaviour of the
Lucene's ASCIIFoldingFilter applies.
+ * @throws IOException from Lucene API
+ */
+ @Test
+ public void testEmptyWhiteListIsOkay() throws IOException {
+ whitelisted = new CharArraySet(Collections.emptyList(), false);
+ List<String> tokens = collectTokens(inputText, whitelisted);
+ List<String> expected = Arrays.asList("Senora", "Siobhan", "look",
"at", "that", "facade");
+ assertTrue(tokens.equals(expected));
+ }
+
+ @Test
+ public void testSingleCharacterWhiteListed() throws IOException {
+ whitelisted = new CharArraySet(Arrays.asList("ç"), false);
+ List<String> tokens = collectTokens(inputText, whitelisted);
+ List<String> expected = Arrays.asList("Senora", "Siobhan", "look",
"at", "that", "façade");
+ assertTrue(tokens.equals(expected));
+ }
+
+ @Test
+ public void testCompleteWhiteListed() throws IOException {
+ whitelisted = new CharArraySet(Arrays.asList("ñ", "á", "ç"),
false);
+ List<String> tokens = collectTokens(inputText, whitelisted);
+ // here we should have the complete input
+ List<String> expected = Arrays.asList("Señora", "Siobhán", "look",
"at", "that", "façade");
+ assertTrue(tokens.equals(expected));
+ }
+
+ @Test
+ public void testCaseMatters() throws IOException {
+ // note the first capital letter
+ whitelisted = new CharArraySet(Arrays.asList("Ñ", "á", "ç"),
false);
+ List<String> tokens = collectTokens(inputText, whitelisted);
+ List<String> expected = Arrays.asList("Senora", "Siobhán", "look",
"at", "that", "façade");
+ assertTrue(tokens.equals(expected));
+ }
+
+ @Test
+ public void testMismatchWhiteList() throws IOException {
+ whitelisted = new CharArraySet(Arrays.asList("ú", "ć", "ž"),
false);
+ List<String> tokens = collectTokens(inputText, whitelisted);
+ List<String> expected = Arrays.asList("Senora", "Siobhan", "look",
"at", "that", "facade");
+ assertTrue(tokens.equals(expected));
+ }
+
+ @Test(expected = NullPointerException.class)
+ public void testNullWhiteListThrowsError() throws IOException {
+ collectTokens(inputText, null);
+ }
+
+ @Test
+ public void testEmptyInput() throws IOException {
+ whitelisted = new CharArraySet(Arrays.asList("ç"), false);
+ inputText = new StringReader("");
+ List<String> tokens = collectTokens(inputText, whitelisted);
+ List<String> expected = Collections.emptyList();
+ assertTrue(tokens.equals(expected));
+ }
+
+ /**
+ * Return the list of CharTermAttribute converted to a list of
String's.
+ *
+ * @param whitelisted white-list
+ * @return list of CharTermAttribute converted to a list of String's
+ * @throws IOException from Lucene API
+ */
+ private List<String> collectTokens(StringReader inputText,
CharArraySet whitelisted) throws IOException {
+ StandardTokenizer tokenizer = new StandardTokenizer();
+ tokenizer.setReader(inputText);
+
+ // Replace this by a C, and then the ASCIIFolding function will
take care to replace it by c, as it was not whitelisted
--- End diff --
Leftover dev comment?
> SelectiveFoldingFilter for jena-text
> ------------------------------------
>
> Key: JENA-1488
> URL: https://issues.apache.org/jira/browse/JENA-1488
> Project: Apache Jena
> Issue Type: Improvement
> Components: Text
> Affects Versions: Jena 3.6.0
> Reporter: Osma Suominen
> Assignee: Bruno P. Kinoshita
> Priority: Major
>
> Currently there's some support for accent folding in jena-text, because
> Lucene provides an ASCIIFoldingFilter. When this filter is enabled, a search
> for "deja vu" will match the literal "déjà vu" in the data.
> But we can't use it here at the National Library of Finland (for Finto.fi /
> Skosmos), because it folds too much! In the Finnish alphabet, in addition to
> the Latin a-z (which are in ASCII) we use the letters åäö and these should
> not be folded to ASCII. So we need a Lucene analyzer that can be configured
> with an exclude list, something like
>
> new SelectiveFoldingFilter(String excludeChars)
>
> and that can be also be configured via the Jena assembler just like other
> analyzers supported by jena-text.
>
> This was also briefly discussed on the skosmos-users mailing list:
> [https://groups.google.com/d/msg/skosmos-users/x3zR_uRBQT0/Q90-O_iDAQAJ]
> Apparently Norwegians have the same problem...
> I've discussed this with [~kinow] and he has some initial code to implement
> this feature, so I think we can turn this into a PR fairly soon.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)