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

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

/*
* 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 java.util.List;

import org.apache.lucene.analysis.Token;
import org.apache.lucene.analysis.TokenStream;
import org.apache.uima.lucas.indexer.analysis.TokenStreamConcatenator;
import org.apache.uima.lucas.indexer.test.util.CollectionTokenStream;


import junit.framework.TestCase;
import static org.apache.uima.lucas.indexer.util.TokenFactory.*;

public class TokenStreamConcatenatorTest extends TestCase {

  public void testNext() throws Exception{
    Collection<TokenStream> tokenStreams = new ArrayList<TokenStream>();
    List<Token> tokens = new ArrayList<Token>();
    tokens.add(newToken("token1", 0, 6));
    tokens.add(newToken("token2", 7, 13));
    tokens.add(newToken("token3", 14, 20));
   
    TokenStream tokenStream = new CollectionTokenStream(tokens );
    tokenStreams.add(tokenStream);

    tokens = new ArrayList<Token>();
    tokens.add(newToken("token4", 21, 27));
    tokens.add(newToken("token5", 28, 33));
    tokens.add(newToken("token6", 34, 40));

    tokenStream = new CollectionTokenStream(tokens );
    tokenStreams.add(tokenStream);
   
    TokenStreamConcatenator concatenator = new TokenStreamConcatenator(tokenStreams);
   
    Token nextToken = new Token();
    concatenator.next(nextToken);
    assertEquals("token1", new String(nextToken.termBuffer(), 0, nextToken.termLength()));
    nextToken = concatenator.next(nextToken);
    assertEquals("token2", new String(nextToken.termBuffer(), 0, nextToken.termLength()));
    nextToken = concatenator.next(nextToken);
    assertEquals("token3", new String(nextToken.termBuffer(), 0, nextToken.termLength()));
    nextToken = concatenator.next(nextToken);
    assertEquals("token4", new String(nextToken.termBuffer(), 0, nextToken.termLength()));
    nextToken = concatenator.next(nextToken);
    assertEquals("token5", new String(nextToken.termBuffer(), 0, nextToken.termLength()));
    nextToken = concatenator.next(nextToken);
    assertEquals("token6", new String(nextToken.termBuffer(), 0, nextToken.termLength()));
   
    concatenator.reset();
    nextToken = concatenator.next(nextToken);
    assertEquals("token1", new String(nextToken.termBuffer(), 0, nextToken.termLength()));
    nextToken = concatenator.next(nextToken);
    assertEquals("token2", new String(nextToken.termBuffer(), 0, nextToken.termLength()));
    nextToken = concatenator.next(nextToken);
    assertEquals("token3", new String(nextToken.termBuffer(), 0, nextToken.termLength()));
    nextToken = concatenator.next(nextToken);
    assertEquals("token4", new String(nextToken.termBuffer(), 0, nextToken.termLength()));
    nextToken = concatenator.next(nextToken);
    assertEquals("token5", new String(nextToken.termBuffer(), 0, nextToken.termLength()));
    nextToken = concatenator.next(nextToken);
    assertEquals("token6", new String(nextToken.termBuffer(), 0, nextToken.termLength()));   
  }
}
TOP

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

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.