org.apache.shiro.UnavailableSecurityManagerException:调用代码无法访问SecurityManager

时间:2013-07-26 12:21:50

标签: spring junit shiro

我有一个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 { }

请告知如何解决此错误,谢谢。

1 个答案:

答案 0 :(得分:5)

解决如下:

private ThreadState _threadState;
protected Subject _mockSubject;

        @Before
        public void before() {
            _mockSubject = Mockito.mock(Subject.class);
            _threadState = new SubjectThreadState(_mockSubject);
            _threadState.bind();
        }