我正在尝试为控制器编写测试用例。我不想模拟我的服务,因为我想使用这些测试作为完整的功能测试。
我正在测试这个控制器:
@Controller
public class PlanController {
@Autowired
private PlanService planService;
@RequestMapping(
value = "/api/plans/{planId}",
method = RequestMethod.GET,
produces = MediaType.APPLICATION_JSON_VALUE)
@ResponseBody
@Nonnull
@JsonView(Plan.SimpleView.class)
public Plan getPlan(@RequestParam int orgId, @PathVariable int planId) {
Plan plan = planService.getPlan(orgId, planId);
return plan;
}
}
字符串
下面是我写的测试案例:
package com.videology.skunkworks.audiencediscovery.controller;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
import org.eclipse.jetty.webapp.WebAppContext;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.MockitoAnnotations;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = {WebAppContext.class})
@WebAppConfiguration
@EnableWebMvc
public class PlanControllerTest {
@Autowired
private WebApplicationContext wac;
private MockMvc mockMvc;
@Before
public void setup() {
MockitoAnnotations.initMocks(this);
this.mockMvc = MockMvcBuilders.webAppContextSetup(this.wac).dispatchOptions(true).build();
}
@Test
public void testGetPlan() throws Exception {
mockMvc.perform(get("/api/plans/1/?orgId=1").accept(MediaType.APPLICATION_JSON_VALUE)).andExpect(status().isOk());
}
}
型
此测试用例失败,因为返回的status()是404而不是200。不确定为什么它返回404,因为errorMessage是null。
我已经经历了许多类似的问题,但没有一个对我有帮助。
7条答案
按热度按时间xj3cbfub1#
配置中出现错误。为了解决这个问题,我必须在contextConfiguration中提供我的WebConfig文件。下面是我添加的行:
字符串
relj7zay2#
也许这取决于版本。我不得不添加@Import(MyController.class)。结果:
字符串
ao218c7q3#
我不得不使用
standaloneSetup
。你可能想试试。我还必须添加一个viewResolver。我的代码看起来像这样。我用的是SpringBoot 1.5。
字符串
ma8fv8wu4#
我正在运行Sping Boot 2.5.6,为我的控制器做测试。遇到了很多困难,因为Spring想要加载一些安全相关的bean。最后,设法运行控制器测试,如下所示:
字符串
zf9nrax15#
您的@EnableWebMvc可能没有配置,请在您的classpath中检查是否有任何class包含annotation:
字符串
5t7ly7z56#
对于那些正在努力解决同一问题,但已经检查了所有配置的人,提示是:
通常情况下,如果你想设置
@#WebMvcTest
的安全配置,你不需要使用@ContextConfiguration
,因为它可能会导致一些冲突,所以最安全的方法之一是使用@Import
注解导入你的安全配置。例如:字符串
相关的stackoverflow问题:@WebMvcTest需要@Import(SecurityConfig.class)来启用SpringSecurity
ffx8fchx7#
添加类注解-
@WebMvcTest(PlanController.class)
它对我很有效。