gpt4 book ai didi

java - 强制 Jersey 从 JerseyTest 读取模拟

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:33:24 25 4
gpt4 key购买 nike

我想用 JerseyTest 测试资源。我创建了以下测试:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:testApplicationContext.xml")
public class ResourceTest extends JerseyTest
{
@Configuration
public static class Config
{
@Bean
public AObject aObject()
{
return mock(AObject.class);
}
}

@Autowired
public AObject _aObject;

@Test
public void testResource()
{
// configouring mock _aObject

Response response = target("path");
Assert.assertEquals(Response.Status.OK.getStatusCode(), response.getStatus());
}


@Override
protected Application configure()
{
return new ResourceConfig(Resource.class).property("contextConfigLocation", "classpath:testApplicationContext.xml");
}
}

我的资源还有一个带有 @Autowired 注释的 AObject 引用。

我的问题是我的 JerseyTestResource(由测试配置)有不同的 Mock 对象实例。在控制台中,我看到 testApplicationContext.xml 被加载了两次,一次用于测试,一次用于资源。

我如何强制 Jersey 使用相同的模拟?

最佳答案

调试jersey-spring3(版本2.9.1)库后,问题似乎出在SpringComponentProvider.createSpringContext

private ApplicationContext createSpringContext() {
ApplicationHandler applicationHandler = locator.getService(ApplicationHandler.class);
ApplicationContext springContext = (ApplicationContext) applicationHandler.getConfiguration().getProperty(PARAM_SPRING_CONTEXT);
if (springContext == null) {
String contextConfigLocation = (String) applicationHandler.getConfiguration().getProperty(PARAM_CONTEXT_CONFIG_LOCATION);
springContext = createXmlSpringConfiguration(contextConfigLocation);
}
return springContext;
}

它检查应用程序属性中是否存在名为“contextConfig”的属性,如果不存在,它会初始化 spring 应用程序上下文。即使您在测试中初始化了一个 spring 应用程序上下文,jersey 也会创建另一个上下文并使用该上下文。所以我们必须以某种方式从我们在 Jersey Application 类中的测试中传递 ApplicationContext。解决方案如下:

@ContextConfiguration(locations = "classpath:jersey-spring-applicationContext.xml")
public abstract class JerseySpringTest
{
private JerseyTest _jerseyTest;

public final WebTarget target(final String path)
{
return _jerseyTest.target(path);
}

@Before
public void setup() throws Exception
{
_jerseyTest.setUp();
}

@After
public void tearDown() throws Exception
{
_jerseyTest.tearDown();
}

@Autowired
public void setApplicationContext(final ApplicationContext context)
{
_jerseyTest = new JerseyTest()
{
@Override
protected Application configure()
{
ResourceConfig application = JerseySpringTest.this.configure();
application.property("contextConfig", context);

return application;
}
};
}

protected abstract ResourceConfig configure();
}

上面的类将从我们的测试中获取应用程序上下文并将其传递给配置的 ResourceConfig,以便 SpringComponentProvider 将相同的应用程序上下文返回给 jersey。我们还使用 jersey-spring-applicationContext.xml 来包含 Jersey 特定的 spring 配置。

我们不能从 JerseyTest 继承,因为它在初始化测试应用程序上下文之前在构造函数中初始化了 Application。

例如,您现在可以使用这个基类来创建您的测试

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:testContext.xml")
public class SomeTest extends JerseySpringTest
{
@Autowired
private AObject _aObject;

@Test
public void test()
{
// configure mock _aObject when(_aObject.method()).thenReturn() etc...

Response response = target("api/method").request(MediaType.APPLICATION_JSON).get();
Assert.assertEquals(Response.Status.OK.getStatusCode(), response.getStatus());
}

@Override
protected ResourceConfig configure()
{
return new ResourceConfig(MyResource.class);
}
}

在 testContext.xml 中添加以下定义以注入(inject)模拟 AObject。

<bean class="org.mockito.Mockito" factory-method="mock">
<constructor-arg value="com.yourcompany.AObject" />
</bean>

关于java - 强制 Jersey 从 JerseyTest 读取模拟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24509754/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com