testable-mock/docs/zh-cn/doc/use-maven-plugin.md
2020-12-17 13:17:56 +08:00

1.8 KiB
Raw Blame History

使用Testable Maven插件

在使用Maven构建的项目里除了直接修改maven-surefire-plugin插件的运行参数,也可通过testable-maven-plugin插件获得相同效果:

<plugin>
    <groupId>com.alibaba.testable</groupId>
    <artifactId>testable-maven-plugin</artifactId>
    <version>${testable.version}</version>
    <executions>
        <execution>
            <id>prepare</id>
            <goals>
                <goal>prepare</goal>
            </goals>
        </execution>
    </executions>
</plugin>

当使用testable-maven-plugin插件时,应该移除maven-surefire-plugin插件上的TestableMock相关配置

testable-maven-plugin插件能够与Jacoco插件直接同时使用无需额外适配因此能使pom.xml文件编写起来更简单且美观。

但需要注意的是当通过IDE运行单个测试用例时Mock功能会失效。

这是由于IDE运行单个测试用例时通常都只会运行maven-surefire-plugin插件,跳过了testable-maven-plugin插件执行导致Mock功能所需的JavaAgent没有随测试注入。

该问题可以通过额外配置IDE的测试参数绕过。以IntelliJ为例在单元测试配置的"虚拟机参数VM Option"属性值末尾添加JavaAgent启动参数-javaagent:${HOME}/.m2/repository/com/alibaba/testable/testable-agent/x.y.z/testable-agent-x.y.z.jar

PS请将路径中的x.y.z替换成实际使用的版本号

idea-vm-option

此插件的原理实际上是间接修改maven-surefire-plugin的配置,因此除了相对美观以外,并无特别之处。目前而言,直接在pom.xml文件中修改maven-surefire-plugin插件配置依然是更实用的方案。