所以我不认为这里有很多关于 Spring 的 Mockmvc 用于测试 springmvc 控制器的问题,但我通读了 spring 教程 https://spring.io/guides/tutorials/rest/2/ 那里有很多那里,但我只是想用一个 id 参数在 Web 服务上做一个简单的 GET。控制器看起来像这样:
@RestController
@RequestMapping("/demandrest")
public class DemandServicesController {
@Autowired
DemandService demandService;
@RequestMapping(value = "/demand/{$id}", method = RequestMethod.GET, headers= "Accept-application/jsson")
public Demand readDemand(@RequestParam(value="id", required=true) String id){
return demandService.readDemand(new Long(id));
}
我编写了一个使用 org.springframework.test.web.servlet.MockMvc 的单元测试,我尝试模拟(真正存根)服务调用并对状态代码进行断言,并得到状态代码 404。我的测试看起来像这样
import static org.mockito.Mockito.when;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
import static org.springframework.test.web.servlet.setup.MockMvcBuilders.standaloneSetup;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.springframework.http.MediaType;
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
import org.springframework.test.web.servlet.MockMvc;
public class DemandServicesControllerTest {
MockMvc mockMvc;
@InjectMocks
DemandServicesController demandServicesController = new DemandServicesController();
@Mock
DemandService demandService;
@Before
public void setUpUnitTest() throws Exception {
MockitoAnnotations.initMocks(this);
this.mockMvc = standaloneSetup(demandServicesController).
setMessageConverters(new MappingJackson2HttpMessageConverter()).build();
}
@After
public void tearDown() throws Exception {
}
@Test
public void testReadDemandState() throws Exception {
Long id = new Long(99);
Demand demand = new Demand();
demand.setDescription("description");
when(demandService.readDemand(id)).thenReturn(demand );
this.mockMvc.perform(get("/demandrest/demand/{id}",id.toString()).
accept(MediaType.APPLICATION_JSON)).andExpect(status().isOk());
}
}
在我发帖之前,我会提到其他一些事情。因此,查看教程中的示例,我试图只选择我只会使用的东西,因此它不是一个精确的副本。我必须做的一个很大的区别是,我怀疑这与 pom 中测试插件的配置方式有关,我必须实例化控制器,其中示例足够聪明,可以知道创建实例。此外,该示例依赖于 Gradle 进行项目设置,我只有一个包含该项目的 pom 文件。不确定这是否会有所作为。看起来这是新东西,但这是一个非常简单的例子。提前感谢您的帮助。