简体   繁体   中英

unit testing for spring mvc controller with Integer value as @RequestParam

I have the following controller which accept input as @RequestParam

@RequestMapping(value = "/fetchstatus", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
public Response fetchStatus(
        @RequestParam(value = "userId", required = true) Integer userId) {
    Response response = new Response();
    try {
        response.setResponse(service.fetchStatus(userId));
        response = (Response) Util.getResponse(
                response, ResponseCode.SUCCESS, FETCH_STATUS_SUCCESS,
                Message.SUCCESS);
    } catch (NullValueException e) {
        e.printStackTrace();
        response = (Response) Util.getResponse(
                response, ResponseCode.FAILED, e.getMessage(), Message.ERROR);
    } catch (Exception e) {
        e.printStackTrace();
        response = (Response) Util.getResponse(
                response, ResponseCode.FAILED, e.getMessage(), Message.ERROR);
    }
    return response;
}

I need a unit test class for this and I am beginner with spring mvc. I don't know writing test classes with @RequestParam as input.

Any help will be appreciated ..

I just solved this issue. I just changed the url. Now it contains the parameter as below in test class:

mockMvc.perform(get("/fetchstatus?userId=1").andExpect(status().isOk());

You can use MockMvc for testing Spring controllers.

@Test
public void testControllerWithMockMvc(){
  MockMvc mockMvc = MockMvcBuilders.standaloneSetup(controllerInstance).build();
  mockMvc.perform(get("/fetchstatus").requestAttr("userId", 1))
    .andExpect(status().isOk());
}

Also, it is possible to do it using pure JUnit, as long as you need to test only the logic inside your class

@Test
public void testControllerWithPureJUnit(){
  Controller controller = new Controller();
  //do some mocking if it's needed

  Response response = controller.fetchStatus(1);
  //asser the reponse from controller
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM