したがって、私がやろうとしているのは、JMeter テスト プロセスを自動化することです。このために、Cargo を使用して Tomcat コンテナにデプロイし、そこで JMeter スクリプトを実行し、次の説明に基づいて pom を使用しています:- http:/ /www.alexecollins.com/content/jmeter-integration-test-template-pom/ その後、多くの努力の結果、動作するようになりました。
しかし、もちろん、テストのために実際のデータベースの代わりにtestdbを使用したいので、jndiを使用してjdbcパラメーターを定義しているカスタムcontext.xml(すべてが機能する本番context.xmlの代わりに)が必要です。
それで、貨物のコピーconfigfileオプションのようなものを使用してJMeterテストを実行しながら、コンテナに貨物をコピーしたtestcontext.xmlを持つことを計画していました - http://cargo.codehaus.org/Custom+File+Configurations。しかし、それは機能していないようです。そして、私は何時間もデバッグしてきましたが、それを理解できません。
ここにデプロイする他のすべてのモジュールの依存関係を持つ test-depolyer モジュールの pom ファイルを貼り付けています:-
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.parentname</groupId>
<artifactId>product-services</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>com.parentname.product-services</groupId>
<artifactId>test-deployer</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<dependencies>
<dependency>
<groupId>com.parentname.product-services</groupId>
<artifactId>product1-webapp</artifactId>
<version>0.0.1-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>default</id>
<phase>clean</phase>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<configuration>
<tasks>
<delete includeemptydirs="true">
<fileset dir="${project.basedir}">
<include name="**/jmeter.log" />
</fileset>
</delete>
</tasks>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.3.0</version>
<configuration>
<container>
<type>installed</type>
<containerId>tomcat7x</containerId>
<zipUrlInstaller>
<url>http://archive.apache.org/dist/tomcat/tomcat-7/v7.0.42/bin/apache-tomcat-7.0.42.zip</url>
</zipUrlInstaller>
</container>
<configuration>
<properties>
<cargo.servlet.port>4321</cargo.servlet.port>
<cargo.logging>medium</cargo.logging>
</properties>
</configuration>
<type>installed</type>
<deployables>
<deployable>
<groupId>com.parentname.product-services</groupId>
<artifactId>product1-webapp</artifactId>
<type>war</type>
<properties>
<context>product1-webapp</context>
</properties>
</deployable>
</deployables>
<configfiles>
<configfile>
<file>${project.basedir}/src/test/resources/context.xml</file>
<todir>conf/Catalina/localhost/</todir>
<tofile>context.xml</tofile>
</configfile>
</configfiles>
</configuration>
<executions>
<execution>
<id>start-container</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start</goal>
<goal>deploy</goal>
</goals>
</execution>
<execution>
<id>stop-container</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.lazerycode.jmeter</groupId>
<artifactId>jmeter-maven-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>jmeter-tests</id>
<phase>integration-test</phase>
<goals>
<goal>jmeter</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.1-901-1.jdbc4</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>