/* 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.lang.reflect.Constructor; import java.lang.reflect.Method; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Map.Entry; import org.apache.log4j.Logger; import edu.brown.hstore.conf.HStoreConf; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; /** * A subclass of TestSuite that multiplexes test methods across * all volt configurations given to it. For example, if there are * 7 test methods and 2 volt configurations, this TestSuite will * contain 14 tests and will munge names to descibe each test * individually. This class is typically used as a helper in a * TestCase's suite() method. * */ public class MultiConfigSuiteBuilder extends TestSuite { private static final Logger LOG = Logger.getLogger(MultiConfigSuiteBuilder.class); /** The class that contains the JUnit test methods to run */ Class<? extends TestCase> m_testClass = null; /** * Get the JUnit test methods for a given class. These methods have no * parameters, return void and start with "test". * * @param testCls The class that contains the JUnit test methods to run. * @return A list of the names of each JUnit test method. */ public static List<String> getTestMethodNames(Class<? extends TestCase> testCls) { ArrayList<String> retval = new ArrayList<String>(); for (Method m : testCls.getMethods()) { if (m.getReturnType() != void.class) continue; if (m.getParameterTypes().length > 0) continue; if (m.getName().startsWith("test") == false) continue; retval.add(m.getName()); } return retval; } /** * Initialize by passing in a class that contains JUnit test methods to run. * * @param testClass The class that contains the JUnit test methods to run. */ public MultiConfigSuiteBuilder(Class<? extends TestCase> testClass) { m_testClass = testClass; } /** * Add a sever configuration to the set of configurations we want these * tests to run on. * * @param config A Server Configuration to run this set of tests on. */ public boolean addServerConfig(VoltServerConfig config) { // Add global config parameters for (Entry<String, Object> e : this.confParams.entrySet()) { if (config.confParams.containsKey(e.getKey()) == false) { LOG.debug(String.format("SET CONF %s %s", config.getName(), e)); config.setConfParameter(e.getKey(), e.getValue()); } } // FOR final String enabled_configs = System.getenv().get("VOLT_REGRESSIONS"); LOG.debug("VOLT REGRESSIONS ENABLED: " + enabled_configs); if (!(enabled_configs == null || enabled_configs.contentEquals("all"))) { if ((config instanceof LocalCluster) && !(enabled_configs.contains("cluster"))) { return true; } if ((config instanceof LocalSingleProcessServer) && !(enabled_configs.contains("local"))) { return true; } if (config.isHSQL() && !(enabled_configs.contains("hsql"))) { return true; } } final String buildType = System.getenv().get("BUILD"); if (buildType != null) { if (buildType.startsWith("memcheck")) { if (config instanceof LocalCluster) { return true; } if (config.isHSQL()) { return true; } } } // get the constructor of the test class Constructor<?> cons = null; try { cons = m_testClass.getConstructor(String.class); } catch (Exception e) { e.printStackTrace(); return false; } // get the set of test methods List<String> methods = getTestMethodNames(m_testClass); // add a test case instance for each method for the specified // server config for (String mname : methods) { RegressionSuite rs = null; try { rs = (RegressionSuite) cons.newInstance(mname); } catch (Exception e) { e.printStackTrace(); return false; } rs.setConfig(config); super.addTest(rs); } return true; } @Override public void addTest(Test test) { // don't let users do this throw new RuntimeException("Unsupported Usage"); } @Override public void addTestSuite(Class<? extends TestCase> testClass) { // don't let users do this throw new RuntimeException("Unsupported Usage"); } // --------------------------------------------------------------------------- protected final Map<String, Object> confParams = new HashMap<String, Object>(); { this.setGlobalConfParameter("site.coordinator_sync_time", false); this.setGlobalConfParameter("site.preload", false); this.setGlobalConfParameter("site.status_enable", false); } /** * Set an global HStoreConf parameter to use when deploying the HStoreSites in the * regression tests. * @param name * @param value */ public final void setGlobalConfParameter(String name, Object value) { assert(HStoreConf.isConfParameter(name)) : "Invalid HStoreConf parameter '" + name + "'"; this.confParams.put(name, value); HStoreConf.singleton(true).set(name, value); } }