blob: 78964f4864fd4eb9423173f89333500ba1dd39a3 [file] [log] [blame]
/*
* 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.cassandra.io.sstable;
import java.io.File;
import java.io.IOException;
import org.junit.BeforeClass;
import junit.framework.Assert;
import org.apache.cassandra.SchemaLoader;
import org.apache.cassandra.UpdateBuilder;
import org.apache.cassandra.db.ColumnFamilyStore;
import org.apache.cassandra.db.Keyspace;
import org.apache.cassandra.db.SerializationHeader;
import org.apache.cassandra.db.marshal.*;
import org.apache.cassandra.db.rows.EncodingStats;
import org.apache.cassandra.schema.KeyspaceParams;
import org.apache.cassandra.utils.concurrent.AbstractTransactionalTest;
public class BigTableWriterTest extends AbstractTransactionalTest
{
public static final String KEYSPACE1 = "BigTableWriterTest";
public static final String CF_STANDARD = "Standard1";
private static ColumnFamilyStore cfs;
@BeforeClass
public static void defineSchema() throws Exception
{
SchemaLoader.prepareServer();
SchemaLoader.createKeyspace(KEYSPACE1,
KeyspaceParams.simple(1),
SchemaLoader.standardCFMD(KEYSPACE1, CF_STANDARD, 0, Int32Type.instance, AsciiType.instance, Int32Type.instance));
cfs = Keyspace.open(KEYSPACE1).getColumnFamilyStore(CF_STANDARD);
}
protected TestableTransaction newTest() throws IOException
{
return new TestableBTW();
}
private static class TestableBTW extends TestableTransaction
{
final File file;
final Descriptor descriptor;
final SSTableTxnWriter writer;
private TestableBTW()
{
this(cfs.getSSTablePath(cfs.getDirectories().getDirectoryForNewSSTables()));
}
private TestableBTW(String file)
{
this(file, SSTableTxnWriter.create(cfs, file, 0, 0, new SerializationHeader(true, cfs.metadata, cfs.metadata.partitionColumns(), EncodingStats.NO_STATS)));
}
private TestableBTW(String file, SSTableTxnWriter sw)
{
super(sw);
this.file = new File(file);
this.descriptor = Descriptor.fromFilename(file);
this.writer = sw;
for (int i = 0; i < 100; i++)
{
UpdateBuilder update = UpdateBuilder.create(cfs.metadata, i);
for (int j = 0; j < 10; j++)
update.newRow(j).add("val", SSTableRewriterTest.random(0, 1000));
writer.append(update.build().unfilteredIterator());
}
}
protected void assertInProgress() throws Exception
{
assertExists(Component.DATA, Component.PRIMARY_INDEX);
assertNotExists(Component.FILTER, Component.SUMMARY);
Assert.assertTrue(file.length() > 0);
}
protected void assertPrepared() throws Exception
{
assertExists(Component.DATA, Component.PRIMARY_INDEX, Component.FILTER, Component.SUMMARY);
}
protected void assertAborted() throws Exception
{
assertNotExists(Component.DATA, Component.PRIMARY_INDEX, Component.FILTER, Component.SUMMARY);
Assert.assertFalse(file.exists());
}
protected void assertCommitted() throws Exception
{
assertPrepared();
}
@Override
protected boolean commitCanThrow()
{
return true;
}
private void assertExists(Component ... components)
{
for (Component component : components)
Assert.assertTrue(new File(descriptor.filenameFor(component)).exists());
}
private void assertNotExists(Component ... components)
{
for (Component component : components)
Assert.assertFalse(component.toString(), new File(descriptor.filenameFor(component)).exists());
}
}
}