我有一堆绑定到pre-integration-test
阶段的SQL命令,其作用是创建一个“测试”数据库并将应用程序指向它。
有时,我想在没有生命周期中的所有其他内容的情况下“重建”我的测试数据库。例如,如果我的测试是灾难性的失败并且搞砸了测试数据库,我可能需要多次重建它,直到找出问题所在。
这是我的POM的样子:
<profile>
<id>test-setup-teardown</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sql-maven-plugin</artifactId>
<version>1.3</version>
<dependencies>
<dependency>
<groupId>${database-dependency-groupId}</groupId>
<artifactId>${database-dependency-artifactId}</artifactId>
<version>${database-dependency-version}</version>
</dependency>
</dependencies>
<configuration>
<url>${test-database-admin-url}</url>
<username>${test-database-admin-username}</username>
<password>${test-database-admin-password}</password>
<driver>${database-driver}</driver>
<autocommit>true</autocommit>
</configuration>
<executions>
<execution>
<id>test-database-pre-setup</id>
<phase>pre-integration-test</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<sqlCommand>${test-database-teardown}</sqlCommand>
<onError>continue</onError>
</configuration>
</execution>
<execution>
<id>test-database-setup</id>
<phase>pre-integration-test</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<sqlCommand>${test-database-setup}</sqlCommand>
</configuration>
</execution>
<execution>
<id>test-database-schema</id>
<phase>pre-integration-test</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<url>${test-database-url}</url>
<username>${database-user}</username>
<password>${database-password}</password>
<srcFiles>
<srcFile>${basedir}/metadata/build/database/${database-engine}/appx.sql</srcFile>
</srcFiles>
</configuration>
</execution>
<execution>
<id>test-database-teardown</id>
<phase>post-integration-test</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<sqlCommand>${test-database-teardown}</sqlCommand>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
如何运行此个人资料的所有执行?像mvn sql:execute
这样的东西只运行其中一个执行(我认为最后一个)。
我已尝试将绑定阶段设为属性,然后允许用户指定另一个配置文件,将默认设置从pre-integration-test
更改为validate
,但会向某人解释为什么会执行重建:
mvn validate -Pforce-rebuild,test-setup-teardown
简单地强调非玩具项目在POM中有很多魔力的事实。请给我指路!
&lt; ed&gt;也许一个好的解决方案是从命令行通过id运行执行的方法?&lt; / ed&gt;
答案 0 :(得分:1)
也许一个好的解决方案是从命令行运行id执行的方法吗?
这是不可能的。执行是为了绑定生命周期。
调用sql:execute
并在命令行上传递所有参数似乎不是一个可行的选项(这可能是在批处理脚本中完成的,但{{1}会出现问题无论如何都是可选参数。)
所以,在我看来,“更糟糕”的选项是复制(叹息)另一个配置文件中的srcFiles
设置,例如 sql-maven-plugin
,以绑定rebuild
阶段的所需执行,并将validate
目标声明为此个人资料中的默认目标。这样就可以输入这样的内容:
validate
也许可以进行一些优化以避免重复(通过像你那样对执行阶段进行变量处理)但这对我来说意味着更多的黑魔法(这可能是不可取的)。
答案 1 :(得分:0)
“预集成测试”是您可以直接调用的阶段。
mvn -Ptest-setup-teardown pre-integration-test
这仍然会经历编译,复制资源,单元测试等的生命周期。您可以尝试将-DskipTests=true
添加到命令中(不确定这是否也会跳过集成测试阶段):< / p>
mvn -Ptest-setup-teardown pre-integration-test -DskipTests=true