package org.apache.lucene.analysis.core; /* * 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. */ import org.apache.lucene.analysis.BaseTokenStreamTestCase; import org.apache.lucene.analysis.NumericTokenStream; import org.apache.lucene.analysis.util.ClasspathResourceLoader; import org.apache.lucene.analysis.util.ResourceLoader; import org.junit.Test; import java.util.HashMap; import java.util.Map; import java.util.Set; /** * Testcase for {@link TypeTokenFilterFactory} */ public class TestTypeTokenFilterFactory extends BaseTokenStreamTestCase { @Test public void testInform() throws Exception { ResourceLoader loader = new ClasspathResourceLoader(getClass()); TypeTokenFilterFactory factory = new TypeTokenFilterFactory(); Map<String, String> args = new HashMap<String, String>(); args.put("types", "stoptypes-1.txt"); args.put("enablePositionIncrements", "true"); factory.setLuceneMatchVersion(TEST_VERSION_CURRENT); factory.init(args); factory.inform(loader); Set<String> types = factory.getStopTypes(); assertTrue("types is null and it shouldn't be", types != null); assertTrue("types Size: " + types.size() + " is not: " + 2, types.size() == 2); assertTrue("enablePositionIncrements was set to true but not correctly parsed", factory.isEnablePositionIncrements()); factory = new TypeTokenFilterFactory(); args.put("types", "stoptypes-1.txt, stoptypes-2.txt"); args.put("enablePositionIncrements", "false"); args.put("useWhitelist","true"); factory.init(args); factory.inform(loader); types = factory.getStopTypes(); assertTrue("types is null and it shouldn't be", types != null); assertTrue("types Size: " + types.size() + " is not: " + 4, types.size() == 4); assertTrue("enablePositionIncrements was set to false but not correctly parsed", !factory.isEnablePositionIncrements()); } @Test public void testCreationWithBlackList() throws Exception { TypeTokenFilterFactory typeTokenFilterFactory = new TypeTokenFilterFactory(); Map<String, String> args = new HashMap<String, String>(); args.put("types", "stoptypes-1.txt, stoptypes-2.txt"); args.put("enablePositionIncrements", "false"); typeTokenFilterFactory.setLuceneMatchVersion(TEST_VERSION_CURRENT); typeTokenFilterFactory.init(args); NumericTokenStream input = new NumericTokenStream(); input.setIntValue(123); typeTokenFilterFactory.create(input); } @Test public void testCreationWithWhiteList() throws Exception { TypeTokenFilterFactory typeTokenFilterFactory = new TypeTokenFilterFactory(); Map<String, String> args = new HashMap<String, String>(); args.put("types", "stoptypes-1.txt, stoptypes-2.txt"); args.put("enablePositionIncrements", "false"); args.put("useWhitelist","true"); typeTokenFilterFactory.setLuceneMatchVersion(TEST_VERSION_CURRENT); typeTokenFilterFactory.init(args); NumericTokenStream input = new NumericTokenStream(); input.setIntValue(123); typeTokenFilterFactory.create(input); } @Test public void testMissingTypesParameter() throws Exception { try { TypeTokenFilterFactory typeTokenFilterFactory = new TypeTokenFilterFactory(); Map<String, String> args = new HashMap<String, String>(); args.put("enablePositionIncrements", "false"); typeTokenFilterFactory.setLuceneMatchVersion(TEST_VERSION_CURRENT); typeTokenFilterFactory.init(args); typeTokenFilterFactory.inform(new ClasspathResourceLoader(getClass())); fail("not supplying 'types' parameter should cause an IllegalArgumentException"); } catch (IllegalArgumentException e) { // everything ok } } }