我必须构建一个Unit测试来测试一些用户操作,当他们通过身份验证时。
我已经掌握了EasyMock和TestNG的一切。
但是我找不到注入SecurityContextHolderStrategy的方法(我使用这个接口是为了能够在我的Controller中注入和模拟SecurityContextHolder所以我可以有两个不同的设置用于生产,一个用于使用分离的applicationContext进行测试。 XML)
但是我很难创建一个可以将SecurityContextHolderStrategy与正确设置匹配的bean(在Test一个空的上下文中,并在prod中注入真实的一个)。
任何人都可以帮助我吗?
这是Controller的代码示例。
@Controller
@RequestMapping("/topic/**")
public class TopicController {
@Autowired
PostRepository postRepo;
@Autowired
TopicRepository top;
@Autowired
PersonRepository per;
@Autowired
ProductRepository pro;
@Autowired
TopicControllerHelper topHelper;
@Autowired
SecurityContextHolderStrategy securityContext;
@RequestMapping(value="/topic/{topicId}", method=RequestMethod.GET)
public ModelAndView showPage(@PathVariable("topicId") int id){
ModelAndView model = new ModelAndView("/topic");
Topic topic = top.findTopicByID((long) id);
model.addObject("topic",topic);
Post post = new Post();
post.setPerson(topic.getPerson());
post.setTopic(topic);
model.addObject("post",post);
model.addObject("logged",securityContext.getContext().getAuthentication().getName());
return model;
}
我的testApplicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:sec="http://www.springframework.org/schema/security" xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
<context:spring-configured />
<context:component-scan base-package="br.com.gsc" />
<tx:annotation-driven mode="aspectj" transaction-manager="transactionManager"/>
<!-- <tx:annotation-driven transaction-manager="transactionManager"/> -->
<mvc:annotation-driven />
<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="persistenceUnitName" value="gscTest" />
</bean>
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>
<bean id="securityContext" class="org.springframework.security.core.context.SecurityContextHolderStrategy">
我迷路了!!!在测试和生产中应该有什么 使每个.xml中的Context工作?
</bean>
<!-- <bean id="tilesConfigurer" class="org.springframework.web.servlet.view.tiles2.TilesConfigurer"
p:definitions="/WEB-INF/tiles-defs.xml" /> -->
</beans>
答案 0 :(得分:0)
我意识到这不是你问题的直接答案,但是你想过使用Powermock来模拟静态的SecurityContextHolder.getSecurityContext()方法吗?
答案 1 :(得分:0)
使用可以模拟的接口创建一个单独的bean,并让该bean从静态上下文中读取Authentication。如果您有用户对象,它甚至可以返回用户而不是名称。