如何构建运行测试套件的maven工件?怎么'测试'有效?

时间:2017-11-09 14:17:23

标签: java scala unit-testing testing integration-testing

我是scala开发人员,所以我会尝试用sbt示例解释我的想法,但我相信java开发人员可以理解我

传统的scala / java项目结构如下:

src ->
 - main
 - test
 - it

测试文件夹在概念上用于单元测试(用于测试app逻辑)。所以你可以运行'sbt test'并测试你的应用程序。此代码必须靠近您的应用程序。

可能是offtopic,这是我的问题:

是否可以构建运行我所有测试的jar工件?我不想为了运行我的测试而启动sbt。我想用集成测试套件构建许多jar工件

java my-super-service-it-case1.jar
如果测试已通过

,这将给我退出代码0
java my-super-service-it-case2.jar 

等......

我相信我需要在主要区块内进行测试..

1 个答案:

答案 0 :(得分:2)

我不建议在你的程序的主要功能中混合你的任何测试,有一个非常好的插件,你想要做什么,Maven Surefire Plugin它应该可以正常使用Scala,但是我没有和Scala一起搞乱。

在这里写下你需要的东西会很多,但是文档和很多例子都有很好的介绍。您可以指定包含和排除的不同目标,例如,您可以执行单元测试或验收测试,例如:

mvn verify -P acceptance-tests -Dbuild.env=sit

POM.XML文件中配置了以下配置文件

<profile>
  <id>acceptance-tests</id>
  <activation>
    <property>
      <name>env.BUILD_STAGE</name>
      <value>ACCEPTANCE</value>
    </property>
  </activation>
  <build>
    <plugins>
      <!-- skip unit tests -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <skipTests>true</skipTests>
        </configuration>
      </plugin>

      <!-- run acceptance tests (during integration-test phase) -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-failsafe-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>integration-test</goal>
              <goal>verify</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <includes>
            <include>**/*AT*.*</include>
          </includes>
          <excludes>
            <exclude>**/*Test.*</exclude>
            <exclude>**/*IT.*</exclude>
          </excludes>
        </configuration>
      </plugin>
    </plugins>
  </build>
</profile>

我的所有验收测试都以AT命名,如myTestAT.java