/* This file is part of VoltDB.
* Copyright (C) 2008-2010 VoltDB L.L.C.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
package org.voltdb.regressionsuites;
import java.io.IOException;
import org.voltdb.BackendTarget;
import org.voltdb.VoltProcedure;
import org.voltdb.VoltTable;
import org.voltdb.client.Client;
import org.voltdb.client.ProcCallException;
import org.voltdb.compiler.VoltProjectBuilder;
import org.voltdb.regressionsuites.replication.EvilDeterminism;
import org.voltdb.regressionsuites.replication.SelectEmptyTable;
public class TestReplicationSuite extends RegressionSuite {
private static final String PREFIX = "repl";
/** Procedures used by this suite */
@SuppressWarnings("unchecked")
public static final Class<? extends VoltProcedure> PROCEDURES[] = (Class<? extends VoltProcedure>[])new Class<?>[] {
SelectEmptyTable.class, EvilDeterminism.class
};
public void testSinglePartitionInsert()
throws IOException, ProcCallException
{
Client client = getClient();
VoltTable[] results = client.callProcedure("InsertSinglePart", 1,
"desc", 100, 14.5).getResults();
assertEquals(1, results[0].asScalarLong());
results = client.callProcedure("SelectSinglePart", 1).getResults();
System.out.println(results[0].toString());
assertEquals(1, results[0].getRowCount());
results = client.callProcedure("UpdateSinglePart", 200, 1).getResults();
}
public void testMultiPartitionInsert()
throws IOException, ProcCallException
{
Client client = getClient();
VoltTable[] results = client.callProcedure("InsertMultiPart", 1,
"desc", 100, 14.5).getResults();
assertEquals(1, results[0].asScalarLong());
results = client.callProcedure("SelectMultiPart").getResults();
System.out.println(results[0].toString());
assertEquals(1, results[0].getRowCount());
}
public void testMultiPartitionReplInsert()
throws IOException, ProcCallException
{
Client client = getClient();
VoltTable[] results = client.callProcedure("InsertMultiPartRepl", 1,
"desc", 100, 14.5).getResults();
System.out.println("results: " + results[0].toString());
assertEquals(1, results[0].asScalarLong());
results = client.callProcedure("SelectMultiPartRepl").getResults();
System.out.println(results[0].toString());
assertEquals(1, results[0].getRowCount());
results = client.callProcedure("UpdateMultiPartRepl", 200).getResults();
}
// Failure detection keeps this failure running. I at least made it
// read/write so that it would block and eventually time out
// when it fails.
public void testSelectEmptyTable()
throws IOException, ProcCallException, InterruptedException
{
Client client = getClient();
VoltTable[] results = client.callProcedure("SelectEmptyTable", 1).getResults();
System.out.println("results: " + results[0].toString());
}
// Make sure date and random number APIs return deterministic results
public void testDeterminismInAPI()
throws IOException, ProcCallException
{
Client client = getClient();
// should fail if both copies don't return the same result or if an
// exception is thrown
VoltTable[] results = client.callProcedure("EvilDeterminism", 1).getResults();
assertEquals(1, results[0].getRowCount());
}
public TestReplicationSuite(String name)
{
super(name);
}
static public junit.framework.Test suite()
{
VoltServerConfig config = null;
MultiConfigSuiteBuilder builder =
new MultiConfigSuiteBuilder(TestReplicationSuite.class);
VoltProjectBuilder project = new VoltProjectBuilder("replication");
project.addSchema(SelectEmptyTable.class.getResource("replication-ddl.sql"));
project.addTablePartitionInfo("P1", "ID");
project.addStmtProcedure("InsertSinglePart",
"INSERT INTO P1 VALUES (?, ?, ?, ?);",
"P1.ID: 0");
project.addStmtProcedure("UpdateSinglePart",
"UPDATE P1 SET P1.NUM = ? WHERE P1.ID = ?",
"P1.ID: 0");
project.addStmtProcedure("SelectSinglePart",
"SELECT * FROM P1 WHERE P1.ID = ?",
"P1.ID: 0");
project.addStmtProcedure("InsertMultiPart",
"INSERT INTO P1 VALUES (?, ?, ?, ?);");
project.addStmtProcedure("SelectMultiPart", "SELECT * FROM P1");
project.addStmtProcedure("UpdateMultiPart",
"UPDATE P1 SET P1.NUM = ?");
project.addStmtProcedure("InsertMultiPartRepl",
"INSERT INTO R1 VALUES (?, ?, ?, ?);");
project.addStmtProcedure("SelectMultiPartRepl", "SELECT * FROM R1");
project.addStmtProcedure("UpdateMultiPartRepl",
"UPDATE R1 SET R1.NUM = ?");
project.addProcedures(PROCEDURES);
/////////////////////////////////////////////////////////////
// CLUSTER, two hosts, each with two sites, replication of 1
/////////////////////////////////////////////////////////////
config = new LocalCluster(PREFIX+"-1-cluster.jar", 2, 2, 1, BackendTarget.NATIVE_EE_JNI);
config.compile(project);
builder.addServerConfig(config);
/////////////////////////////////////////////////////////////
// CLUSTER, 3 hosts, each with two sites, replication of 1
/////////////////////////////////////////////////////////////
config = new LocalCluster(PREFIX+"-offset-cluster.jar", 2, 3, 1, BackendTarget.NATIVE_EE_JNI);
config.compile(project);
builder.addServerConfig(config);
/////////////////////////////////////////////////////////////
// CLUSTER, 3 hosts, each with one site, replication of 1
/////////////////////////////////////////////////////////////
config = new LocalSingleProcessServer(PREFIX+"-odd-local.jar", 3, BackendTarget.NATIVE_EE_JNI);
config.compile(project);
builder.addServerConfig(config);
// CLUSTER, four hosts, each with three sites, replication of 2
// config = new LocalCluster("replication-2-cluster.jar", 3, 4,
// 2, BackendTarget.NATIVE_EE_JNI);
// config.compile(project);
// builder.addServerConfig(config);
return builder;
}
}