Elasticsearch 集成测试和 spring-test 不能很好地协同工作 - AccessControlException
Posted
技术标签:
【中文标题】Elasticsearch 集成测试和 spring-test 不能很好地协同工作 - AccessControlException【英文标题】:Elasticsearch Integration test and spring-test doesn't work well together - AccessControlException 【发布时间】:2019-09-20 23:07:22 【问题描述】:看起来我们不能使用多个运行器运行 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()");
如果有人可以指导如何确保 spring-test 和 ESIntegTestCase 无缝协同工作,那就太好了。
【问题讨论】:
【参考方案1】:我知道这有点晚了,但我们刚刚遇到了ESIntegTestCase
的许多问题,并想分享我们的解决方案。我们最终使用来自testcontainers.org 的Elasticsearch container 作为我们集成测试的嵌入式Elasticsearch。
优点是您可以使用任何版本的 Elasticsearch,并且很容易集成到任何项目中。
【讨论】:
以上是关于Elasticsearch 集成测试和 spring-test 不能很好地协同工作 - AccessControlException的主要内容,如果未能解决你的问题,请参考以下文章
在 SpringBoot 中使用 Testcontainers 进行 Spring Data Elasticsearch 集成测试
Elasticsearch Spring boot 集成测试
SpringBoot + Elasticsearch7.6实现查询及高亮分词查询,超级详细!