0

我有一个运行如下代码的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 { }

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

4

1 回答 1

5

解决如下:

private ThreadState _threadState;
protected Subject _mockSubject;

        @Before
        public void before() {
            _mockSubject = Mockito.mock(Subject.class);
            _threadState = new SubjectThreadState(_mockSubject);
            _threadState.bind();
        }
于 2013-07-26T13:38:01.960 回答