/* 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; import org.voltdb.VoltDB; import edu.brown.hstore.HStoreConstants; import junit.framework.TestCase; public class TestVoltDB extends TestCase { public void testConfigurationConstructor() { VoltDB.Configuration blankConfig = new VoltDB.Configuration(); assertFalse(blankConfig.m_noLoadLibVOLTDB); assertEquals(BackendTarget.NATIVE_EE_JNI, blankConfig.m_backend); assertEquals(ProcedureProfiler.Level.DISABLED, blankConfig.m_profilingLevel); assertEquals("catalog.jar", blankConfig.m_pathToCatalog); assertFalse(blankConfig.m_useThreadAffinity); assertEquals(HStoreConstants.DEFAULT_PORT, blankConfig.m_port); String args1[] = { "noloadlib" }; assertTrue(new VoltDB.Configuration(args1).m_noLoadLibVOLTDB); String args2[] = { "hsqldb" }; VoltDB.Configuration cfg2 = new VoltDB.Configuration(args2); assertEquals(BackendTarget.HSQLDB_BACKEND, cfg2.m_backend); String args3[] = { "jni" }; VoltDB.Configuration cfg3 = new VoltDB.Configuration(args3); assertEquals(BackendTarget.NATIVE_EE_JNI, cfg3.m_backend); String args4[] = { "ipc" }; VoltDB.Configuration cfg4 = new VoltDB.Configuration(args4); assertEquals(BackendTarget.NATIVE_EE_IPC, cfg4.m_backend); // what happens if arguments conflict? String args5[] = { "ipc", "hsqldb" }; VoltDB.Configuration cfg5 = new VoltDB.Configuration(args5); assertEquals(BackendTarget.HSQLDB_BACKEND, cfg5.m_backend); String args6[] = { "polite" }; VoltDB.Configuration cfg6 = new VoltDB.Configuration(args6); assertEquals(ProcedureProfiler.Level.POLITE, cfg6.m_profilingLevel); String args7[] = { "intrusive" }; VoltDB.Configuration cfg7 = new VoltDB.Configuration(args7); assertEquals(ProcedureProfiler.Level.INTRUSIVE, cfg7.m_profilingLevel); String args8[] = { "intrusive", "polite" }; VoltDB.Configuration cfg8 = new VoltDB.Configuration(args8); assertEquals(ProcedureProfiler.Level.POLITE, cfg8.m_profilingLevel); String args9[] = { "catalog xtestxstringx" }; VoltDB.Configuration cfg9 = new VoltDB.Configuration(args9); assertEquals("xtestxstringx", cfg9.m_pathToCatalog); String args10[] = { "catalog", "ytestystringy" }; VoltDB.Configuration cfg10 = new VoltDB.Configuration(args10); assertEquals("ytestystringy", cfg10.m_pathToCatalog); String args11[] = { "usethreadaffinity" }; assertTrue(new VoltDB.Configuration(args11).m_useThreadAffinity); String args12[] = { "port 1234" }; VoltDB.Configuration cfg12 = new VoltDB.Configuration(args12); assertEquals(1234, cfg12.m_port); String args13[] = { "port", "5678" }; VoltDB.Configuration cfg13 = new VoltDB.Configuration(args13); assertEquals(5678, cfg13.m_port); // XXX don't test what happens if port is invalid, because the code // doesn't handle that } }