Package org.apache.blur.manager.writer

Source Code of org.apache.blur.manager.writer.TransactionRecorderTest

package org.apache.blur.manager.writer;

/**
* 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 static org.apache.blur.lucene.LuceneVersionConstant.LUCENE_VERSION;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;

import java.io.Closeable;
import java.io.IOException;
import java.net.URI;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashSet;
import java.util.concurrent.TimeUnit;

import org.apache.blur.MiniCluster;
import org.apache.blur.log.Log;
import org.apache.blur.log.LogFactory;
import org.apache.blur.server.ShardContext;
import org.apache.blur.server.TableContext;
import org.apache.blur.thrift.generated.Column;
import org.apache.blur.thrift.generated.Record;
import org.apache.blur.thrift.generated.Row;
import org.apache.blur.thrift.generated.TableDescriptor;
import org.apache.blur.utils.BlurUtil;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IOUtils;
import org.apache.lucene.analysis.core.KeywordAnalyzer;
import org.apache.lucene.index.BlurIndexWriter;
import org.apache.lucene.index.DirectoryReader;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.index.IndexWriterConfig;
import org.apache.lucene.store.RAMDirectory;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;

public class TransactionRecorderTest {

  private static final Log LOG = LogFactory.getLog(TransactionRecorderTest.class);

  @BeforeClass
  public static void setup() {
    MiniCluster.startDfs("target/transaction-recorder-test");
  }

  @AfterClass
  public static void teardown() throws IOException {
    MiniCluster.shutdownDfs();
  }

  private Collection<Closeable> closeThis = new HashSet<Closeable>();

  @After
  public void after() {
    for (Closeable closeable : closeThis) {
      IOUtils.cleanup(LOG, closeable);
    }
  }

  @Test
  public void testReplaySimpleTest() throws IOException, InterruptedException {
    TableContext.clear();
    Configuration configuration = new Configuration(false);
    URI fileSystemUri = MiniCluster.getFileSystemUri();
    Path path = new Path(fileSystemUri.toString() + "/transaction-recorder-test");
    FileSystem fileSystem = path.getFileSystem(configuration);
    fileSystem.delete(path, true);

    KeywordAnalyzer analyzer = new KeywordAnalyzer();

    TableDescriptor tableDescriptor = new TableDescriptor();
    tableDescriptor.setName("table");
    String tableUri = new Path(path, "tableuri").toUri().toString();

    System.out.println("tableUri=" + tableUri);
    tableDescriptor.setTableUri(tableUri);

    TableContext tableContext = TableContext.create(tableDescriptor);
    ShardContext shardContext = ShardContext.create(tableContext, "shard-1");
    TransactionRecorder transactionRecorder = new TransactionRecorder(shardContext);
    closeThis.add(transactionRecorder);
    transactionRecorder.open();

    try {
      transactionRecorder.replaceRow(true, genRow(), null);
      fail("Should NPE");
    } catch (NullPointerException e) {
    }

    Thread.sleep(TimeUnit.SECONDS.toMillis(2));

    RAMDirectory directory = new RAMDirectory();
    IndexWriterConfig conf = new IndexWriterConfig(LUCENE_VERSION, analyzer);
    BlurIndexWriter writer = new BlurIndexWriter(directory, conf);

    TransactionRecorder replayTransactionRecorder = new TransactionRecorder(shardContext);
    closeThis.add(replayTransactionRecorder);
    System.out.println("REPLAY");
    replayTransactionRecorder.replay(writer);
    System.out.println("REPLAY COMPLETE");
    IndexReader reader = DirectoryReader.open(directory);
    System.out.println("assert");
    assertEquals(1, reader.numDocs());
  }
 
  @Test
  public void testConvertShouldPass(){
    String rowId = "RowId_123-1";
    Record record = new Record();
    record.setRecordId("RecordId_123-1");
    record.setFamily("Family_123-1");
   
    Column column = new Column();
    column.setName("columnName_123-1");
    record.setColumns(Arrays.asList(column));
   
    BlurUtil.validateRowIdAndRecord(rowId, record);
    assert(true);
  }
 
  @Test(expected=IllegalArgumentException.class)
  public void testConvertWithBadFamilyNameShouldFail(){
    String rowId = "RowId_123-1";
    Record record = new Record();
    record.setRecordId("RecordId_123-1");
    record.setFamily("Family_123.1");
   
    Column column = new Column();
    column.setName("columnName_123-1");
    record.setColumns(Arrays.asList(column));
   
    BlurUtil.validateRowIdAndRecord(rowId, record);
    fail();
  }
 
  @Test(expected=IllegalArgumentException.class)
  public void testConvertWithBadColumnNameShouldFail(){
    String rowId = "RowId_123-1";
    Record record = new Record();
    record.setRecordId("RecordId_123-1");
    record.setFamily("Family_123-1");
   
    Column column = new Column();
    column.setName("columnName_123.1");
    record.setColumns(Arrays.asList(column));
   
    BlurUtil.validateRowIdAndRecord(rowId, record);
    fail();
  }

  private Row genRow() {
    Row row = new Row();
    row.id = "1";
    Record record = new Record();
    record.recordId = "1";
    record.family = "test";
    record.addToColumns(new Column("name", "value"));
    row.addToRecords(record);
    return row;
  }

}
TOP

Related Classes of org.apache.blur.manager.writer.TransactionRecorderTest

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.