2

我有一个带有单元测试的 maven 项目,并且在运行“mvn install”时得到了很大的异常跟踪。令人惊讶的是 - 这个堆栈跟踪实际上不会导致任务失败!看来这与Junit库的可用性有关......

1)我想知道如何(显然)为这个项目解决这个问题,以便库可用并且测试运行(是的,Junit4 在 pom.xml 依赖项中)。

2)明确调试并找到根本原因的最佳方法是什么?

3) 为什么 Maven 说“构建成功”时,surefire 实用程序显然抛出了一个讨厌的异常?

org.apache.maven.surefire.util.SurefireReflectionException:java.lang.reflect.InvocationTargetException;嵌套异常是 java.lang.reflect.InvocationTargetException: null java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect .DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(ReflectionUtils.java:164) at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:110) 在 org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:172) 在 org.apache。

POM在下面

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>rudolf</groupId>
    <artifactId>r1</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>r1</name>
    <url>http://maven.apache.org</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.3</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-io</artifactId>
            <version>1.3.2</version>
        </dependency>
        <dependency>
            <groupId>org.apache.derby</groupId>
            <artifactId>derby</artifactId>
            <version>10.9.1.0</version>
        </dependency>
        <dependency>
            <groupId>com.google.protobuf</groupId>
            <artifactId>protobuf-java</artifactId>
            <version>2.4.0a</version>
        </dependency>
    </dependencies>


    <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.9</version>
            <executions>
                <execution>
                    <phase>test</phase>
                    <goals>
                        <goal>test</goal>
                    </goals>
                </execution>
            </executions>
          </plugin>          
          <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-compiler-plugin</artifactId>
             <version>2.3.2</version>
             <configuration>
               <source>1.6</source>
               <target>1.6</target>
             </configuration>
           </plugin>
        </plugins>
    </build>



    <pluginRepositories>
        <pluginRepository>
            <id>onejar-maven-plugin.googlecode.com</id>
            <url>http://onejar-maven-plugin.googlecode.com/svn/mavenrepo</url>
        </pluginRepository>
    </pluginRepositories>
</project>
4

2 回答 2

3

这绝对是一场完美的愚蠢风暴:

1) My Test Classes 没有按照默认的surefire正则表达式命名请看相关的Maven没有找到要运行的JUnit测试。所以测试并没有真正运行。

2) DID 运行的测试实际上是在做一些 JVM 黑客攻击,使用诸如“不安全”之类的类 - 导致分段错误。这种分段错误与整个 Maven 构建相混淆,破坏了 Maven 输出的结果。

带回家的课程是:

1)(不是 100% 肯定,但它似乎)——如果在 mvn 构建期间 JVM 中发生了一些奇怪的低级故障,人们可能会期望最后会出现奇怪的结果,这并不能简单地以正确的方式指示错误/故障

2)用于surefire行为的默认Junit测试用例不只是自动运行包中的所有@Test方法 - 必须适当地命名类,或者您必须手动编辑surefire模式过滤器。

于 2012-11-07T19:00:35.657 回答
0

我在使用 TestNG 集成测试(故障安全)时遇到了这样的问题。一个类似的非常神秘的错误导致我失去了一整天(啊!-请 Eclipse/TestNG,如果您要给我们错误,请让它们有所帮助)。就我而言,这是因为测试方法上的访问器是私有的,需要公开。

我希望其他人在浪费一整天之前发现这很有用。

于 2015-03-30T23:35:45.583 回答