由于java.lang.NoClassDefFoundError:junit / framework / AssertionFailedError,Tycho测试失败

时间:2012-07-06 21:27:08

标签: eclipse maven junit junit4 tycho

我完全陷入困境,并被这一个惊呆了。根据我的理解,应该工作,但我不知道为什么。

我有一个tycho构建,只在Eclipse工作台中运行一些测试。但是,我的所有测试都因这种异常而失败:

java.lang.NoClassDefFoundError: junit/framework/AssertionFailedError
at org.grails.ide.eclipse.commands.test.AbstractCommandTest.tearDown(AbstractCommandTest.java:112)
at junit.framework.TestCase.runBare(TestCase.java:140)
at junit.framework.TestResult$1.protect(TestResult.java:110)
at junit.framework.TestResult.runProtected(TestResult.java:128)
at junit.framework.TestResult.run(TestResult.java:113)
at junit.framework.TestCase.run(TestCase.java:124)
at junit.framework.TestSuite.runTest(TestSuite.java:243)
at junit.framework.TestSuite.run(TestSuite.java:238)
at junit.framework.TestSuite.runTest(TestSuite.java:243)
at junit.framework.TestSuite.run(TestSuite.java:238)
at org.springsource.ide.eclipse.commons.tests.util.ManagedTestSuite.run(ManagedTestSuite.java:231)
at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:53)
at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:123)
at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:104)
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)
at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:175)
at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:123)
at org.eclipse.tycho.surefire.osgibooter.OsgiSurefireBooter.run(OsgiSurefireBooter.java:84)
at org.eclipse.tycho.surefire.osgibooter.AbstractUITestApplication$1.run(AbstractUITestApplication.java:35)
at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:135)
at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3529)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3182)
at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1022)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:916)
at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86)
at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:585)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:540)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124)
at org.eclipse.tycho.surefire.osgibooter.UITestApplication.runApplication(UITestApplication.java:31)
at org.eclipse.tycho.surefire.osgibooter.AbstractUITestApplication.run(AbstractUITestApplication.java:114)
at org.eclipse.tycho.surefire.osgibooter.UITestApplication.start(UITestApplication.java:37)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180)
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.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584)
at org.eclipse.equinox.launcher.Main.run(Main.java:1438)
at org.eclipse.equinox.launcher.Main.main(Main.java:1414)

Caused by: java.lang.ClassNotFoundException: junit.framework.AssertionFailedError
at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:501)
at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:421)
at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:412)
at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107)
at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
... 54 more

这对我没有意义。 org.junitorg.junit4是运行测试的bundle以及包含AbstractCommandTest的bundle的依赖项。这些测试在我的工作区内运行时会通过,那么为什么maven / tycho无法加载junit类呢?

我很乐意提供更多信息,例如github repo的链接,如果这会有所帮助。


编辑:提供更多详情

github repo在这里:https://github.com/grails/grails-sts-tests

你可以看到它是一个简单的单个插件,只运行一些测试。测试套件由来自其他存储库中插件的测试组成,这些插件被指定为依赖项。请注意,位于其他存储库中的测试插件在另一个CI服务器上运行,并且没有NoClassDefFoundError问题。我已经看过其他CI服务器并且没有注意到任何不同(不幸的是,这个CI服务器不能公开访问,所以我无法共享它的链接)。

显示问题的哈德森构建作业在此处:http://hudson.grails.org/job/grails-sts-tests-2.0.x/17/console

4 个答案:

答案 0 :(得分:1)

我们遇到了非常类似的问题。原因是junit框架试图创建和使用自定义类加载器,并且这与eclipse插件类加载器不兼容。我们现在遵循一些使用Tycho运行单元测试的指南。

  1. 您的单元测试位于插件片段中。单元测试片段依赖于JUnit。
  2. 你的pom应该关闭使用系统类加载器进行单元测试。这就是导致junit测试类丢失的原因。
  3. 然后你使用与标准插件相同的包装(确切地说是eclipse-plugin)。
  4. 所以一个简单的POM(对我们来说)看起来像这样:

    <?xml version="1.0" encoding="UTF-8"?>
    <project
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
    xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <artifactId>master</artifactId>
        <groupId>mgws</groupId>
        <version>0.0.1-SNAPSHOT</version>
        <relativePath>../../mgws/build-environment/pom.xml</relativePath>
      </parent>
      <groupId>mgws</groupId>
      <artifactId>mgws.spectral.test</artifactId>
      <version>1.0.0-SNAPSHOT</version>
      <packaging>eclipse-plugin</packaging>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.12</version>
            <executions>
              <execution>
                <id>JUnitTest</id>
                <goals>
                  <goal>test</goal>
                </goals>
                <phase>install</phase>
                <configuration>
                  <useSystemClassLoader>false</useSystemClassLoader>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </project>
    

    这使得单元测试框架使用eclipse插件类加载器,现在它可以找到所有类。

答案 1 :(得分:0)

我要做的事情要检查:

  1. 检查NoClassDefFoundError的原因。有多种原因,如UnSupportedClassVersionError和ExceptionINinitializationError最常见。
  2. 使用JVM选项-verbose:class来获取类加载日志,并从所需类的预期工件中加载检查类。

答案 2 :(得分:0)

我遇到了一个类似的问题,在依赖于几个第三方罐子的Android项目上运行junit测试,问题最终是其中一个依赖的jar用jdk v1.5构建,其他一切都是1.6。我将一个库更新为使用1.6构建的较新版本,然后错误消失了。

不知道它是否是同一个问题,或者你是否可以配置tycho或更新它,但它可能值得一看......

答案 3 :(得分:0)

仍然没有人能够回答这个问题,但感谢信息,即使它没有直接用处。

我取得了一些进展。我现在通过了60次测试中的45次。我只是在tycho-surefire-pluign配置区添加了一些额外的依赖:

                <dependencies>
                    <dependency>
                        <type>p2-installable-unit</type>
                        <artifactId>org.junit</artifactId>
                        <version>0.0.0</version>
                    </dependency>
                    ...
                </dependencies>

不幸的是,剩下的测试仍然失败了NoClassDefFoundError。我可能需要添加更多依赖项,一切都会有效。