Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 ..

like image 366
Abhishek Ramachandran Avatar asked Dec 08 '22 21:12

Abhishek Ramachandran


2 Answers

I 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());
like image 144
Abhishek Ramachandran Avatar answered Jan 19 '23 00:01

Abhishek Ramachandran


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
}
like image 29
Sergii Bishyr Avatar answered Jan 18 '23 23:01

Sergii Bishyr