1

Javaで書いたいくつかのテストを実行するJMeterテストファイルを作成しました

JMeter 自体でファイルを実行すると、正常に実行され、テストに合格します。これで、JMX ファイルを実行するように Maven を構成し、verify ゴールを実行すると、JMX ファイルが実行されます。ただし、次のエラー メッセージで失敗します。

JMeter.jmx.log: "jmeter.protocol.java.sampler.JUnitSampler: ClassNotFoundException:: com.mynamespace.tests.product.ProductTest"

Jmeter.jtl:「com.mynamespace.tests.product.ProductTest のインスタンスを作成できませんでした。理由は、空のコンストラクターと 1 つの String コンストラクターの両方が欠落しているか、コンストラクターのインスタンス化に失敗している可能性があります。jmeter ログ ファイルの警告メッセージを確認してください」

JMeter がクラスを認識できるようにするために、jar を作成し、それを Jmeter の lib ディレクトリにコピーしました。jmeter maven プラグインを実行するときに、同様のことを行う必要がありますか? - 確かに、verify ゴールを実行するときにプロジェクトがビルドされているので、クラスを確認できるはずです..

pom.xml に追加:

            <plugin>
          <groupId>com.lazerycode.jmeter</groupId>
          <artifactId>jmeter-maven-plugin</artifactId>
          <version>1.9.1</version>
          <executions>
              <execution>
                  <id>jmeter-tests</id>
                  <phase>verify</phase>
                  <goals>
                      <goal>jmeter</goal>
                  </goals>
             </execution>
          </executions>
      </plugin>

Jmeter.jmx:

<?xml version="1.0" encoding="UTF-8"?>
<jmeterTestPlan version="1.2" properties="2.6" jmeter="2.11 r1554548">
<hashTree>
<TestPlan guiclass="TestPlanGui" testclass="TestPlan" testname="Test Plan" enabled="true">
  <stringProp name="TestPlan.comments"></stringProp>
  <boolProp name="TestPlan.functional_mode">false</boolProp>
  <boolProp name="TestPlan.serialize_threadgroups">false</boolProp>
  <elementProp name="TestPlan.user_defined_variables" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true">
    <collectionProp name="Arguments.arguments"/>
  </elementProp>
  <stringProp name="TestPlan.user_define_classpath"></stringProp>
</TestPlan>
<hashTree>
  <ThreadGroup guiclass="ThreadGroupGui" testclass="ThreadGroup" testname="Thread Group" enabled="true">
    <stringProp name="ThreadGroup.on_sample_error">continue</stringProp>
    <elementProp name="ThreadGroup.main_controller" elementType="LoopController" guiclass="LoopControlPanel" testclass="LoopController" testname="Loop Controller" enabled="true">
      <boolProp name="LoopController.continue_forever">false</boolProp>
      <stringProp name="LoopController.loops">1</stringProp>
    </elementProp>
    <stringProp name="ThreadGroup.num_threads">1</stringProp>
    <stringProp name="ThreadGroup.ramp_time">1</stringProp>
    <longProp name="ThreadGroup.start_time">1408690229000</longProp>
    <longProp name="ThreadGroup.end_time">1408690229000</longProp>
    <boolProp name="ThreadGroup.scheduler">false</boolProp>
    <stringProp name="ThreadGroup.duration"></stringProp>
    <stringProp name="ThreadGroup.delay"></stringProp>
  </ThreadGroup>
  <hashTree>
    <JUnitSampler guiclass="JUnitTestSamplerGui" testclass="JUnitSampler" testname="JUnit Request" enabled="true">
      <stringProp name="junitSampler.classname">com.mynamespace.tests.product.ProductTest</stringProp>
      <stringProp name="junitsampler.constructorstring"></stringProp>
      <stringProp name="junitsampler.method">saveProduct</stringProp>
      <stringProp name="junitsampler.pkg.filter"></stringProp>
      <stringProp name="junitsampler.success">Test successful</stringProp>
      <stringProp name="junitsampler.success.code">1000</stringProp>
      <stringProp name="junitsampler.failure">Test failed</stringProp>
      <stringProp name="junitsampler.failure.code">0001</stringProp>
      <stringProp name="junitsampler.error">An unexpected error occured</stringProp>
      <stringProp name="junitsampler.error.code">9999</stringProp>
      <stringProp name="junitsampler.exec.setup">false</stringProp>
      <stringProp name="junitsampler.append.error">true</stringProp>
      <stringProp name="junitsampler.append.exception">true</stringProp>
      <boolProp name="junitsampler.junit4">true</boolProp>
    </JUnitSampler>
    <hashTree/>
    <JUnitSampler guiclass="JUnitTestSamplerGui" testclass="JUnitSampler" testname="JUnit Request" enabled="true">
      <stringProp name="junitSampler.classname">com.mynamespace.tests.product.ProductTest</stringProp>
      <stringProp name="junitsampler.constructorstring"></stringProp>
      <stringProp name="junitsampler.method">getProduct</stringProp>
      <stringProp name="junitsampler.pkg.filter"></stringProp>
      <stringProp name="junitsampler.success">Test successful</stringProp>
      <stringProp name="junitsampler.success.code">1000</stringProp>
      <stringProp name="junitsampler.failure">Test failed</stringProp>
      <stringProp name="junitsampler.failure.code">0001</stringProp>
      <stringProp name="junitsampler.error">An unexpected error occured</stringProp>
      <stringProp name="junitsampler.error.code">9999</stringProp>
      <stringProp name="junitsampler.exec.setup">false</stringProp>
      <stringProp name="junitsampler.append.error">true</stringProp>
      <stringProp name="junitsampler.append.exception">true</stringProp>
      <boolProp name="junitsampler.junit4">true</boolProp>
    </JUnitSampler>
    <hashTree/>
  </hashTree>
</hashTree>
</hashTree>
</jmeterTestPlan>
4

1 に答える 1

2

pom.xmlファイルを変更して、jar アーティファクトを依存関係として含める必要があります。何かのようなもの:

  <plugin>
      <groupId>com.lazerycode.jmeter</groupId>
      <artifactId>jmeter-maven-plugin</artifactId>
      <version>1.10.0</version>
      <executions>
          <execution>
              <phase>verify</phase>
              <id>jmeter-tests</id>

              <goals>
                  <goal>jmeter</goal>
              </goals>
          </execution>
      </executions>
      <dependencies>
          <dependency>
              <groupId>com.mynamespace.tests.product</groupId>
              <artifactId>com.mynamespace.tests.product.ProductTest</artifactId>
              <version>1.0-SNAPSHOT</version>
          </dependency>
      </dependencies>
  </plugin>

参考文献:

于 2014-08-27T10:17:04.377 に答える