Jmeter插件,不接受属性

时间:2015-04-28 06:47:29

标签: maven ssl jmeter keystore jmeter-maven-plugin

Jmeter插件似乎没有加载配置选项卡中提供的系统变量。

<plugin>
            <groupId>com.lazerycode.jmeter</groupId>
            <artifactId>jmeter-maven-plugin</artifactId>
            <version>1.4.1</version>
            <executions>
                <execution>
                    <id>jmeter-tests</id>
                    <phase>verify</phase>
                    <goals>
                        <goal>jmeter</goal>
                    </goals>
                    <configuration>
                        <propertiesSystem>
                            <javax.net.debug>all</javax.net.debug>
                            <javax.net.ssl.keyStore>${basedir}/src/test/resources/clientKeystoreFin.jks</javax.net.ssl.keyStore>
                            <javax.net.ssl.keyStorePassword>changeit</javax.net.ssl.keyStorePassword>
                            <https.socket.protocols>TLSv1</https.socket.protocols>
                            <sun.security.ssl.allowUnsafeRenegotiation>true</sun.security.ssl.allowUnsafeRenegotiation>
                        </propertiesSystem>
                        <ignoreResultFailures>true</ignoreResultFailures>
                    </configuration>
                </execution>
            </executions>
        </plugin>

提供这个并执行插件后似乎没有真正验证密钥库,我在jmeter日志中找不到任何实际日志,我甚至尝试在$ {basedir} / src /中提供system.properties文件测试/ jmeter,如此处所述 https://github.com/jmeter-maven-plugin/jmeter-maven-plugin/wiki/Modifying-Properties 即使这样也行不通。 使用相同的system.properties文件更改,我可以从jmeter GUI运行。

有人可以帮我指出这个问题。

1 个答案:

答案 0 :(得分:0)

原因只是我使用的插件的旧版本。已更新至最新的1.10.1,并启用了一些在配置中添加以下内容的日志 *

<overrideRootLogLevel>DEBUG</overrideRootLogLevel>
<suppressJMeterOutput>false</suppressJMeterOutput>
<jmeterLogLevel>DEBUG</jmeterLogLevel>
  • 现在我可以在命令提示符中清楚地看到ssl日志,我在其中运行maven验证并添加了密钥库文件。希望这可以帮助那些遇到同样问题的人。