1

在测试一个独立的 spring 环境时,我们可以这样做:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({ "classpath:spring-*.xml" })
@ActiveProfiles(  profiles = { "Prod","bsi"})
public class SampleTest 

在使用 spring 集成测试 Struts 2 时,我们可以使用:

public class SessionManagement extends StrutsSpringTestCase  {

    @Override
    public String[] getContextLocations() {

      return new String[] {"classpath:spring-*.xml"};

    }
} 

但是如何在此处设置活动弹簧配置文件?

4

1 回答 1

1

您可以通过应用程序上下文环境在 spring 中设置活动配置文件。

由于StrutsTestCase使用GenericXmlContextLoader不可配置,您需要覆盖setupBeforeInitDispatcher测试中的方法并使用一些上下文(例如XmlWebApplicationContext),您可以在其中设置配置文件并调用refresh.

@Override
protected void setupBeforeInitDispatcher() throws Exception {
    // only load beans from spring once
    if (applicationContext == null) {
        XmlWebApplicationContext webApplicationContext = new XmlWebApplicationContext();
        webApplicationContext.setConfigLocations(getContextLocations());
        webApplicationContext.getEnvironment().setActiveProfiles("Prod", "bsi");
        webApplicationContext.refresh();

        applicationContext = webApplicationContext;
    }

    servletContext.setAttribute(
            WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE,
            applicationContext);
}

JUnit 4

由于您使用的是 JUnit 4,因此存在StrutsSpringJUnit4TestCase抽象类。扩展它,您可以像在SampleTest.

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({ "classpath:spring-*.xml" })
@ActiveProfiles(profiles = { "Prod","bsi"})
public class SessionManagement extends StrutsSpringJUnit4TestCase<SomeAction>
于 2016-02-03T10:57:26.730 回答