Maven Invoker 插件与 Maven Failsafe 插件:哪个用于集成测试?

Maven Invoker Plugin vs Maven Failsafe Plugin: Which to use for integration-test?

两者的文档 (Failsafe, Invoker) 表明它们对 运行 集成测试很有用。我不知道要使用哪一个进行集成测试。

我能看到的唯一区别是 Failsafe 插件是专门为 运行 集成测试设计的,而 Invoker 插件恰好对 运行 集成测试有用,但它的主要目的是别的东西。但是,当我在 Eclipse 中创建一个 maven-plugin 时,Maven Invoker Plugin 已经包含在 POM 文件中,代码如下。

<plugins>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-invoker-plugin</artifactId>
        <version>1.7</version>
        <configuration>
            <debug>true</debug>
            <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
            <pomIncludes>
                <pomInclude>*/pom.xml</pomInclude>
            </pomIncludes>
            <postBuildHookScript>verify</postBuildHookScript>
            <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
            <settingsFile>src/it/settings.xml</settingsFile>
            <goals>
                <goal>clean</goal>
                <goal>test-compile</goal>
            </goals>
        </configuration>
        <executions>
            <execution>
                <id>integration-test</id>
                <goals>
                    <goal>install</goal>
                    <goal>integration-test</goal>
                    <goal>verify</goal>
                </goals>
            </execution>
        </executions>
    </plugin>
</plugins>                 

它们之间的主要区别是什么?是否有特定情况下应该优先进行集成测试?

用例确实不同。您可以将 maven-invoker-plugin 视为 Failsafe 插件的特定子集,旨在用于测试您的自定义 Maven 插件,尽管它的用途可能更广泛。

故障保护插件

maven-failsafe-plugin goes hand in hand with the maven-surefire-plugin (in fact they are all under the surefire project): 用于在Java代码中编写测试。 Surefire和Failsafe Plugin的区别在于第一个是用来写单元测试的,而另一个是用来写集成测试的。

与单元测试相反,集成测试是需要存在环境的测试。环境是一个很大的术语,但它涵盖了测试 运行 所需的所有其他工具。例如,如果您想 运行 测试依赖于 Web 服务器或数据库存在的应用程序,则通常是集成测试。

Maven 通过特定阶段将此定义集成到 default 生命周期中,以便设置测试所需的环境,运行 测试,并销毁环境:

The Maven lifecycle has four phases for running integration tests:

  • pre-integration-test for setting up the integration test environment.
  • integration-test for running the integration tests.
  • post-integration-test for tearing down the integration test environment.
  • verify for checking the results of the integration tests.

一个示例是在 pre-integration-test 中设置和启动 Web 服务器,在 integration-test 中测试 HTTP 调用,最后在 post-integration-test 中停止 Web 服务器。

请注意,本例中的集成测试是用 Java 编写的,位于 src/test/java 中。有 来区分它们和单元测试。因此,您正在编写测试代码。

调用者插件

你说得对,它的主要用例不是 运行ning 集成测试。它是为了在构建期间调用其他 Maven 项目而设计的。当您想 运行 针对其他 Maven 项目进行测试时,该特定用例非常有用。

This plugin is in particular handy to perform integration tests for other Maven plugins. The Invoker Plugin can be employed to run a set of test projects that have been designed to assert certain features of the plugin under test.

假设您正在开发一个 Maven 插件,并且您想要测试它的行为是否正确。您可以使用 Surefire 插件编写测试以执行其功能的基本测试,即不需要 运行 整个插件的功能。

您甚至可以使用 Failsafe 插件编写集成测试,这将是针对 Maven 测试项目执行插件的完整 运行 并检查其输出的测试。但这很快就会变得麻烦:使用自定义 Maven 插件在磁盘上创建 Maven 项目并让 Invoker 插件调用该项目会更容易。然后你可以测试 运行 是否正确运行。

总体而言,要测试您的 Maven 插件,您甚至不需要编写任何 Java 代码:您只需在目录中使用您的插件创建测试 Maven 项目,让 Invoker Plugin invoke it, and verify that things went right using a post build script 用 BeanShell 或 Groovy 编写。这些是集成测试,从某种意义上说,它们需要 运行 的环境(主要是 Maven 本身),但您并没有真正对它们进行编码。

这可能是 Eclipse 为您生成此文件的原因:您创建了一个打包的 Maven 项目 maven-plugin,因此它会引导您使用 Invoker Plugin 对其进行测试。