mat*_*e00 2 spring spring-mvc spring-security spring-test spring-boot
我正在测试具有 POST 映射的控制器。这是摘录:
@RequestMapping(path = "/bookForm", method = POST)
public String saveBook(@Valid @ModelAttribute(name = "book") BookCommand bookCommand,
BindingResult bindingResult) {
// blah blah
return "redirect:/books";
}
Run Code Online (Sandbox Code Playgroud)
我在玩 Spring 安全,所以我写了一个测试,我希望我的一些GET映射会被未经授权的用户拒绝,但是对于这个 POST 方法,我想允许所有。
这是一个测试配置类:
@Configuration
public class SecurityTestConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests()
.antMatchers("/books/**").authenticated()
.antMatchers(HttpMethod.POST, "/bookForm").permitAll()
.and()
.httpBasic();
}
}
Run Code Online (Sandbox Code Playgroud)
问题是,mockMvc对于 POST 调用仍然返回 4xx。这是为什么?
@RunWith(SpringRunner.class)
@WebMvcTest(controllers = BookController.class)
@Import(SecurityTestConfig.class)
public class BookControllerIT {
@Autowired
private MockMvc mockMvc;
// ... mocks ect
@Test // <- this is ok
public void shouldNotAllowBookUpdate() throws Exception {
mockMvc.perform(get("/books/1/update")).andExpect(status().is4xxClientError());
}
@Test // <- this fails
public void shouldAllowFormHandling() throws Exception {
mockMvc.perform(post("/bookForm")).andExpect(status().isOk());
}
}
Run Code Online (Sandbox Code Playgroud)
您应该只使用一个 Mapping Annotation either @PostMapping(value="...") OR @RequestMapping(value="...",method=POST)。还要做以下更改TestConfig
http
.csrf().disable()
.authorizeRequests()
.antMatchers(HttpMethod.POST,"/bookFrom").permitAll()
.anyRequest().authenticated();
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
2159 次 |
| 最近记录: |