Package org.sindice.siren.util

Source Code of org.sindice.siren.util.BasicSirenTestCase

/**
* Copyright 2014 National University of Ireland, Galway.
*
* This file is part of the SIREn project. Project and contact information:
*
*  https://github.com/rdelbru/SIREn
*
* Licensed 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.sindice.siren.util;

import java.io.IOException;
import java.security.InvalidParameterException;
import java.util.Collection;
import java.util.List;

import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.codecs.PostingsFormat;
import org.apache.lucene.document.Document;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.index.IndexWriterConfig;
import org.apache.lucene.index.RandomIndexWriter;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.store.Directory;
import org.junit.After;
import org.junit.Before;
import org.sindice.siren.analysis.MockSirenDocument;
import org.sindice.siren.index.codecs.RandomSirenCodec;
import org.sindice.siren.index.codecs.RandomSirenCodec.PostingsFormatType;

public abstract class BasicSirenTestCase extends SirenTestCase {

  protected Directory directory;
  protected RandomIndexWriter writer;
  protected IndexReader reader;
  protected IndexSearcher searcher;
  protected Analyzer analyzer;
  protected RandomSirenCodec codec;
  private IndexWriterConfig config;

  public enum AnalyzerType {
    MOCK, TUPLE, JSON
  }

  /**
   * Default configuration for the tests.
   * <p>
   * Overrides must call {@link #setAnalyzer(AnalyzerType)} and
   * {@link #setPostingsFormat(PostingsFormatType)} or
   * {@link #setPostingsFormat(PostingsFormat)}
   */
  protected abstract void configure() throws IOException;

  @Override
  @Before
  public void setUp() throws Exception {
    super.setUp();
    this.configure();
  }

  private void init() throws IOException {
    directory = newDirectory();
    if (config == null) {
      writer = newRandomIndexWriter(directory, analyzer, codec);
    } else {
      writer = newRandomIndexWriter(directory, analyzer, codec, config);
    }
    this.deleteAll(writer);
    reader = newIndexReader(writer);
    // tell to not wrap to avoid being wrapped by an AssertIndexWrapper
    // which causes problem in SirenDocsEnum#map. Moreover, it is not useful
    // for SIREn docs enum.
    searcher = newSearcher(reader, false);
  }

  @Override
  @After
  public void tearDown() throws Exception {
    this.close();
    config = null;
    super.tearDown();
  }

  private void close() throws IOException {
    if (reader != null) {
      reader.close();
      reader = null;
    }
    if (writer != null) {
      writer.close();
      writer = null;
    }
    if (directory != null) {
      directory.close();
      directory = null;
    }
  }

  protected void setIndexWriterConfig(final IndexWriterConfig config)
  throws IOException {
    this.config = config;
    if (analyzer != null || codec != null) {
      this.close();
      this.init();
    }
  }

  /**
   * Set a new postings format for a single test
   */
  protected void setPostingsFormat(final PostingsFormatType format)
  throws IOException {
    codec = new RandomSirenCodec(random(), format);
    if (analyzer != null) {
      this.close();
      this.init();
    }
  }

  /**
   * Set a new postings format for a single test
   * @throws IOException
   */
  protected void setPostingsFormat(final PostingsFormat format)
  throws IOException {
    codec = new RandomSirenCodec(random(), format);
    if (analyzer != null) {
      this.close();
      this.init();
    }
  }

  /**
   * Set a new analyzer for a single test
   */
  protected void setAnalyzer(final AnalyzerType analyzerType) throws IOException {
    this.analyzer = this.initAnalyzer(analyzerType);
    if (codec != null) {
      this.close();
      this.init();
    }
  }

  /**
   * Set a new analyzer for a single test
   */
  protected void setAnalyzer(final Analyzer analyzer) throws IOException {
    this.analyzer = analyzer;
    if (codec != null) {
      this.close();
      this.init();
    }
  }

  protected void refreshReaderAndSearcher() throws IOException {
    reader.close();
    reader = newIndexReader(writer);
    // tell to not wrap to avoid being wrapped by an AssertIndexWrapper
    // which causes problem in SirenDocsEnum#map. Moreover, it is not useful
    // for SIREn docs enum.
    searcher = newSearcher(reader, false);
  }

  protected void addDocument(final String data)
  throws IOException {
    addDocument(writer, data);
    this.refreshReaderAndSearcher();
  }

  protected void addDocument(final Document doc)
  throws IOException {
    writer.addDocument(doc);
    writer.commit();
    this.refreshReaderAndSearcher();
  }

  protected void addDocuments(final List<Document> docs)
  throws IOException {
    writer.addDocuments(docs);
    writer.commit();
    this.refreshReaderAndSearcher();
  }

  protected void addDocumentNoNorms(final String data)
  throws IOException {
    this.addDocumentNoNorms(writer, data);
    this.refreshReaderAndSearcher();
  }

  protected void addDocuments(final Collection<String> docs)
  throws IOException {
    addDocuments(writer, docs.toArray(new String[docs.size()]));
    this.refreshReaderAndSearcher();
  }

  protected void addDocuments(final String ... docs)
  throws IOException {
    addDocuments(writer, docs);
    this.refreshReaderAndSearcher();
  }

  protected void addDocuments(final MockSirenDocument ... sdocs)
  throws IOException {
    addDocuments(writer, sdocs);
    this.refreshReaderAndSearcher();
  }

  protected void deleteAll() throws IOException {
    this.deleteAll(writer);
    this.refreshReaderAndSearcher();
  }

  public void forceMerge() throws IOException {
    this.forceMerge(writer);
    this.refreshReaderAndSearcher();
  }

  private Analyzer initAnalyzer(final AnalyzerType analyzerType) {
    switch (analyzerType) {
      case MOCK:
        return SirenTestCase.newMockAnalyzer();

      case TUPLE:
        return SirenTestCase.newTupleAnalyzer();

      case JSON:
        return SirenTestCase.newJsonAnalyzer();

      default:
        throw new InvalidParameterException();
    }
  }

}
TOP

Related Classes of org.sindice.siren.util.BasicSirenTestCase

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.