首页 > 解决方案 > 为什么@WebMvcTest 中的 POST 请求使用 permitAll() 返回 403

问题描述

我正在测试一个具有 POST 映射的控制器。这是摘录:

@RequestMapping(path = "/bookForm", method = POST)
public String saveBook(@Valid @ModelAttribute(name = "book") BookCommand bookCommand,
                       BindingResult bindingResult) {
        // blah blah

        return "redirect:/books";
    }

我正在使用 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();
    }
}

问题是,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());
    }
}

标签: springspring-bootspring-mvcspring-securityspring-test

解决方案


您应该只使用一个 Mapping Annotation either @PostMapping(value="...") OR @RequestMapping(value="...",method=POST)。还要进行以下更改TestConfig


http
         .csrf().disable()
         .authorizeRequests()
         .antMatchers(HttpMethod.POST,"/bookFrom").permitAll()  
         .anyRequest().authenticated();

推荐阅读