📄 cachetestutil.java
字号:
/* * Hibernate, Relational Persistence for Idiomatic Java * * Copyright (c) 2007, Red Hat Middleware LLC or third-party contributors as * indicated by the @author tags or express copyright attribution * statements applied by the authors. All third-party contributions are * distributed under license by Red Hat Middleware LLC. * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 USA */package org.hibernate.test.util;import java.util.Enumeration;import java.util.HashSet;import java.util.Properties;import java.util.Set;import junit.framework.Test;import junit.framework.TestCase;import junit.framework.TestSuite;import org.hibernate.cache.jbc2.JBossCacheRegionFactory;import org.hibernate.cache.jbc2.SharedJBossCacheRegionFactory;import org.hibernate.cache.jbc2.builder.SharedCacheInstanceManager;import org.hibernate.cfg.Configuration;import org.hibernate.cfg.Environment;import org.hibernate.cfg.Settings;import org.hibernate.test.tm.jbc2.BatchModeTransactionManagerLookup;/** * Utilities for cache testing. * * @author <a href="brian.stansberry@jboss.com">Brian Stansberry</a> * @version $Revision: 1 $ */public class CacheTestUtil { public static String LOCAL_OPTIMISIC_CACHE; public static String LOCAL_PESSIMISTIC_CACHE; static { String pkg = CacheTestUtil.class.getPackage().getName().replace('.', '/'); LOCAL_OPTIMISIC_CACHE = pkg + "/optimistic-local-cache.xml"; LOCAL_PESSIMISTIC_CACHE = pkg + "/pessimistic-local-cache.xml"; } public static Configuration buildConfiguration(String regionPrefix, Class regionFactory, boolean use2ndLevel, boolean useQueries) { Configuration cfg = new Configuration(); cfg.setProperty(Environment.GENERATE_STATISTICS, "true"); cfg.setProperty(Environment.USE_STRUCTURED_CACHE, "true");// cfg.setProperty(Environment.CONNECTION_PROVIDER, DummyConnectionProvider.class.getName()); cfg.setProperty(Environment.TRANSACTION_MANAGER_STRATEGY, BatchModeTransactionManagerLookup.class.getName()); cfg.setProperty(Environment.CACHE_REGION_FACTORY, regionFactory.getName()); cfg.setProperty(Environment.CACHE_REGION_PREFIX, regionPrefix); cfg.setProperty(Environment.USE_SECOND_LEVEL_CACHE, String.valueOf(use2ndLevel)); cfg.setProperty(Environment.USE_QUERY_CACHE, String.valueOf(useQueries)); return cfg; } public static Configuration buildLocalOnlyConfiguration(String regionPrefix, boolean optimistic, boolean use2ndLevel, boolean useQueries) { Configuration cfg = buildConfiguration(regionPrefix, SharedJBossCacheRegionFactory.class, use2ndLevel, useQueries); String resource = CacheTestUtil.class.getPackage().getName().replace('.', '/') + "/"; resource += optimistic ? "optimistic" : "pessimistic"; resource += "-local-cache.xml"; cfg.setProperty(SharedCacheInstanceManager.CACHE_RESOURCE_PROP, resource); return cfg; } public static JBossCacheRegionFactory startRegionFactory(Configuration cfg) throws ClassNotFoundException, InstantiationException, IllegalAccessException { Settings settings = cfg.buildSettings(); Properties properties = cfg.getProperties(); String factoryType = cfg.getProperty(Environment.CACHE_REGION_FACTORY); Class factoryClass = Thread.currentThread().getContextClassLoader().loadClass(factoryType); JBossCacheRegionFactory regionFactory = (JBossCacheRegionFactory) factoryClass.newInstance(); regionFactory.start(settings, properties); return regionFactory; } public static JBossCacheRegionFactory startRegionFactory(Configuration cfg, CacheTestSupport testSupport) throws ClassNotFoundException, InstantiationException, IllegalAccessException { JBossCacheRegionFactory factory = startRegionFactory(cfg); testSupport.registerFactory(factory); return factory; } public static void stopRegionFactory(JBossCacheRegionFactory factory, CacheTestSupport testSupport) { factory.stop(); testSupport.unregisterFactory(factory); } /** * Supports easy creation of a TestSuite where a subclass' "FailureExpected" * version of a base test is included in the suite, while the base test * is excluded. E.g. test class FooTestCase includes method testBar(), while test * class SubFooTestCase extends FooTestCase includes method testBarFailureExcluded(). * Passing SubFooTestCase.class to this method will return a suite that * does not include testBar(). * * FIXME Move this to UnitTestCase */ public static TestSuite createFailureExpectedSuite(Class testClass) { TestSuite allTests = new TestSuite(testClass); Set failureExpected = new HashSet(); Enumeration tests = allTests.tests(); while (tests.hasMoreElements()) { Test t = (Test) tests.nextElement(); if (t instanceof TestCase) { String name = ((TestCase) t).getName(); if (name.endsWith("FailureExpected")) failureExpected.add(name); } } TestSuite result = new TestSuite(); tests = allTests.tests(); while (tests.hasMoreElements()) { Test t = (Test) tests.nextElement(); if (t instanceof TestCase) { String name = ((TestCase) t).getName(); if (!failureExpected.contains(name + "FailureExpected")) { result.addTest(t); } } } return result; } /** * Prevent instantiation. */ private CacheTestUtil() { }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -