我正面临着使用maven的powermock和mockito的奇怪构建问题。我可以完美地运行测试(不使用maven)。但是当我尝试使用来自cli或构建服务器的maven运行测试时,我得到以下异常:
错误测试: 测试机制:java.lang.ClassNotFoundException:org.mockito.internal.progres s.ThreadSafeMockingProgress
我的单元测试如下:
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.CoreMatchers.notNullValue;
import static org.junit.Assert.assertThat;
import static org.mockito.Matchers.anyString;
import static org.mockito.Mockito.when;
import java.io.IOException;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.invocation.InvocationOnMock;
import org.mockito.stubbing.Answer;
import org.powermock.api.mockito.PowerMockito;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;
import android.util.Log;
import com.generic_io.concurrent.ResultReceiverCallableFactory;
@RunWith(PowerMockRunner.class)
@PrepareForTest({
Log.class
})
public class TestPowerMockTest
{
@Mock
ResultReceiverCallableFactory callableFactory;
@Before
public void setUp() throws IOException
{
mockLogger();
}
private void mockLogger()
{
PowerMockito.mockStatic(Log.class);
when(Log.d(anyString(), anyString())).thenAnswer(new Answer<Integer>()
{
@Override
public Integer answer(final InvocationOnMock invocation) throws Throwable
{
final String tag = (String) invocation.getArguments()[0];
final String msg = (String) invocation.getArguments()[1];
System.out.println("[" + tag + "] " + msg);
return 0;
}
});
}
@Test
public void testPreconditions()
{
assertThat("ResultReceiverCallableFactory is null", callableFactory, is(notNullValue()));
}
}
我的pom.xml看起来像这样:
<dependencies>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>2.2.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.generic_io</groupId>
<artifactId>generic_io</artifactId>
<version>1.0-SNAPSHOT</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.pivotallabs</groupId>
<artifactId>robolectric</artifactId>
<version>1.0-RC1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito</artifactId>
<version>1.4.9</version>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>1.4.9</version>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.8.5</version>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.cobertura</groupId>
<artifactId>cobertura</artifactId>
<version>1.9.4.1</version>
</dependency>
</dependencies>
从CLI构建时,我收到以下错误:
Tests in error:
Test mechanism: java.lang.ClassNotFoundException: org.mockito.internal.progres
s.ThreadSafeMockingProgress
任何人都知道我为什么会收到此错误?非常感谢帮助...
答案 0 :(得分:1)
您需要将Dexmaker添加到您的依赖项中,如下所示:
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
</dependency>
<dependency>
<groupId>com.google.dexmaker</groupId>
<artifactId>dexmaker</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>com.google.dexmaker</groupId>
<artifactId>dexmaker-mockito</artifactId>
<version>1.0</version>
</dependency>
但是,我认为它不适用于Powermock。这post可以帮助您。
答案 1 :(得分:0)
除了org.mockito.internal.progress.ThreadSafeMockingProgress之外,您的maven配置看起来不正确。
在执行以下命令时,您看到哪个mockito版本?
mvn dependency:build-classpath -DincludeScope=test
答案 2 :(得分:0)
以防万一随机帮助某人,我通过评论Surefire插件配置得到了同样的错误。
我遇到了同样的错误,分析了Eclipse / Maven类路径,发现没有区别(除了“/eclipse/configuration/org.eclipse.osgi/bundles/320/1/.cp/”条目)。
在我的情况下,我之前禁用了POM中Surefire插件的测试分支(以解决其他问题)。我以为我只是试着评论出来并让它再次起作用。随机,但我想我会传递它。
为完整起见,我注释掉的配置如下:
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.7.2</version>
<configuration>
<forkMode>never</forkMode>
</configuration>
</plugin>
-->