Как передать счетчик потоков Jmeter в jenkins с помощью Maven
Я хочу настроить Jmeter скрипт на jenkins для работы с определенным количеством потоков. скажем, 10 или 20 или 30. Я использую Maven с Дженкинсом, как я могу передать значение потока в качестве параметра, чтобы каждый раз запускать задание для diff thread. я использую команду mvn verify для запуска файлов jmeter.
<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>
<groupId>com.example</groupId>
<artifactId>jmeter-demo</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>jmeter-demo</name>
<url>http://maven.apache.org</url>
<build>
<plugins>
<plugin>
<groupId>com.lazerycode.jmeter</groupId>
<artifactId>jmeter-maven-plugin</artifactId>
<version>1.10.1</version>
<configuration>
<testResultsTimestamp>false</testResultsTimestamp>
</configuration>
<executions>
<execution>
<id>jmeter-tests</id>
<phase>verify</phase>
<goals>
<goal>jmeter</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
<configuration>
<argLine>-Xmx2048m</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>
2 ответа
Использование jmeter-maven-plugin для запуска ваших тестов JMeter через Maven - это хорошо, хотя pom.xml не подходит для определения таких свойств, как количество потоков и т. Д. Что вам нужно, так это __property или __P функция JMeter.
Взгляните на вики:
https://github.com/jmeter-maven-plugin/jmeter-maven-plugin/wiki/Modifying-Properties
В частности:
+---+
<project>
[...]
<build>
<plugins>
<plugin>
<groupId>com.lazerycode.jmeter</groupId>
<artifactId>jmeter-maven-plugin</artifactId>
<version>1.10.1</version>
<executions>
<execution>
<id>jmeter-tests</id>
<phase>verify</phase>
<goals>
<goal>jmeter</goal>
</goals>
<configuration>
<propertiesGlobal>
<threads>10</threads>
<testIterations>5</testIterations>
</propertiesGlobal>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
[...]
</project>
+---+
Если вы хотите изменить эти свойства в командной строке, вам нужно установить свойства Maven следующим образом:
+---+
<properties>
<threads>10</threads>
<testIterations>5</testIterations>
</properties>
<project>
[...]
<build>
<plugins>
<plugin>
<groupId>com.lazerycode.jmeter</groupId>
<artifactId>jmeter-maven-plugin</artifactId>
<version>1.10.1</version>
<executions>
<execution>
<id>jmeter-tests</id>
<phase>verify</phase>
<goals>
<goal>jmeter</goal>
</goals>
<configuration>
<propertiesGlobal>
<threads>${threads}</threads>
<testIterations>${testIterations}</testIterations>
</propertiesGlobal>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
[...]
</project>
+---+
Тогда вы сможете указать их так:
mvn clean install -Dthreads=5 -DtestIterations=15