スプリング コントローラーのテストを作成しようとしていますが、問題があります。次のコードは、返すべきredirect:/welcome
ものがありますが、常に返されます。私は何か間違ったことをしているのかもしれません。これを解決するのを手伝ってください。when(result.hasErrors()).thenReturn(true);
add
コントローラ
@Controller
public class SpringController {
@Autowired
private UserService userService;
@Autowired
private CorrectValidator correctValidator;
@Autowired
private ExistValidator existValidator;
@Autowired
private Unwrapper unwrapper;
@RequestMapping(value = "/create", method = RequestMethod.POST)
public String create (Wrapper wrapper,
BindingResult result)
throws ParseException {
correctValidator.validate(wrapper, result);
existValidator.validate(wrapper, result);
if (result.hasErrors()) {
return "add";
}
userService.create(unwrapper.unwrap(wrapper));
return "redirect:/welcome";
}
}
テスト
@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
@ContextConfiguration(locations={"file:src/main/webapp/WEB-INF/spring-servlet.xml"})
@TestExecutionListeners({ DependencyInjectionTestExecutionListener.class})
public class ControllerTest {
@InjectMocks
private SpringController controller;
@Mock
private Wrapper wrapper;
@Mock
private BindingResult result;
@Before
public void setUp() throws Exception {
MockitoAnnotations.initMocks(this);
mockMvc = standaloneSetup(controller)
.setSingleView(mockView)
.build();
}
@Test
public void testCreateBad() throws Exception {
when(result.hasErrors()).thenReturn(true);
mockMvc.perform(post("/create", wrapper, result))
.andExpect(status().isOk())
.andExpect(view().name("add"));
}
}