org.kuali.rice.test.TestHarnessServiceLocator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rice-it-internal-tools Show documentation
Show all versions of rice-it-internal-tools Show documentation
This module contains rice's internal integration testing tools. This module is internal to rice and should not used outside of the rice project. It should only be depended on by rice integration test code. This module can depend on any part of rice.
/**
* Copyright 2005-2014 The Kuali Foundation
*
* Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php
*
* 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.kuali.rice.test;
import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.transaction.jta.JtaTransactionManager;
import javax.sql.DataSource;
import javax.transaction.UserTransaction;
/**
* Locator that sits on the testharness SpringContext.
*
* This doesn't defer to the {@link GlobalResourceLoader} because I'm not sure
* the test harness justifies the extra setup at the moment. If/when the
* testharness {@link org.kuali.rice.core.framework.resourceloader.SpringResourceLoader} is placed in the {@link GlobalResourceLoader}
* this can delegate to that {@link GlobalResourceLoader}.
*
* @author Kuali Rice Team ([email protected])
*
*/
public class TestHarnessServiceLocator {
private static ConfigurableApplicationContext context;
public static final String USER_TRANSACTION = "userTransaction";
public static final String TRANSACTON_MANAGER = "transactionManager";
public static final String DATA_SOURCE = "dataSource";
public static Object getService(String serviceName) {
return getContext().getBean(serviceName);
}
public static DataSource getDataSource() {
return (DataSource)getService(DATA_SOURCE);
}
public static JtaTransactionManager getJtaTransactionManager() {
return (JtaTransactionManager)getService(TRANSACTON_MANAGER);
}
public static UserTransaction getUserTransaction() {
return (UserTransaction)getService(USER_TRANSACTION);
}
public static ConfigurableApplicationContext getContext() {
return context;
}
public static void setContext(ConfigurableApplicationContext context) {
TestHarnessServiceLocator.context = context;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy