我已经为在Windows上运行的HBase编写了本地集成测试,使用HBaseTestingUtility
设置HBase的本地实例:
public class HBaseTestServer extends ExternalResource {
private HBaseTestingUtility hbaseUtility;
@Override
protected void before() throws Exception {
System.setProperty("test.build.data.basedirectory", "C:/Temp/hbase");
this.hbaseUtility = new HBaseTestingUtility();
this.hbaseUtility.startMiniCluster();
}
...
如果我自己运行集成测试类,它可以正常工作。但是,此类在另一个测试类之后运行,该类使用PowerMock来模拟HBase:
@RunWith(PowerMockRunner.class)
@PrepareForTest({HBaseAdapter.class, Connection.class, ConnectionFactory.class})
public class HBaseAdapterTest {
...
如果我在项目上运行所有测试,则首先运行PowerMock HBaseAdapterTest
,并且我的集成测试失败并显示错误:
java.lang.UnsatisfiedLinkError: org.apache.hadoop.io.nativeio.NativeIO$Windows.access0(Ljava/lang/String;I)Z
at org.apache.hadoop.io.nativeio.NativeIO$Windows.access0(Native Method)
at org.apache.hadoop.io.nativeio.NativeIO$Windows.access(NativeIO.java:606)
at org.apache.hadoop.fs.FileUtil.canWrite(FileUtil.java:977)
这里发生了什么?我认为我需要在集成测试运行之前擦除所有PowerMock模拟,但我无法在线找到任何有用的东西。
对于任何对依赖感兴趣的人:
compile 'org.apache.hadoop:hadoop-client:2.8.1'
compile 'org.apache.hbase:hbase-client:1.1.2'
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:2.8.0'
testCompile 'org.powermock:powermock-api-mockito2:1.7.0RC2'
testCompile 'org.powermock:powermock-module-junit4:1.7.0'
testCompile 'org.powermock:powermock-core:1.7.0'
testCompile 'org.powermock:powermock-module-junit4-rule:1.7.0'
答案 0 :(得分:0)
根据Tom的评论,在不同的实例中运行测试已经解决了我的问题。在build.gradle
我添加了:
test {
forkEvery 1
}