55

最新のJDK7に切り替えましたが、emmaカバレッジツールをいじるバイトコードでtestngユニットテストを実行する際に問題が発生します。私のテストケースはどれも正しく実行されておらず、ほとんどの場合、そのようなエラーが発生しています。

 java.lang.ClassFormatError: Illegal local variable table length 10 in method measurement.meter.AbstractSerialPortMeter.<init>(Lmeasurement/meter/SerialPort;)V at measurement.meter.Elc3133aTest.setUp(Elc3133aTest.java:42)

ここで、 JSR 292 Goodness Fast Code Coverage Tool Less 10kの記事を見つけました。これは、「JSR 292は、新しいバイトコード命令invokedynamicだけでなく、いくつかの新しい種類の定数プール定数も導入します。つまり、バイトコードを解析するツールのほとんどは、 ASM、BCEL、findbugs、またはEMMAは、Java7と互換性があるように更新する必要があります。」

エマのホームページをチェックしましたが、久しぶりに更新されているようです。

誰かが同様の問題を解決しましたか?

Coberturaも試してみました。少しうまくいくように見えますが、タイプの例外がたくさんありますVerifyError

java.lang.VerifyError: Expecting a stackmap frame at branch target 85 in method measurement.meter.AbstractSerialPortMeter.close()V at offset 26
at measurement.meter.AbstractSerialPortMeterTest.setUp(AbstractSerialPortMeterTest.java:27)
4

7 に答える 7

76

Mavencoberturaプラグインを使用しても同じ問題が発生しました。cobertura:reportから実行すると、すべてのテストが失敗しました。ただし、surefireプラグインから直接実行すると、すべてのテストが成功しました。すでにおっしゃっていたように、問題はのcobertureバイトコードインストルメンテーションがJDK7と互換性がないことです。

ここhttp://vikashazrati.wordpress.com/2011/10/09/quicktip-verifyerror-with-jdk-7/で、例外が「StackMapTable属性を持つ新しいタイプチェッカー」に関連していることがわかります(-Xを参照)。 :+ UseSplitVerifier JVMオプション(http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html)。

したがって、私の解決策は、JVM arg "-XX:-UseSplitVerifierを使用して常にテストを実行するようにsurefire-pluginを構成することです。これは、coberturaインストルメンテーションの有無にかかわらず適切に機能します。

Mavenでの私の確実な構成:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.12</version>
    <configuration>
        <argLine>-XX:-UseSplitVerifier</argLine>
    </configuration>
</plugin>
于 2012-03-06T12:00:36.340 に答える
5

私も同じ問題を抱えていました。幸い、ベータ版はJDK 7で動作し ます。
更新サイトのリンク:http
://download.eclipselab.org/eclemma/beta/2.0.0/update/このリンクはEclipseで使用する必要があります。

Help -> Install new software... -> Add...


休憩は簡単なはずです;)

于 2011-12-13T22:51:52.720 に答える
2

Gradle 1.0M9、Java 7、およびEMMA 2.1が、jvm引数を使用してここで提案されたパッチで動作するようになりました。

詳細はこちら... http://marcellodesales.wordpress.com/2012/04/03/running-emma-code-test-coverage-with-java-7-and-gradle-1-0m9/?preview = true&preview_id = 179&preview_nonce = 261e892908

configurations{
  emma
}

dependencies {
  // EMMS Code Coverage
  emma "emma:emma:2.1.5320"
  emma "emma:emma_ant:2.1.5320"
  ...
  testCompile group: 'junit', name: 'junit', version: '4.9'
}

