如何在 Spring 单元测试中注入 ServletContext?

发布于 2024-08-26 12:06:19 字数 1193 浏览 4 评论 0原文

我需要为在 Tomcat 中运行的相当复杂的应用程序编写 jUnit 测试。

我编写了一个类来构建我的 Spring 上下文。

private static ApplicationContext
springContext = null;

springContext = new ClassPathXmlApplicationContext(
                     new String[] {"beans"....});

在应用程序中,有一个调用:

public class myClass implements ServletContextAware { 

.... final String folder = **servletContext.getRealPath**("/example"); ...
}

它破坏了一切,因为 ServletContext 为 null。

我已经开始构建一个模拟对象:

static ServletConfig servletConfigMock = createMock(ServletConfig.class);
static ServletContext servletContextMock = createMock(ServletContext.class);

    @BeforeClass
    public static void setUpBeforeClass() throws Exception {
        expect(servletConfigMock.getServletContext())
                 .andReturn(servletContextMock).anyTimes();

        expect(servletContextMock.getRealPath("/example"))
                 .andReturn("...fulllpath").anyTimes();
        replay(servletConfigMock);
        replay(servletContextMock);
    }

是否有一个简单的方法来注入 ServletContext 或在 jUnit 测试运行时使用部署描述符启动 Tomcat?

我使用 Spring、Maven、Tomcat 6 和 EasyMock 作为模拟对象。

I need to write a jUnit test for a rather complex application which runs in a Tomcat.

I wrote a class which builds up my Spring context.

private static ApplicationContext
springContext = null;

springContext = new ClassPathXmlApplicationContext(
                     new String[] {"beans"....});

In the application there is a call:

public class myClass implements ServletContextAware { 

.... final String folder = **servletContext.getRealPath**("/example"); ...
}

which breaks everything, because the ServletContext is null.

I have started to build a mock object:

static ServletConfig servletConfigMock = createMock(ServletConfig.class);
static ServletContext servletContextMock = createMock(ServletContext.class);

    @BeforeClass
    public static void setUpBeforeClass() throws Exception {
        expect(servletConfigMock.getServletContext())
                 .andReturn(servletContextMock).anyTimes();

        expect(servletContextMock.getRealPath("/example"))
                 .andReturn("...fulllpath").anyTimes();
        replay(servletConfigMock);
        replay(servletContextMock);
    }

Is there a simple method to inject the ServletContext or to start the Tomcat with a deployment descriptor at the runtime of the jUnit test?

I am using: Spring, Maven, Tomcat 6 and EasyMock for the mock objects.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一生独一 2024-09-02 12:06:19

你真正想要的是测试网络层。
有几种方法可以做到这一点:

每当您想在测试中注入某些内容时,请使用 ReflectionTestUtils

复杂性来自于 Web 层不太适合单元测试这一事实。它更多的是功能测试的主题。

如果有一些方法看起来适合单元测试,那么它们可能属于服务层。并且它们不应该依赖于 ServletContext

What you actually want is to test the web-layer.
There are a couple of ways to do it:

And whenever you want to inject something in a test, use ReflectionTestUtils

The complication comes from the fact that the web-layer is not quite suitable for unit-testing. It is more a subject of functional testing.

If there are methods that seem suitable for unit-testing, they perhaps belong to the service layer. And they should not have a dependency on the ServletContext

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文