我试图测试一个基本的页面控制器,它返回一个thymeleaf
模板。我的Controller:
@Controller
public class EntryOverviewController {
@GetMapping(ApplicationConstants.URL_ENTRY_OVERVIEW)
public String getPage(Model model) {
return ApplicationConstants.VIEW_ENTRY_OVERVIEW;
}
我的WebSecurityConfig
:
@EnableWebSecurity
@EnableGlobalMethodSecurity(securedEnabled = true, prePostEnabled = true)
@Slf4j
@Configuration
@Order(1005)
public class WebSecurityConfig {
@Configuration
@Order(1005)
public class WebAppSecurityConfigurerAdapter extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests().antMatchers("/**").permitAll().and().headers().defaultsDisabled().cacheControl().and()
.httpStrictTransportSecurity().includeSubDomains(false).maxAgeInSeconds(31536000).and().frameOptions().disable().and()
.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.ALWAYS);
}
}
@Order(1004)
@Configuration
public static class ActuatorWebSecurityConfigurationAdapter extends WebSecurityConfigurerAdapter {
@Autowired
private PasswordEncoder passwordEncoder;
@Value("${management.endpoints.web.access.user}")
private String user;
@Value("${management.endpoints.web.access.password}")
private String password;
@Override
protected void configure(HttpSecurity http) throws Exception {
http.requestMatcher(EndpointRequest.toAnyEndpoint()).authorizeRequests().requestMatchers(EndpointRequest.to(HealthEndpoint.class))
.permitAll().anyRequest().authenticated().and().httpBasic().and().sessionManagement()
.sessionCreationPolicy(SessionCreationPolicy.STATELESS);
}
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth.inMemoryAuthentication().withUser(user).password(passwordEncoder.encode(password)).roles();
}
}
/** Password encoder */
@Bean(name = "passwordEncoder")
public PasswordEncoder passwordEncoder() {
return new BCryptPasswordEncoder();
}
}
我的测试类:
@ExtendWith(SpringExtension.class)
@WebMvcTest(EntryOverviewController.class)
class EntryOverviewControllerTest {
@Autowired
private MockMvc mvc;
@WithMockUser(value = "user")
@Test
public void testCorrectModel() throws Exception {
mvc.perform(get(ApplicationConstants.URL_ENTRY_OVERVIEW)).andExpect(status().isOk()).andExpect(model().attributeExists("registerEntry"))
.andExpect(view().name(ApplicationConstants.VIEW_ENTRY_OVERVIEW));
}
}
当我想执行我的junit 5测试时,它失败了,错误信息是:
org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'org.springframework.security.crypto.password.PasswordEncoder' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
当我用@MockBean
模拟passwordEncoder
时,它给出的错误是: password cannot be null.
StackOverflow: java - JUnit 5 Spring Security WebMvcTest no bean of type PasswordEncoder - Stack Overflow