9

我无法通过 Maven 运行 Powermock。我是用于驱动 jUnit 测试的 PowerMock Mockito 和 PowerMockRunner。

这是测试:

@RunWith(PowerMockRunner.class)
@PrepareForTest( { UserLocalServiceUtil.class, ExpandoBridge.class })
public class AlertNotificationsTest {
//...

我没有为运行测试配置任何特别的东西。我的 pom 引用了以下部门:

  • org.mockito | 模拟所有| 1.8.0
  • 君特 | 君特 | 4.6.0
  • org.powermock.modules | powermock-module-junit4 | 1.3.1
  • org.powermock.api | powermock-api-mockito | 1.3.1

当我运行mvn -Dtest=AlertNotificationsTest testmvn 时说没有要运行的测试。但是,如果我从 eclipse 运行相同的测试类,一切运行正常。

难道我做错了什么?


这是我的 pom.xml 下面(相关部分)

    <dependency>
        <groupId>org.testng</groupId>
        <artifactId>testng</artifactId>
        <version>5.9</version>
        <classifier>jdk15</classifier>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.6</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.mockito</groupId>
        <artifactId>mockito-all</artifactId>
        <version>1.8.0</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.powermock.modules</groupId>
        <artifactId>powermock-module-junit4</artifactId>
        <version>1.3.1</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.powermock.api</groupId>
        <artifactId>powermock-api-mockito</artifactId>
        <version>1.3.1</version>
        <scope>test</scope>
    </dependency>
</dependencies>

这是maven的输出

mvn -Dtest=AlertNotificationsTest 测试

...
[INFO] Surefire report directory: C:\Devel\Java\EP_PORTAL\information-provider\target\surefi

-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running TestSuite
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.313 sec

Results :

Tests run: 0, Failures: 0, Errors: 0, Skipped: 0

[INFO] ------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] No tests were executed!  (Set -DfailIfNoTests=false to ignore this error.)
[INFO] ------------------------------------------------------------------------

注意:我可以运行其他测试,但我不能运行这个测试。如果我让AlertNotificationsTest类扩展junit.framework.TestCase类被 maven 拾取,但它似乎没有被PowerMockRunner.

这是它的输出:


Running TestSuite
[ERROR]: No test suite found.  Nothing to run
Tests run: 4, Failures: 2, Errors: 0, Skipped: 0, Time elapsed: 1.053 sec <<< FAILURE!

Results :

Failed tests:
  testSingleEventNotification(pt.estradasportugal.traffic.services.events.AlertNotificationsTest)
  testTwoEventNotification(pt.estradasportugal.traffic.services.events.AlertNotificationsTest)

Tests run: 4, Failures: 2, Errors: 0, Skipped: 0

同样,这些测试在 Eclipse 上运行得很好。


更新我发现了一个可能的问题和解决方法。我有 TestNG 和 JUnit 的测试。如果我从我的 pom 中删除 TestNG 并将我的所有测试迁移到 JUnit,我就可以使用mvn test. 因此,maven 和 junit/testng 组合似乎存在问题。

我希望能够同时运行两者,但如果我找不到方法,我会去回答我自己的问题。谢谢伙计们

4

7 回答 7

12

我刚刚遇到这个错误并解决了这个问题。我的 pom.xml 文件具有以下依赖项:

<dependency>
  <groupId>org.powermock</groupId>
  <artifactId>powermock-mockito-release-full</artifactId>
  <version>1.5</version>
  <classifier>full</classifier>
  <scope>test</scope>
</dependency>

问题来自我的代码使用 JUnit 并且上述依赖项对 TestNG 有外部依赖项。这阻止了我的测试运行。为什么我不知道 - 尽管测试框架会被测试得更好一点,但您会认为它会更好!

无论如何,解决方案是将“完整”依赖关系分解为所需的依赖关系:

<dependency>
  <groupId>org.powermock</groupId>
  <artifactId>powermock-api-mockito</artifactId>
  <version>1.5</version>
  <scope>test</scope>
</dependency>
<dependency>
  <groupId>org.powermock</groupId>
  <artifactId>powermock-core</artifactId>
  <version>1.5</version>
  <scope>test</scope>
</dependency>
<dependency>
  <groupId>org.powermock</groupId>
  <artifactId>powermock-module-junit4</artifactId>
  <version>1.5</version>
  <scope>test</scope>
</dependency>

那解决了它。顺便说一句,我曾经mvn dependency:tree了解相关的依赖关系。

于 2013-01-02T17:34:06.237 回答
2

我也遇到了这个问题,但它不是 PowerMock 问题。我的测试类被命名为 XStaticTests.java。

当我运行“mvn clean test”时,这个测试不会运行,它只在我使用“-Dtest=...”指定测试时运行

Surefire 文档提到,默认情况下仅搜索这些模式:“ /Test*.java” - 包括其所有子目录和所有以“Test”开头的 java 文件名。“ /Test.java”——包括其所有子目录和所有以“Test”结尾的 java 文件名。" */*TestCase.java" - 包括它的所有子目录和所有以 "TestCase" 结尾的 java 文件名。

