org.parancoe.web.test.PluginTest.java Source code

Java tutorial

Introduction

Here is the source code for org.parancoe.web.test.PluginTest.java

Source

/**
 * Copyright (C) 2006-2010 The Parancoe Team <info@parancoe.org>
 *
 * This file is part of Parancoe Test.
 *
 * 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.parancoe.web.test;

import javax.annotation.Resource;
import javax.servlet.ServletContext;
import javax.sql.DataSource;
import org.lambico.test.spring.hibernate.DBTest;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.core.io.FileSystemResourceLoader;
import org.springframework.mock.web.MockServletContext;
import org.springframework.web.context.support.XmlWebApplicationContext;

/**
 * E' la classe base per tutti i test dei plugin.
 * Carica all'avvio tutti i bean configurati in modo da renderli
 * disponibili ai test specifici senza la necessit di tirarli su di volta in volta con
 * getCtx().getBean()
 *
 * @deprecated please use {@link AbstractPluginTest}
 */
@Deprecated
public abstract class PluginTest extends DBTest {

    @Resource
    protected DataSource dataSource;

    @Override
    protected String[] getConfigLocations() {
        return new String[] { "classpath:org/lambico/spring/dao/hibernate/genericDao.xml",
                "classpath:org/lambico/spring/dao/hibernate/applicationContextBase.xml",
                "classpath:org/parancoe/web/parancoeBase.xml", "classpath:spring-test.xml",
                "classpath*:parancoe-plugin.xml", "classpath*:applicationContext-plugin.xml" };
    }

    @Override
    protected ConfigurableApplicationContext createApplicationContext(String[] locations) {
        FileSystemResourceLoader rl = new FileSystemResourceLoader();
        ServletContext servletContext = new MockServletContext(rl);
        XmlWebApplicationContext context = new XmlWebApplicationContext();
        context.setServletContext(servletContext);
        context.setConfigLocations(locations);
        context.refresh();
        return context;
    }

}