为控制器编写负单元测试用例 类 :springboot

writing negative unit test cases for controller classes :springboot

有没有办法为控制器编写一些负面测试用例class

@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

Mockito.when(healthStatus.healthCheck()).thenReturn(500);
mockMvc.perform(get("/health")).andExpect(status().is(500)).andReturn();

您可能需要添加 @Spy

@Spy
@Autowired
@Qualifier("implementation")
private HealthStatus healthStatus;