AttachNotSupportedException while running jMockit tests on IBM JRE

前端 未结 6 1069
北海茫月
北海茫月 2020-12-19 16:55

I am getting the below exception when I try to run a simple jMockit/JUnit test using IBM JDK. Has anyone faced this issue? I tried given -Dcom.ibm.tools.attach.enable=

相关标签:
6条回答
  • 2020-12-19 17:01

    Above answer to use -javaagent is correct. If you're using maven it's a little tricky, so here is how I did it:

    1. Add the maven-dependency-plugin so you can generate absolute paths to the dependencies:
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-dependency-plugin</artifactId>
      <version>2.5.1</version>
      <executions>
        <execution>
          <id>getClasspathFilenames</id>
          <goals>
             <goal>properties</goal>
          </goals>
        </execution>
      </executions>
    </plugin>
    

    2. Add -javaagent to surefire plugin

    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-surefire-plugin</artifactId>
      <version>2.13</version>
      <configuration>
        <argLine>-javaagent:${com.googlecode.jmockit:jmockit:jar} -XX:-UseSplitVerifier</argLine>
      </configuration>
    </plugin>
    

    3. Also, you don't have to, but I'd recommend using a relatively newer version of jmockit. This issues was detected in 1.1 (prior to September 2012 fix by @Rogério, but adding -javaagent fixes it regardless. For reference I am using the latest version available in maven central (2.5) as of this comment:

    <dependency>
      <groupId>com.googlecode.jmockit</groupId>
      <artifactId>jmockit</artifactId>
      <!-- Use latest version. 1.1 gives AttachNotSupportedException -->
      <version>1.5</version>
      <scope>test</scope>
    </dependency>
    
    0 讨论(0)
  • 2020-12-19 17:07

    Certain versions of the IBM JDK do not properly support the attach mechanism. You might try running with -javaagent:jmockit.jar parameter. The following info is a bit old, but it may still apply as other JDKs do not necessarily fully support the attach mechanism.

    See this: http://code.google.com/p/jmockit/issues/detail?id=18

    0 讨论(0)
  • 2020-12-19 17:15

    The Attach API simply doesn't work in the IBM JDK 6.0, at least on Windows. Therefore, it's necessary to use the -javaagent:jmockit.jar parameter.

    The NullPointerException that occurs at MockClassSetup.java:59, when using -javaagent, is caused by a bug in the IBM JDK. When a type referenced in an annotation attribute (@MockClass, in this case) is not present in the classpath, the JDK should throw a TypeNotPresentException. The Oracle JDKs do so as expected, but the IBM JDK returns null instead for the attribute value.

    I just implemented a workaround for this in class MockClassSetup, which will be available in the next JMockit release, by the end of september. For now, you can avoid the problem by adding TestNG to the classpath (since the "type not found" is the org.testng.TestNG class).

    0 讨论(0)
  • 2020-12-19 17:17

    I also tried using JMockit to override final methods in a class in a 3rd party library. I got the same problem discussed above, and again adding the VM arg -javaagent:C:/<Path-to-jar>/jmockit.jar only gave me a different type of error. I am also using the IBM JDK 6.0 that comes with Websphere. It's a shame but it looks like it is an actual impossibility to override final methods: I can't find any other Testing framework that can do it.

    0 讨论(0)
  • 2020-12-19 17:17

    The setup for javagent for surefire using maven looks like this:

     <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.18.1</version>
        <configuration>
            ....
            <argLine>-javaagent:"${settings.localRepository}"/org/jmockit/jmockit/1.11/jmockit-1.11.jar</argLine>
        </configuration>
      </plugin>
    

    The above assumes you are using the following dependency:

     <dependency>
        <groupId>org.jmockit</groupId>
        <artifactId>jmockit</artifactId>
        <version>1.11</version>
        <scope>test</scope>
      </dependency>
    

    If you are using a different version then modify the argLine value appropriately.

    Source: http://jmockit.googlecode.com/svn-history/r1166/trunk/www/installation.html

    0 讨论(0)
  • 2020-12-19 17:23

    You just need update the JDK to 1.8. I tested this version JDK, and this problem has been resolved.

    0 讨论(0)
提交回复
热议问题