test {
    // add EMMA related JVM args to our tests
    jvmArgs "-XX:-UseSplitVerifier", "-Demma.coverage.out.file=$buildDir/tmp/emma/metadata.emma", "-Demma.coverage.out.merge=true"

    doFirst {
       println "Instrumenting the classes at " + sourceSets.main.output.classesDir.absolutePath
       // define the custom EMMA ant tasks
       ant.taskdef( resource:"emma_ant.properties", classpath: configurations.emma.asPath)

       ant.path(id:"run.classpath") {
          pathelement(location:sourceSets.main.output.classesDir.absolutePath)
       }
       def emmaInstDir = new File(sourceSets.main.output.classesDir.parentFile.parentFile, "tmp/emma/instr")
       emmaInstDir.mkdirs()
       println "Creating $emmaInstDir to instrument from " +       sourceSets.main.output.classesDir.absolutePath
       // instruct our compiled classes and store them at $buildDir/tmp/emma/instr
       ant.emma(enabled: 'true', verbosity:'info'){
          instr(merge:"true", destdir: emmaInstDir.absolutePath, instrpathref:"run.classpath",
                metadatafile: new File(emmaInstDir, '/metadata.emma').absolutePath) {
             instrpath {
             fileset(dir:sourceSets.main.output.classesDir.absolutePath, includes:"**/*.class")
             }
          }
       }
       setClasspath(files("$buildDir/tmp/emma/instr") + configurations.emma +    getClasspath())
    }

    // The report should be generated directly after the tests are done.
    // We create three types (txt, html, xml) of reports here. Running your build script now should
    // result in output like that:
    doLast {
       def srcDir = sourceSets.main.java.srcDirs.toArray()[0]
       println "Creating test coverage reports for classes " + srcDir
       def emmaInstDir = new File(sourceSets.main.output.classesDir.parentFile.parentFile, "tmp/emma")
       ant.emma(enabled:"true"){
          new File("$buildDir/reports/emma").mkdirs()
          report(sourcepath: srcDir){
             fileset(dir: emmaInstDir.absolutePath){
                include(name:"**/*.emma")
             }
             txt(outfile:"$buildDir/reports/emma/coverage.txt")
             html(outfile:"$buildDir/reports/emma/coverage.html")
             xml(outfile:"$buildDir/reports/emma/coverage.xml")
          }
       }
       println "Test coverage reports available at $buildDir/reports/emma."
       println "txt: $buildDir/reports/emma/coverage.txt"
       println "Test $buildDir/reports/emma/coverage.html"
       println "Test $buildDir/reports/emma/coverage.xml"
    }
}

「gradletest」を実行すると、次のようになります。

marcello@hawaii:/u1/development/workspaces/open-source/interviews/vmware$ gradle test
:compileJava
:processResources UP-TO-DATE
:classes
:compileTestJava
:processTestResources UP-TO-DATE
:testClasses
:test
Instrumenting the classes at /u1/development/workspaces/open-source/interviews/vmware/build/classes/main
Creating /u1/development/workspaces/open-source/interviews/vmware/build/tmp/emma/instr to instrument from /u1/development/workspaces/open-source/interviews/vmware/build/classes/main
Creating test coverage reports for classes /u1/development/workspaces/open-source/interviews/vmware/src/main/java
Test coverage reports available at /u1/development/workspaces/open-source/interviews/vmware/build/reports/emma.
txt: /u1/development/workspaces/open-source/interviews/vmware/build/reports/emma/coverage.txt
Test /u1/development/workspaces/open-source/interviews/vmware/build/reports/emma/coverage.html
Test /u1/development/workspaces/open-source/interviews/vmware/build/reports/emma/coverage.xml

BUILD SUCCESSFUL
于 2012-04-03T18:21:37.073 に答える
1

Emmaは、新しい言語機能(try-with-resourcesなど)を使用しない場合に機能します。新しいライブラリ(Paths、DirectoryStreamなど)を使用してJava7を使用できます。これは問題の解決策ではないことはわかっていますが、「JDK 7のパフォーマンス」のみを確認したい場合は、機能する可能性があります...

于 2011-11-16T16:10:01.543 に答える
1

私はこの問題を抱えていました。Eclipseマーケットプレイスを使用して2.0.1.201112281951にアップグレードするとうまくいきました。

于 2012-01-03T20:48:18.367 に答える
1

IntelliJ IDEA 11の内部カバレッジツールは、try-with-resources、diamond演算子を使用したプロジェクトでは正常に機能しますが、invokedynamicは使用していません。カバレッジツールはコミュニティエディションには含まれておらず、究極のものだけだと思います。

私はまだjacocoを試していません-それはemmaの元開発者のほとんどが行ったように見えるところです。

于 2012-01-15T21:08:57.203 に答える
0

PedroBallesterosによる回答に相当するJava8+は次のとおりです。

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-surefire-plugin</artifactId>
  <version>2.12.4</version>
  <configuration>
    <argLine>-noverify</argLine>
  </configuration>
</plugin>

(使用しているSurefireのバージョンと一致するようにバージョン番号を微調整します。)

于 2019-08-27T17:52:55.210 に答える