Package com.consol.citrus.junit

Source Code of com.consol.citrus.junit.JUnitTestExecutor

/*
* Copyright 2006-2011 the original author or authors.
*
* 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 com.consol.citrus.junit;

import com.consol.citrus.TestCase;
import com.consol.citrus.context.TestContext;
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
* @author Christoph Deppisch
*/
public class JUnitTestExecutor {
   
    /** Parent application context */
    private ApplicationContext applicationContext;
   
    /** Class to execute as JUnit test */
    private Class<?> testClass;

    /**
     * Default constructor using fields.
     */
    public JUnitTestExecutor(ApplicationContext applicationContext, Class<?> testClass) {
        this.applicationContext = applicationContext;
        this.testClass = testClass;
    }
   
    /**
     * @param context
     */
    public void executeTest(TestContext context) {
        getTestCase(context).execute(context);
    }
   
    /**
     * Gets the test case from application context.
     * @return the new test case.
     */
    protected TestCase getTestCase(TestContext context) {
        ClassPathXmlApplicationContext ctx = createApplicationContext(context);
        TestCase testCase;
        try {
            testCase = ctx.getBean(testClass.getSimpleName(), TestCase.class);
            testCase.setPackageName(testClass.getPackage().getName());
        } catch (NoSuchBeanDefinitionException e) {
            throw context.handleError(getClass().getSimpleName(), getClass().getPackage().getName(), "Could not find test with name '" + testClass.getSimpleName() + "'", e);
        }
        return testCase;
    }

    /**
     * Creates the Spring application context.
     * @return
     */
    protected ClassPathXmlApplicationContext createApplicationContext(TestContext context) {
        try {
            return new ClassPathXmlApplicationContext(
                    new String[] {
                            testClass.getPackage().getName().replace('.', '/')
                                    + "/" + testClass.getSimpleName() + ".xml",
                            "com/consol/citrus/spring/annotation-config-ctx.xml"},
                    true, applicationContext);
        } catch (Exception e) {
            throw context.handleError(getClass().getSimpleName(), getClass().getPackage().getName(), "Failed to load test case", e);
        }
    }

}
TOP

Related Classes of com.consol.citrus.junit.JUnitTestExecutor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.