All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kuali.rice.test.RiceInternalSuiteDataTestCase Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 2.6.2
Show newest version
/**
 * 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.apache.commons.lang.StringUtils;
import org.kuali.rice.core.api.util.ClasspathOrFileResourceLoader;

import java.io.BufferedReader;
import java.io.InputStreamReader;

/**
 * A TestCase superclass to be used internally by Rice for tests that need to
 * load all of the Rice suite-level test data.
 * 
 * @author Kuali Rice Team ([email protected])
 */
public abstract class RiceInternalSuiteDataTestCase extends RiceTestCase {
    private static final String HASH_PREFIX = "#";
    private static final String SLASH_PREFIX = "//";

	/**
	 * Loads the suite test data from the shared DefaultSuiteTestData.sql
	 */
	@Override
	protected void loadSuiteTestData() throws Exception {
		new SQLDataLoader(getKRADDefaultSuiteTestData(), "/").runSql();
		
		//ClassPathResource cpr = new ClassPathResource(getKIMDataLoadOrderFile());
        ClasspathOrFileResourceLoader resourceLoader = new ClasspathOrFileResourceLoader();
		//BufferedReader reader = new BufferedReader(new FileReader(cpr.getFile()));
		//BufferedReader reader = new BufferedReader(new FileReader(cpr.getFile()));
		BufferedReader reader = new BufferedReader(new InputStreamReader(resourceLoader.getResource(getKIMDataLoadOrderFile()).getInputStream()));
		String line = null;
		while ((line = reader.readLine()) != null) {
			if (!StringUtils.isBlank(line) && !line.startsWith(HASH_PREFIX) && !line.startsWith(SLASH_PREFIX)) {
                try {
                    new SQLDataLoader(getKIMSqlFileBaseLocation() + "/" + line, "/").runSql();
                } catch (Exception e) {
                    LOG.error("Exception during loadSuiteTestData: " + e);
                }
			}
		}
	}
	
	protected String getKRADDefaultSuiteTestData() {
		return "classpath:/config/data/DefaultSuiteTestDataKRAD.sql";
	}

	protected String getKIMDataLoadOrderFile() {
	    return "classpath:/config/data/KIMDataLoadOrder.txt";
	}

	protected String getKIMSqlFileBaseLocation() {
	    return "classpath:/config/data";
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy