Package org.apache.uima.lucas.indexer.analysis

Source Code of org.apache.uima.lucas.indexer.analysis.AdditionFilterTest

/*
* 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.uima.lucas.indexer.analysis;

import java.util.ArrayList;
import java.util.Collection;
import org.apache.lucene.analysis.Token;
import org.apache.lucene.analysis.TokenStream;
import org.apache.uima.lucas.indexer.analysis.AdditionFilter;
import org.apache.uima.lucas.indexer.test.util.CollectionTokenStream;
import org.junit.Test;

import static org.junit.Assert.*;
import static org.apache.uima.lucas.indexer.util.TokenFactory.*;
;
public class AdditionFilterTest {

  @Test
  public void testNext() throws Exception{   
    Collection<Token> tokens = new ArrayList<Token>();
    tokens.add(newToken("token1", 0, 6));
    tokens.add(newToken("token2", 7, 13));
    tokens.add(newToken("token3", 14, 20));
    tokens.add(newToken("token4", 21, 27));
   
    TokenStream tokenStream = new CollectionTokenStream(tokens);
    AdditionFilter filter = new AdditionFilter(tokenStream, "prefix_", AdditionFilter.PREFIX);
   
    Token nextToken = new Token();
    filter.next(nextToken);
    assertEquals("prefix_token1", new String(nextToken.termBuffer(), 0, nextToken.termLength()));
    nextToken = filter.next(nextToken);
    assertEquals("prefix_token2", new String(nextToken.termBuffer(), 0, nextToken.termLength()));
    nextToken = filter.next(nextToken);
    assertEquals("prefix_token3", new String(nextToken.termBuffer(), 0, nextToken.termLength()));
    nextToken = filter.next(nextToken);
    assertEquals("prefix_token4", new String(nextToken.termBuffer(), 0, nextToken.termLength()));   

    tokens = new ArrayList<Token>();
    tokens.add(newToken("token1", 0, 6));
    tokens.add(newToken("token2", 7, 13));
    tokens.add(newToken("token3", 14, 20));
    tokens.add(newToken("token4", 21, 27));
   
    tokenStream = new CollectionTokenStream(tokens);
    filter = new AdditionFilter(tokenStream, "_postfix", AdditionFilter.POSTFIX);
   
    nextToken = filter.next(nextToken);
    assertEquals("token1_postfix", new String(nextToken.termBuffer(), 0, nextToken.termLength()));
    nextToken = filter.next(nextToken);
    assertEquals("token2_postfix", new String(nextToken.termBuffer(), 0, nextToken.termLength()));
    nextToken = filter.next(nextToken);
    assertEquals("token3_postfix", new String(nextToken.termBuffer(), 0, nextToken.termLength()));
    nextToken = filter.next(nextToken);
    assertEquals("token4_postfix", new String(nextToken.termBuffer(), 0, nextToken.termLength()));       
  }
}
TOP

Related Classes of org.apache.uima.lucas.indexer.analysis.AdditionFilterTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.