【发布时间】:2019-11-05 09:03:54
【问题描述】:
有没有办法为控制器类编写一些负面测试用例
@RestController
@RequestMapping(value = "/health")
@Api(value = "EVerify Health check API", description = "Health check API")
public class HealthStatusController {
@Autowired
@Qualifier("implementation")
private HealthStatus healthStatus;
@RequestMapping(value = "", method = RequestMethod.GET, produces = {MediaType.APPLICATION_JSON_VALUE})
@ApiOperation(value = "Get the health status of the API", response = ResponseEntity.class)
public @ResponseBody
ResponseEntity getHealth() {
Integer status = healthStatus.healthCheck();
if (status == 200)
return ResponseEntity.status(HttpStatus.OK).build();
else
return ResponseEntity.status(HttpStatus.ACCEPTED).build();
}
}
我写了一个如下的正面测试用例
@RunWith(SpringRunner.class)
@SpringBootTest
@AutoConfigureMockMvc
public class HealthStatusControllerTest {
@Autowired
private MockMvc mockMvc;
@Autowired
@Qualifier("implementation")
private HealthStatus healthStatus;
@InjectMocks
private HealthStatusController healthStatusController;
@Rule public ExpectedException exception = ExpectedException.none();
@Before
public void setUp() throws Exception {
mockMvc = MockMvcBuilders.standaloneSetup(healthStatusController).build();
}
@Test
public void getHealthCheckReturns200Test() throws Exception {
exception.expect(Exception.class);
Mockito.when(healthStatus.healthCheck()).thenReturn(200);
mockMvc.perform(get("/health")).andExpect(status().isOk()).andReturn();
}
}
感谢您的帮助。
【问题讨论】:
-
你可以模拟
HealthStatus -
你能帮我举个例子吗?
标签: rest spring-boot spring-mvc junit spring-mvc-test