web-dev-qa-db-ja.com

MavenからH2データベースサーバーを起動しますか?

統合テスト用にH2データベースを作成して使用するとします。

Mavenには、テストを実行するコマンドがあります:mvn test

テストのためにH2データベースサーバーを起動し、完了したら停止するようにMavenに指示する方法はありますか?

これは、Mavenコマンド(mvn Tomcat:run)。

この質問が無意味な場合は申し訳ありませんが、私はまだ新しい概念に頭を抱えています

36
roufamatic

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を使用する必要がありました。しかし、それはトリックです。

18
roufamatic

データベースを開始および停止するメインメソッドを持つ2つの小さなクラスを作成できます。考えは、統合テストが実行される前にStartServerクラスを実行し、テストの実行後にStopServerクラスを実行することです。

このドキュメント (説明は統合テストでJettyを起動および停止するために記述されている)

pom.xmlで、maven-exec-pluginを定義して exec:Java ゴールを実行し、2つの実行(StartServerを呼び出すための1つとStopServerのための1つ)を作成する必要があります。

<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>

それがあなたが望むことを願っています

12
Stefan De Boey

このプラグインは、統合テストの前にtcpモードで新しいH2 DBを生成するために正常に機能します(デフォルトのプラグインフェーズ): 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から統合テストを実行できるようにしたい場合は、もう1つ追加します。

Tomcatサーバーではなく、フォークするプロパティを使用できます。

<fork>${integrationTestsForkTomcatJvm}</fork>

Fork = falseに設定すると、サーバーがブロックされ、Mavenが続行されないため、統合テストは実行されませんが、IDEから実行できます。

8

Maven @ bitbucketのH2プラグインのプロジェクトを開始しました。私はそれで助けを感謝します。

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

それが役に立てば幸いです。

5
Ruslan Pilin

私のプロジェクトでは、ユニットテストのために、このデータベースの作成と初期化を処理するようにSpringに依頼しました。 H2ドキュメント に記載されているように、そのための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コンテキストを開始するだけです。

4
Romain Linsolas

単体テストを実行する前に、ファイルベースの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を実行して作成できます。テストを実行するときは、target/db/testdbのデータベースにhibernateプロパティを介して接続してください。

<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に依存する必要があります。

4
John Q Citizen

メモリ内に作成する場合は、別の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

3
fuemf5

H2はMavenプラグインを提供しないため、maven-antrun-pluginを使用して起動する必要があります。 antタスクでh2エンジンを開始および停止するためのコードを記述し、統合テストの開始および停止時に呼び出します。

http://docs.codehaus.org/display/MAVENUSER/Maven+and+Integration+Testing の詳細を参照してください

1
uthark

以下は私のために仕事をします(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.xmlcom.h2database:h2はプロジェクトの依存関係ではありませんでした。持っている場合は、プラグインの依存関係として明示的に名前を付ける必要はありません。

1
Peter Butkovic