以下のメソッドを Mockito と Junit でテストしようとしています。
@Transactional
@RequestMapping(method=RequestMethod.PUT,value ="/updateEmployer/{empId}")
public @ResponseBody Object updateEmployer(@PathVariable Integer empId,) throws Exception {
Employee e = EmployeeRepository.findOne(empId);
for (Department de : e.getDepartement()){
de.setDepartmentName(e.getName + "_" + de.getName());
}
EmployeeRepository..saveAndFlush(e);
return null;
}
これはテストメソッドです:
@Test // throw java.lang.NullPointerException
public void updateEmployeeFailureTest() throws Exception {
mockMvc.perform(
MockMvcRequestBuilders
.put("/updateEmployer/{empId}",18)
.accept(MediaType.APPLICATION_JSON)).andDo(print())
.andExpect(MockMvcResultMatchers.view().name("errorPage"))
.andExpect(MockMvcResultMatchers.model().attributeExists("exception"))
.andExpect(MockMvcResultMatchers.forwardedUrl("/WEB-INF/jsp/errorPage.jsp"))
.andExpect(MockMvcResultMatchers.status().isInternalServerError());
}
印刷スタック:
MockHttpServletRequest:
HTTP Method = PUT
Request URI = /updateEmployer/18
Parameters = {}
Headers = {Content-Type=[application/json], Accept= application/json]}
Handler:
Type = com.controllers.employeeController
Method = public java.lang.Object com.controllers.employeeController.updateEmployer(java.lang.Integer) throws java.lang.Exception
Async:
Was async started = false
Async result = null
Resolved Exception:
***Type = java.lang.NullPointerException***
ModelAndView:
View name = errorPage
View = null
Attribute = exception
***value = java.lang.NullPointerException***
FlashMap:
MockHttpServletResponse:
Status = 500
Error message = null
Headers = {}
Content type = null
Body =
Forwarded URL = /WEB-INF/jsp/errorPage.jsp
Redirected URL = null
Cookies = []
それはうまくいきますが、 @Test (expected= java.lang.NullPointerException.class) を追加してこのメソッドによってスローされたテキストまたは例外をキャッチしようとすると、次のエラーが発生します。
java.lang.AssertionError: 予想される例外: java.lang.NullPointerException
セクション ModelAndView の属性 (例外) の値として nullPointerException テキストを取得しようとすると、次のエラーが発生します。
java.lang.AssertionError: モデル属性 '例外' が予期されました:java.lang.NullPointerException でしたが、以前は:java.lang.NullPointerException でした
スローされた例外または value 属性のテキスト ( value = java.lang.NullPointerException) 、または mockito (mockmvc) を使用して解決された例外セクションのテキストを期待する方法はありますか?
どんな助けでも大歓迎です