blob: ec04c2be5b867dc2676e9017b9dea656e08179b5 [file] [log] [blame]
using Lucene.Net.Analysis.Core;
using NUnit.Framework;
using System.IO;
namespace Lucene.Net.Analysis.En
{
/*
* 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.
*/
/// <summary>
/// Tests for <seealso cref="KStemmer"/>
/// </summary>
public class TestKStemmer : BaseTokenStreamTestCase
{
internal Analyzer a = new AnalyzerAnonymousInnerClassHelper();
private class AnalyzerAnonymousInnerClassHelper : Analyzer
{
public AnalyzerAnonymousInnerClassHelper()
{
}
protected internal override TokenStreamComponents CreateComponents(string fieldName, TextReader reader)
{
Tokenizer tokenizer = new MockTokenizer(reader, MockTokenizer.WHITESPACE, true);
return new TokenStreamComponents(tokenizer, new KStemFilter(tokenizer));
}
}
/// <summary>
/// blast some random strings through the analyzer </summary>
[Test]
public virtual void TestRandomStrings()
{
CheckRandomData(Random, a, 1000 * RandomMultiplier);
}
/// <summary>
/// test the kstemmer optimizations against a bunch of words
/// that were stemmed with the original java kstemmer (generated from
/// testCreateMap, commented out below).
/// </summary>
[Test]
public virtual void TestVocabulary()
{
VocabularyAssert.AssertVocabulary(a, GetDataFile("kstemTestData.zip"), "kstem_examples.txt");
}
[Test]
public virtual void TestEmptyTerm()
{
Analyzer a = new AnalyzerAnonymousInnerClassHelper2(this);
CheckOneTerm(a, "", "");
}
private class AnalyzerAnonymousInnerClassHelper2 : Analyzer
{
private readonly TestKStemmer outerInstance;
public AnalyzerAnonymousInnerClassHelper2(TestKStemmer outerInstance)
{
this.outerInstance = outerInstance;
}
protected internal override TokenStreamComponents CreateComponents(string fieldName, TextReader reader)
{
Tokenizer tokenizer = new KeywordTokenizer(reader);
return new TokenStreamComponents(tokenizer, new KStemFilter(tokenizer));
}
}
// requires original java kstem source code to create map
//public void TestCreateMap() throws Exception
// {
// String input = getBigDoc();
// Reader r = new StringReader(input);
// TokenFilter tf = new LowerCaseFilter(new LetterTokenizer(r));
// // tf = new KStemFilter(tf);
// KStemmer kstem = new KStemmer();
// Map<String, String> map = new TreeMap<>();
// for(;;) {
// Token t = tf.next();
// if (t==null) break;
// String s = t.termText();
// if (map.containsKey(s)) continue;
// map.put(s, kstem.stem(s));
// }
// Writer out = new BufferedWriter(new FileWriter("kstem_examples.txt"));
// for (String key : map.keySet()) {
// out.write(key);
// out.write('\t');
// out.write(map.get(key));
// out.write('\n');
// }
// out.close();
//}
}
}