因此,将类名更改为以其中之一结尾的类名将在调用“mvn test”时运行,否则需要专门使用类名配置surefire插件。

于 2012-09-14T12:48:14.947 回答
2

我无法重现您的问题。在我的 pom.xml 中包含以下内容:

  <repositories>
    <repository>
      <id>powermock-repo</id>
      <url>http://powermock.googlecode.com/svn/repo/</url>
    </repository>
  </repositories>
  <properties>
    <powermock.version>1.3.1</powermock.version>
  </properties>
  <dependencies>
    <dependency>
      <groupId>org.powermock.modules</groupId>
      <artifactId>powermock-module-junit4</artifactId>
      <version>${powermock.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.powermock.api</groupId>
      <artifactId>powermock-api-mockito</artifactId>
      <version>${powermock.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.6</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <version>1.8.0</version>
    </dependency>
  </dependencies>

以及以下测试类(跳过导入):

@RunWith(PowerMockRunner.class)
@PrepareForTest( { App.class })
public class AppTest {
    @Test
    public void testApp() {
        assertTrue(true);
    }
}

运行mvn test -Dtest=AppTest正常并给我以下输出:

...
-------------------------------------------------- -----
 测试
-------------------------------------------------- -----
运行 com.mycompany.app.AppTest
测试运行:1,失败:0,错误:0,跳过:0,经过时间:0.135 秒

结果 :

测试运行:1,失败:0,错误:0,跳过:0

[信息] --------------------------------------------- -------------------------
[信息] 构建成功
[信息] --------------------------------------------- -------------------------
[INFO] 总时间:3 秒
[INFO] 完成时间:2009 年 11 月 25 日星期三 17:34:32 CET
[INFO] 最终内存:9M/79M
[信息] --------------------------------------------- -------------------------

所以问题是:你有一个用@Testin注释的方法AlertNotificationsTest吗?

于 2009-11-25T16:40:04.013 回答
1

Powermock 设置对我来说看起来不错,并且 jar 看起来很好(假设 maven 传递依赖项得到了其他 powermock jar - 在我们的 ivy 解析得到它们之后,我们大约有 6-7 个)

Eclipse 可能正在使用它自己的“内部”JUnit 库,因此有不同的行为?

测试是否用 org.junit.@Test 注释?

于 2009-11-25T13:50:38.457 回答
0

我有同样的问题,我花了一段时间才弄清楚。我的设置是引入旧版本的 jboss.javassist,奇怪的是它完全阻止了 PowerMockRunner 工作。

值得注意的是,我也有一个混合的 JUnit / TestNG 环境。我之前尝试过添加多个surefire 提供程序的解决方案,但也没有用(使用surefire 2.14.1)。升级到 surefire 2.17 后,我的 JUnit 和 TestNG 测试都开始运行,而无需声明任何 surefire 提供程序。

这是我的插件部分...

        <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.17</version>
            <configuration>
                <groups>spring, unit, integration</groups>
                <systemPropertyVariables>
                    <java.awt.headless>true</java.awt.headless>
                    <org.apache.activemq.default.directory.prefix>target/test/</org.apache.activemq.default.directory.prefix>
                    <log4j.configuration>file:${project.basedir}/src/test/resources/log4j.properties</log4j.configuration>
                </systemPropertyVariables>
                <argLine>${surefire.args}</argLine>
            </configuration>
        </plugin>

...以及相关的测试部门...

    <dependency>
        <groupId>org.mockito</groupId>
        <artifactId>mockito-all</artifactId>
        <version>1.9.5</version>
        <scope>test</scope>
    </dependency>
    <!--
    PowerMock versions are compatible with specific Mockito versions.
    https://code.google.com/p/powermock/wiki/MockitoUsage13
     -->
    <dependency>
        <groupId>org.powermock</groupId>
        <artifactId>powermock-module-junit4</artifactId>
        <version>1.5.4</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.powermock</groupId>
        <artifactId>powermock-api-mockito</artifactId>
        <version>1.5.4</version>
        <scope>test</scope>
    </dependency>
    <!-- without this PowerMock tests don't run in maven -->
    <dependency>
        <groupId>jboss</groupId>
        <artifactId>javassist</artifactId>
        <version>3.8.0.GA</version>
        <scope>test</scope>
    </dependency>
于 2014-03-20T16:04:31.710 回答
0

如果你查看 Surefire 插件的源代码,它会做一些偷偷摸摸的事情。如果它在 Classloader 中找到任何 TestNG 包,它将选择运行 TestNG TestRunner。我还没有看到 JUNit 和 TestNG 测试并排运行良好的任何示例。

于 2010-10-04T23:51:41.310 回答
-1

混合 TestNG 和 JUnit 测试时出现问题。将所有测试迁移到 Junit 解决了我的问题。多谢你们。

于 2009-12-02T12:25:35.500 回答