2016-11-20 5 views
0

Я должен проверить это;Как передать параметры весной-mvc-test?

/** Displays the balance us page. */ 
@RequestMapping(value = "/profile/balance") 
public ModelAndView balance(Principal principal) { 
    ModelAndView model = new ModelAndView("balance"); 
    String username = principal.getName(); 
    User user = userService.findUserByUsername(username); 

    model.addObject("moneyEarned", user.getMoneyEarned()); 
    model.addObject("moneySpent", user.getMoneySpent()); 

    return model; 
} 

мой тест выглядит так;

@Test 
public void getProfileBalance() throws Exception { 
    this.mockMvc.perform(get("/profile/balance") 
      .andExpect(status().isOk()) 
      .andExpect(view().name("balance")); 
} 

Я действительно не понимаю, как я мог бы пройти в этом Основном экземпляре. Как я могу это сделать?

ответ

0

Самый простой способ это делать

@Test 
public void getProfileBalance() throws Exception { 
    SecurityContext ctx = new SecurityContextImpl(); 
    ctx.setAuthentication(new UsernamePasswordAuthenticationToken("principal", "password")); 
    SecurityContextHolder.setStrategyName(SecurityContextHolder.MODE_GLOBAL); 
    SecurityContextHolder.setContext(ctx); 
    this.mockMvc.perform(get("/profile/balance") 
      .andExpect(status().isOk()) 
      .andExpect(view().name("balance")); 
    SecurityContextHolder.clearContext(); 
} 

Или вы можете использовать Spring Security Test library

+0

Этот код не работает в малейшей степени – Mattia