Elasticsearch集成测试和弹簧测试不能很好地配合使用-AccessControlException

时间:2019-05-02 12:13:41

标签: java spring-boot elasticsearch junit spring-test

看起来我们不能让Junit测试与多个运行程序一起运行。就我而言,我需要RandomizedRunner(以便能够使用/扩展ESIntegTestCases)和SpringJUnit4ClassRunner来自动连接被测类。

我们可以指定单个@RunWith注释。我保留@RunWith(RandomizedRunner.class)。要激活spring junit测试支持,请在我的测试用例中添加。

@ClassRule
    public static final SpringClassRule SPRING_CLASS_RULE = new SpringClassRule();

@Rule
    public final SpringMethodRule springMethodRule = new SpringMethodRule();

但是,当我尝试使用上述设置运行单元测试时,我遇到了AccessControlException。

Caused by: java.security.AccessControlException: access denied ("java.lang.reflect.ReflectPermission" "suppressAccessChecks")
    at java.security.AccessControlContext.checkPermission(AccessControlContext.java:472)
    at java.security.AccessController.checkPermission(AccessController.java:884)
    at java.lang.SecurityManager.checkPermission(SecurityManager.java:549)
    at java.lang.reflect.AccessibleObject.setAccessible(AccessibleObject.java:128)
    at org.springframework.util.ReflectionUtils.makeAccessible(ReflectionUtils.java:207)
    at org.springframework.util.ReflectionUtils.accessibleConstructor(ReflectionUtils.java:191)
    at org.springframework.core.io.support.SpringFactoriesLoader.instantiateFactory(SpringFactoriesLoader.java:164)
    ... 17 more

完整的测试用例来源供参考:

import com.carrotsearch.randomizedtesting.RandomizedRunner;
import com.carrotsearch.randomizedtesting.annotations.ThreadLeakScope;
import org.junit.ClassRule;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.rules.SpringClassRule;
import org.springframework.test.context.junit4.rules.SpringMethodRule;


@RunWith(RandomizedRunner.class)
@ThreadLeakScope(ThreadLeakScope.Scope.NONE)
@SpringBootTest(classes = ProductSearchDemoApplication.class)
public class ProductSearchServiceTest extends ESIntegTestCase {

    @Autowired
    private ProductService productService;

    @ClassRule
    public static final SpringClassRule SPRING_CLASS_RULE = new SpringClassRule();

    @Rule
    public final SpringMethodRule springMethodRule = new SpringMethodRule();

    @Test
    public void test() throws Exception {
        System.out.println("SubTestWithRunner test()");
    }
}

如果有人可以指导如何确保弹簧测试和ESIntegTestCase无缝协作,那将是很棒的事情。

1 个答案:

答案 0 :(得分:1)

我知道这有点晚了,但是我们刚遇到ESIntegTestCase的许多问题,并希望分享我们的解决方案。我们最终将Elasticsearch container中的testcontainers.org用作我们的集成测试的嵌入式Elasticsearch。

优点是您可以使用任何版本的Elasticsearch,并且可以轻松集成到任何项目中。

相关问题