我有一个Web应用程序,其中包含在上下文路径 / manage 下公开的执行程序,并且仅通过Spring安全集成向角色为“管理员”的用户提供。实际上,该应用程序确实按预期工作。但是,我正在努力测试Web应用程序,即使用spring boot的工具编写集成测试。
运行下面的测试,加载弹簧上下文,我注意到执行器端点没有注册。
@RunWith(SpringRunner.class)
@DirtiesContext
@SpringBootTest
@AutoConfigureTestDatabase(replace= AutoConfigureTestDatabase.Replace.AUTO_CONFIGURED)
@TestExecutionListeners({ DependencyInjectionTestExecutionListener.class, DirtiesContextTestExecutionListener.class, WithSecurityContextTestExecutionListener.class})
@WebAppConfiguration
@Slf4j
public class ActuatorControllerTest {
private MediaType contentTypeJSON = new MediaType(MediaType.APPLICATION_JSON.getType(), MediaType.APPLICATION_JSON.getSubtype(), StandardCharsets.UTF_8);
protected MockMvc mockMvc;
@Autowired
private WebApplicationContext webApplicationContext;
@Before
public void setUp() throws Exception {
this.webApplicationContext.getBean(HealthEndpoint.class).setEnabled(true);
this.mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).apply(springSecurity()).build();
}
@Test
@WithMockUser(username="test",roles={"developers"})
public void user_without_role_administrator_should_not_be_able_to_access_actuator() throws Exception {
mockMvc.perform(get("/manage/health").with(csrf()))
.andExpect(status().isForbidden());
}
@Test
@WithMockUser(username="admin",roles={"administrator"})
public void user_with_role_administrator_should_be_able_to_access_actuator() throws Exception {
mockMvc.perform(get("/manage/health")
.with(csrf())
// I also tried the following approach which miserably failed
// .with(user(buildUserDetails()))
).andExpect(status().isOk());
}
private UserDetails buildUserDetails() {
return User.withUsername("admin").password("admin").roles("administrators").build();
}
}
日志文件摘要
2017-06-19 09:09:35.966 DEBUG 986 --- [ main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'environmentEndpoint': no URL paths identified
2017-06-19 09:09:35.966 DEBUG 986 --- [ main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'healthEndpoint': no URL paths identified
2017-06-19 09:09:35.966 DEBUG 986 --- [ main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'beansEndpoint': no URL paths identified
2017-06-19 09:09:35.966 DEBUG 986 --- [ main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'infoEndpoint': no URL paths identified
2017-06-19 09:09:35.966 DEBUG 986 --- [ main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'loggersEndpoint': no URL paths identified
2017-06-19 09:09:35.966 DEBUG 986 --- [ main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'metricsEndpoint': no URL paths identified
2017-06-19 09:09:35.966 DEBUG 986 --- [ main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'traceEndpoint': no URL paths identified
2017-06-19 09:09:35.966 DEBUG 986 --- [ main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'dumpEndpoint': no URL paths identified
2017-06-19 09:09:35.966 DEBUG 986 --- [ main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'autoConfigurationReportEndpoint': no URL paths identified
2017-06-19 09:09:35.966 DEBUG 986 --- [ main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'shutdownEndpoint': no URL paths identified
2017-06-19 09:09:35.966 DEBUG 986 --- [ main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'configurationPropertiesReportEndpoint': no URL paths identified
2017-06-19 09:09:35.966 DEBUG 986 --- [ main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'endpoints-org.springframework.boot.actuate.endpoint.EndpointProperties': no URL paths identified
2017-06-19 09:09:35.966 DEBUG 986 --- [ main] o.s.w.s.h.BeanNameUrlHandlerMapping : Rejected bean name 'org.springframework.boot.autoconfigure.web.ServerPropertiesAutoConfiguration': no URL paths identified
application.properties中的相关代码段如下所示。
management.port=8080
management.context-path=/manage
management.security.enabled=false
endpoints.health.sensitive=false
management.health.db.enabled=false
management.health.defaults.enabled=true
management.health.diskspace.enabled=true
management.security.roles=administrators
有人可以帮助我,让我知道我在这里做错了什么以及如何解决被拒绝的bean名称问题以便继续进行?
在我的情况下,弹簧靴和执行器的版本是 1.5.2.RELEASE 。
答案 0 :(得分:0)
你如何在pom中添加执行器依赖?你在依赖中添加了任何范围吗? 如果您已添加如下所示,请删除编译或将其更改为测试
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<scope>compile</scope>
</dependency>