我有一个junit测试用例,它运行如下代码:
if (SecurityUtil.isAuthenticated()) {
}
它给出了一个例外:
org.apache.shiro.UnavailableSecurityManagerException: No SecurityManager accessible to the calling code, either bound to the org.apache.shiro.util.ThreadContext or as a vm static singleton. This is an invalid application configuration.
我的测试类配置如下:
@RunWith(SpringJUnit4ClassRunner.class)
@TestExecutionListeners({ WebContextTestExecutionListener.class,
DependencyInjectionTestExecutionListener.class,
DirtiesContextTestExecutionListener.class,
TransactionalTestExecutionListener.class })
@ActiveProfiles("test")
@DirtiesContext
@ContextConfiguration(loader = AnnotationConfigContextLoader.class, classes = {
SpringConfig.class, SpringTestingConfig.class,
SpringLocalContainerJPAConfig.class, CustomConfiguration.class })
public class MyTestClass { }
请告知如何解决此错误,谢谢。
答案 0 :(得分:5)
解决如下:
private ThreadState _threadState;
protected Subject _mockSubject;
@Before
public void before() {
_mockSubject = Mockito.mock(Subject.class);
_threadState = new SubjectThreadState(_mockSubject);
_threadState.bind();
}