/* * Copyright 2004-2015 the Seasar Foundation and the Others. * * Licensed 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.seasar.framework.container.hotdeploy.creator; import org.seasar.framework.container.ComponentCreator; import org.seasar.framework.container.hotdeploy.HotdeployBehavior; import org.seasar.framework.container.impl.S2ContainerBehavior; import org.seasar.framework.convention.NamingConvention; import org.seasar.framework.convention.impl.NamingConventionImpl; import org.seasar.framework.unit.S2FrameworkTestCase; import org.seasar.framework.util.ClassUtil; /** * @author Skirnir * */ public abstract class HotdeployCreatorTestCase extends S2FrameworkTestCase { /** * */ protected ClassLoader originalLoader; /** * */ protected String rootPackageName; /** * */ protected HotdeployBehavior ondemand; /** * */ protected ComponentCreator creator; protected void setUp() { originalLoader = Thread.currentThread().getContextClassLoader(); NamingConventionImpl convention = new NamingConventionImpl(); rootPackageName = ClassUtil.getPackageName(getClass()); convention.addRootPackageName(rootPackageName); ondemand = new HotdeployBehavior(); ondemand.setNamingConvention(convention); creator = newOndemandCreator(convention); ondemand.setCreators(new ComponentCreator[] { creator }); S2ContainerBehavior.setProvider(ondemand); ondemand.start(); } /** * @param convention * @return */ protected abstract ComponentCreator newOndemandCreator( NamingConvention convention); protected void tearDown() { ondemand.stop(); S2ContainerBehavior .setProvider(new S2ContainerBehavior.DefaultProvider()); Thread.currentThread().setContextClassLoader(originalLoader); } }