如何使用jmeter maven插件运行特定的jmx文件

时间:2019-02-11 10:50:10

标签: maven jmeter jmeter-maven-plugin

我正在使用Jmeter Maven插件(http://jmeter.lazerycode.com)来触发我的maven项目中的jmx文件。 有没有一种方法可以指定在运行时运行哪个jmx文件,而不是pom.xml中的插件配置testFilesDirectory,testFilesExcluded,testFilesIncluded等。 在jmeter命令行模式下,我们可以使用-t指定。

jmeter -n -t mytest.jmx

jmeter maven插件中是否有类似的选项

1 个答案:

答案 0 :(得分:1)

<testFilesIncluded>标签有什么问题?

如果您定义像{p>这样的Maven Property

<properties>
    <jmeterScript>test1.jmx</jmeterScript>
</properties>

并在JMeter Maven插件中将其引用为:

<configuration>
    <testFilesIncluded>
        <jMeterTestFile>${jmeterScript}</jMeterTestFile>
    </testFilesIncluded>
</configuration>

您将可以使用-D这样的命令行参数来覆盖属性值:

mvn -DjmeterScript=someTest.jmx clean verify

mvn -DjmeterScript=someOtherTest clean verify 

完整的 pom.xml 文件,以防万一:

<?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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.example</groupId>
    <artifactId>jmeter</artifactId>
    <version>1.0-SNAPSHOT</version>

    <properties>
        <jmeterScript>test1.jmx</jmeterScript>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>com.lazerycode.jmeter</groupId>
                <artifactId>jmeter-maven-plugin</artifactId>
                <version>2.8.5</version>
                <executions>
                    <!-- Run JMeter tests -->
                    <execution>
                        <id>jmeter-tests</id>
                        <goals>
                            <goal>jmeter</goal>
                        </goals>
                    </execution>
                    <!-- Fail build on errors in test -->
                    <execution>
                        <id>jmeter-check-results</id>
                        <goals>
                            <goal>results</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <testFilesIncluded>
                        <jMeterTestFile>${jmeterScript}</jMeterTestFile>
                    </testFilesIncluded>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

更多信息: