从Maven启动H2数据库服务器?

时间:2010-02-05 04:50:04

标签: maven testing h2

假设我想为我的集成测试创建和使用H2数据库。

Maven有一个运行测试的命令:mvn test

有没有办法告诉maven为测试启动H2数据库服务器并在完成后停止它?

我认为这与我如何通过Maven命令(mvn tomcat:run)运行tomcat类似。

很抱歉,如果这个问题没有意义,我仍然围绕着新的概念。

9 个答案:

答案 0 :(得分:18)

我只是通过Maven将依赖项添加到H2然后使用这个bean,就可以在不使用外部服务器的情况下使用它:

<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <property name="driverClassName" value="org.h2.Driver"/>
    <property name="url" value="jdbc:h2:file:h2\db"/>
    <property name="username" value="sa"/>
    <property name="password" value=""/>        
</bean>

然后,这要求我使用基于文件的DB而不是内存。但它确实可以解决问题。

答案 1 :(得分:12)

您可以使用启动和停止数据库的主要方法创建2个小类。我们的想法是在运行集成测试之前运行StartServer类,然后在运行测试之后运行StopServer类。

你应该像this document中描述的那样为你的数据库服务器做同样的事情(描述是在集成测试中启动和停止Jetty)

在你的pom.xml中你应该定义maven-exec-plugin以运行exec:java目标并创建2个执行(1个用于调用StartServer,1个用于StopServer):

<plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>exec-maven-plugin</artifactId>
  <version>1.1.1</version>
  <executions>
    <execution>
      <!-- start server before integration tests -->
      <id>start</id>
      <phase>pre-integration-test</phase>
      <goals>
        <goal>java</goal>
      </goals>
      <configuration>
        <mainClass>com.foo.StartServer</mainClass>
      </configuration>
     </execution>
     <execution>
      <!-- stop server after integration tests -->
      <id>stop</id>
      <phase>post-integration-test</phase>
      <goals>
        <goal>java</goal>
      </goals>
      <configuration>
        <mainClass>com.foo.StopServer</mainClass>
      </configuration>
     </execution>
   </executions>
 </plugin>

希望这就是你想要的

答案 2 :(得分:8)

此插件可以在集成测试(默认插件阶段)之前使用tcp模式生成新的H2数据库:h2-maven-plugin on github

没有详细记录,但您可以检查Mojo源以了解配置选项。它发表在maven central。


基本上,对于集成测试,您可能希望Maven:

  • 保留随机可用的网络端口,用于Tomcat服务器,以及H2(以避免端口冲突)
  • 启动H2服务器
  • 启动Tomcat服务器
  • 运行集成测试
  • 停止Tomcat服务器
  • 停止H2服务器

这可以通过看起来像这样的Maven配置来实现。 假设您的集成测试使用自定义接口JUnit类别:

进行了注释
@Category(IntegrationTest.class)

这个Maven配置对我来说很好:

<profile>
   <id>it</id>
   <build>
     <plugins>

       <!-- Reserve randomly available network ports -->
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>build-helper-maven-plugin</artifactId>
         <executions>
           <execution>
             <id>reserve-network-port</id>
             <goals>
               <goal>reserve-network-port</goal>
             </goals>
             <phase>process-resources</phase>
             <configuration>
               <portNames>
                 <portName>tomcat.test.http.port</portName>
                 <portName>h2.test.tcp.port</portName>
               </portNames>
             </configuration>
           </execution>
         </executions>
       </plugin>


       <!-- Start H2 before integration tests, accepting tcp connections on the randomly selected port -->
       <plugin>
         <groupId>com.edugility</groupId>
         <artifactId>h2-maven-plugin</artifactId>
         <version>1.0</version>
         <configuration>
           <port>${h2.test.tcp.port}</port>
         </configuration>
         <executions>
             <execution>
               <id>Spawn a new H2 TCP server</id>
               <goals>
                 <goal>spawn</goal>
               </goals>
             </execution>
             <execution>
               <id>Stop a spawned H2 TCP server</id>
               <goals>
                 <goal>stop</goal>
               </goals>
             </execution>
           </executions>
       </plugin>


       <!-- Start Tomcat before integration tests on the -->
       <plugin>
         <groupId>org.apache.tomcat.maven</groupId>
         <artifactId>tomcat7-maven-plugin</artifactId>
         <configuration>
           <systemProperties>
             <spring.profiles.active>integration_tests</spring.profiles.active>
             <httpPort>${http.test.http.port}</httpPort>
             <h2Port>${h2.test.tcp.port}</h2Port>
           </systemProperties>
           <port>${http.test.http.port}</port>
           <contextFile>src/main/java/META-INF/tomcat/webapp-test-context-using-h2.xml</contextFile>
           <fork>true</fork>
         </configuration>
         <executions>
           <execution>
             <id>run-tomcat</id>
             <phase>pre-integration-test</phase>
             <goals>
               <goal>run</goal>
             </goals>
           </execution>
           <execution>
             <id>stop-tomcat</id>
             <phase>post-integration-test</phase>
             <goals>
               <goal>shutdown</goal>
             </goals>
           </execution>
         </executions>
         <dependencies>
           <dependency>
             <groupId>mysql</groupId>
             <artifactId>mysql-connector-java</artifactId>
             <version>${mysql.version}</version>
           </dependency>
           <dependency>
             <groupId>com.h2database</groupId>
             <artifactId>h2</artifactId>
             <version>${h2.version}</version>
           </dependency>
         </dependencies>
       </plugin>


       <!-- Run the integration tests annotated with @Category(IntegrationTest.class) -->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-failsafe-plugin</artifactId>
         <!-- Bug in 2.12.x -->
         <version>2.11</version>
         <dependencies>
           <dependency>
             <groupId>org.apache.maven.surefire</groupId>
             <artifactId>surefire-junit47</artifactId>
             <version>2.12.4</version>
           </dependency>
         </dependencies>
         <configuration>
           <groups>com.mycompany.junit.IntegrationTest</groups>
           <failIfNoTests>false</failIfNoTests>
           <junitArtifactName>junit:junit-dep</junitArtifactName>
           <systemPropertyVariables>
             <httpPort>${tomcat.test.http.port}</httpPort>
             <h2Port>${h2.test.tcp.port}</h2Port>
           </systemPropertyVariables>
         </configuration>
         <executions>
           <execution>
             <goals>
               <goal>integration-test</goal>
             </goals>
           </execution>
         </executions>
       </plugin>

     </plugins>
   </build>
 </profile>

您可能希望在tomcat上下文文件中使用maven过滤器,以便替换端口:

   <contextFile>src/main/java/META-INF/tomcat/webapp-test-context-using-h2.xml</contextFile>

文件内容为:

  <Resource name="jdbc/dataSource"
            auth="Container"
            type="javax.sql.DataSource"
            maxActive="100"
            maxIdle="30"
            maxWait="10000"
            username=""
            password=""
            driverClassName="org.h2.Driver"
            url="jdbc:h2:tcp://localhost:${h2.test.tcp.port}/mem:db;DB_CLOSE_ON_EXIT=FALSE;MODE=MySQL"/>

或者如果您不想要JNDI数据源,可以使用Spring声明的dataSource,使用相同的属性...


如果您希望能够设置集成测试tomcat,并从IDE运行集成测试,那么还有一次额外的旅行:

您可以使用属性来分叉或不分割Tomcat服务器:

<fork>${integrationTestsForkTomcatJvm}</fork>

设置fork = false时,服务器将阻塞,maven将无法继续,因此不会运行集成测试,但您可以从ide运行它们。

答案 3 :(得分:5)

我刚刚为maven @ bitbucket启动了H2插件项目。我将不胜感激任何帮助。

https://bitbucket.org/dohque/maven-h2-plugin

希望它会有所帮助。

答案 4 :(得分:4)

在我的项目中,对于单元测试,我要求Spring处理这个数据库的创建和初始化。如H2 documentation中所述,您可以为此创建一个bean:

<bean id = "org.h2.tools.Server"
    class="org.h2.tools.Server"
    factory-method="createTcpServer"
    init-method="start"
    destroy-method="stop">
    <constructor-arg value="-tcp,-tcpAllowOthers,true,-tcpPort,8043" />
</bean>

在开始单元测试时,您只需要使用此配置启动Spring上下文。

答案 5 :(得分:4)

我在运行单元测试之前创建了一个基于文件的H2数据库。该文件位于target目录中,可以随时使用mvn clean删除。

我使用maven-sql-plugin如下:

<plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>sql-maven-plugin</artifactId>
  <version>1.5</version>
  <dependencies>
    <dependency>
      <groupId>com.h2database</groupId>
      <artifactId>h2</artifactId> 
      <version>1.3.166</version>
    </dependency>
  </dependencies>
  <configuration>
    <driver>org.h2.Driver</driver>
    <url>jdbc:h2:file:target/db/testdb</url>
    <username>sa</username>
    <password></password>
    <autocommit>true</autocommit>
    <skip>${maven.test.skip}</skip>
  </configuration>
  <executions>
    <execution>
      <id>create-db</id>
      <phase>process-test-resources</phase>
      <goals>
        <goal>execute</goal>
      </goals>
      <configuration>
        <srcFiles>
          <srcFile>${sql.dir}/drop_db.sql</srcFile>
          <srcFile>${sql.dir}/tables.sql</srcFile>
          <srcFile>${sql.dir}/constraints.sql</srcFile>
          ... etc ...
        </srcFiles>
      </configuration>
    </execution>
  </executions>
</plugin>

可以通过运行mvn process-test-resources来创建数据库。运行测试时,请确保通过hibernate属性连接到target/db/testdb中的数据库。

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" 
      destroy-method="close"
      p:driverClassName="org.h2.Driver"
      p:url="jdbc:h2:file:target/db/testdb"
      p:username="sa"
      p:password="" />

您还需要依赖maven依赖项中的com.h2database.h2。

答案 6 :(得分:3)

如果你想在内存中创建它,那么只需使用不同的URL:

<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <property name="driverClassName" value="org.h2.Driver"/>
    <property name="url" value="jdbc:h2:mem:db"/>
    <property name="username" value="sa"/>
    <property name="password" value=""/>        
</bean>

您可以提供其他选项,例如:; DB_CLOSE_DELAY = -1

请参阅:http://www.h2database.com/html/features.html#in_memory_databases

答案 7 :(得分:1)

由于H2不提供Maven插件,您应该使用maven-antrun-plugin启动它。在ant任务中编写启动和停止h2引擎的代码,并在集成测试开始和停止时调用它。

详见http://docs.codehaus.org/display/MAVENUSER/Maven+and+Integration+Testing

答案 8 :(得分:1)

以下为我完成的工作(仅使用h2依赖项和exec-maven-plugin):

    <build>
        <plugins>
            <!-- start/stop H2 DB as a server -->
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>1.2.1</version>
                <executions>
                    <execution>
                        <id>start-h2</id>
                        <phase>pre-integration-test</phase>
                        <goals>
                            <goal>java</goal>
                        </goals>
                        <configuration>
                            <mainClass>org.h2.tools.Server</mainClass>
                            <arguments>
                                <argument>-tcp</argument>
                                <argument>-tcpDaemon</argument>
                            </arguments>
                        </configuration>
                    </execution>
                    <execution>
                        <id>stop-h2</id>
                        <phase>post-integration-test</phase>
                        <goals>
                            <goal>java</goal>
                        </goals>
                        <configuration>
                            <mainClass>org.h2.tools.Server</mainClass>
                            <arguments>
                                <argument>-tcpShutdown</argument>
                                <argument>tcp://localhost:9092</argument>
                            </arguments>
                        </configuration>
                    </execution>
                </executions>
                <configuration>
                    <includeProjectDependencies>true</includeProjectDependencies>
                    <includePluginDependencies>true</includePluginDependencies>
                    <executableDependency>
                        <groupId>com.h2database</groupId>
                        <artifactId>h2</artifactId>
                    </executableDependency>
                </configuration>
                <dependencies>
                    <dependency>
                        <groupId>com.h2database</groupId>
                        <artifactId>h2</artifactId>
                        <version>1.3.173</version>
                    </dependency>
                </dependencies>
            </plugin>
        </plugins>
</build>

请注意,在我的pom.xml中,com.h2database:h2不是项目依赖项。 如果你有它,你可能不需要明确地将它命名为插件依赖。