I'm working on a REST API, and I want to do some testing on the controllers. But when I run a test on the controller, it looks like the service method is not called. This is one controller and test of many other that has same problem.
This is the controller I want to test:
Controller
@RestController
@RequestMapping("/api/")
@CrossOrigin(origins = "*")
@Api(tags = "Auth")
public class AuthController {
@Autowired
TrainerService trainerService;
@Autowired
JwtUtil jwtUtil;
@Autowired
AuthenticationManager authenticationManager;
@Autowired
ClientService clientService;
@ApiOperation(value = "Trainer register", response = Trainer.class)
@PostMapping("pregister")
public Trainer registerTrainer(@RequestBody Trainer trainer) throws GlobalReqException {
try {
return trainerService.register(trainer); // trainerService.register() is not called
} catch (GlobalReqException e) {
throw new GlobalReqException("Something went wrong registering trainer", e);
}
}
...
And this is the Test
Test
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = AuthController.class)
@WebAppConfiguration
@EnableWebMvc
public class AuthControllerTest {
@MockBean
JwtUtil jwtUtil;
@MockBean
AuthenticationManager authenticationManager;
@MockBean
TrainerService trainerService;
@MockBean
ClientService clientService;
@Autowired
WebApplicationContext webApplicationContext;
protected MockMvc mvc;
@Test
@DisplayName("Register Trainer")
public void registerTrainer() throws Exception {
mvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build();
String json = "{\n" +
" \"userName\": \"[email protected]\",\n" +
" \"name\": \"trainer\",\n" +
" \"password\": \"pass12345\",\n" +
" \"phone\": \"12345678\"\n" +
"}";
String uri = "/api/pregister/";
MvcResult mvcResult = mvc.perform(MockMvcRequestBuilders.post(uri)
.contentType(MediaType.APPLICATION_JSON_VALUE)
.content(json))
.andReturn();
int status = mvcResult.getResponse().getStatus();
System.out.println(mvcResult.getResponse());
assertEquals(200, status);
}
}