目录
前提-环境依赖:
安装jdk: Linux 安装配置Java环境JDK
安装jmeter: Jmeter 安装配置
安装ant:我使用的是 yum install -y ant 安装目录在 usr/share/ant
安装jenkins:jenkins安装使用
配置Jmeter build.xml:
- 将 jmeter/extras 目录下的 ant-jmeter-1.1.1.jar 复制到 ant/lib 目录下
- 修改 jmeter/bin/jmeter.properties 文件内的配置 将jmeter.save.saveservice.output_format=csv 把 csv 修改成 xml
- 修改 jmeter/extras 目录下的 build.xml 文件内的配置 此文件是用来执行测试并生成报告的配置文件
1、修改测试脚本所在目录位置 将 <property name="testpath" value="${user.dir}"/> 内的value修改成自己测试脚本所在目录 <!-- 指定测试脚本目录 --> <property name="testpath" value="/home/jmeter-ant-jenkins-test/jmeter_script"/> 2、在run配置中 添加时间戳变量名,并将输出结果文件名改成时间戳变量名 <target name="run"> <echo>funcMode = ${funcMode}</echo> <delete file="${testpath}/${test}.html"/> <!-- 添加时间戳变量 --> <tstamp> <format property="time" pattern="yyyy-MM-dd-HH-mm-ss"/> </tstamp> <jmeter jmeterhome="${jmeter.home}" testplan ="${testpath}/${test}.jmx" <!-- 修改测试结果文件名加上时间戳 --> resultlog="${testpath}/${test}/${time}.jtl"> 3、在测试报告配置中 修改测试结果文件名和测试报告文件名为上一步添加的时间戳变量名 <xslt classpathref="xslt.classpath" force="true" <!-- 测试结果文件转报告的时候,将上面添加的时间戳也加上 --> in="${testpath}/${test}/${time}.jtl" out="${testpath}/${test}/${time}.html"
完整的 build.xml 文件如下
<?xml version="1.0"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project name="ant-jmeter" default="all"> <description> Sample build file for use with ant-jmeter.jar See http://www.programmerplanet.org/pages/projects/jmeter-ant-task.php To run a test and create the output report: ant -Dtest=script To run a test only: ant -Dtest=script run To run report on existing test output ant -Dtest=script report The "script" parameter is the name of the script without the .jmx suffix. Additional options: -Dshow-data=y - include response data in Failure Details -Dtestpath=xyz - path to test file(s) (default user.dir). N.B. Ant interprets relative paths against the build file -Djmeter.home=.. - path to JMeter home directory (defaults to parent of this build file) -Dreport.title="My Report" - title for html report (default is 'Load Test Results') </description> <!--<property name="testpath" value="${user.dir}"/>--> <property name="testpath" value="/home/jmeter-ant-jenkins-test/jmeter_script"/> <property name="jmeter.home" value="${basedir}/.."/> <property name="report.title" value="Load Test Results"/> <!-- Name of test (without .jmx) --> <property name="test" value="aone"/> <!-- Should report include response data for failures? --> <property name="show-data" value="n"/> <property name="format" value="2.1"/> <condition property="style_version" value="_21"> <equals arg1="${format}" arg2="2.1"/> </condition> <condition property="funcMode"> <equals arg1="${show-data}" arg2="y"/> </condition> <condition property="funcMode" value="false"> <not> <equals arg1="${show-data}" arg2="y"/> </not> </condition> <!-- Allow jar to be picked up locally --> <path id="jmeter.classpath"> <fileset dir="${basedir}"> <include name="ant-jmeter*.jar"/> </fileset> </path> <taskdef name="jmeter" classpathref="jmeter.classpath" classname="org.programmerplanet.ant.taskdefs.jmeter.JMeterTask"/> <target name="all" depends="run,report"/> <target name="run"> <echo>funcMode = ${funcMode}</echo> <delete file="${testpath}/${test}.html"/> <tstamp> <format property="time" pattern="yyyy-MM-dd-HH-mm-ss"/> </tstamp> <jmeter jmeterhome="${jmeter.home}" testplan ="${testpath}/${test}.jmx" resultlog="${testpath}/${test}/${time}.jtl"> <!-- <jvmarg value="-Xincgc"/> <jvmarg value="-Xmx128m"/> <jvmarg value="-Dproperty=value"/> <jmeterarg value="-qextra.properties"/> --> <!-- Force suitable defaults --> <property name="jmeter.save.saveservice.output_format" value="xml"/> <property name="jmeter.save.saveservice.assertion_results" value="all"/> <property name="jmeter.save.saveservice.bytes" value="true"/> <property name="file_format.testlog" value="${format}"/> <property name="jmeter.save.saveservice.response_data.on_error" value="${funcMode}"/> </jmeter> </target> <property name="lib.dir" value="${jmeter.home}/lib"/> <!-- Use xalan copy from JMeter lib directory to ensure consistent processing with Java 1.4+ --> <path id="xslt.classpath"> <fileset dir="${lib.dir}" includes="xalan*.jar"/> <fileset dir="${lib.dir}" includes="serializer*.jar"/> </path> <target name="report" depends="xslt-report,copy-images"> <echo>Report generated at ${report.datestamp}</echo> </target> <target name="xslt-report" depends="_message_xalan"> <tstamp><format property="report.datestamp" pattern="yyyy/MM/dd HH:mm"/></tstamp> <xslt classpathref="xslt.classpath" force="true" in="${testpath}/${test}/${time}.jtl" out="${testpath}/${test}/${time}.html" style="${basedir}/jmeter-results-detail-report${style_version}.xsl"> <param name="showData" expression="${show-data}"/> <param name="titleReport" expression="${report.title}"/> <param name="dateReport" expression="${report.datestamp}"/> </xslt> </target> <!-- Copy report images if needed --> <target name="copy-images" depends="verify-images" unless="samepath"> <copy file="${basedir}/expand.png" tofile="${testpath}/expand.png"/> <copy file="${basedir}/collapse.png" tofile="${testpath}/collapse.png"/> </target> <target name="verify-images"> <condition property="samepath"> <equals arg1="${testpath}" arg2="${basedir}" /> </condition> </target> <!-- Check that the xalan libraries are present --> <condition property="xalan.present"> <and> <!-- No need to check all jars; just check a few --> <available classpathref="xslt.classpath" classname="org.apache.xalan.processor.TransformerFactoryImpl"/> <available classpathref="xslt.classpath" classname="org.apache.xml.serializer.ExtendedContentHandler"/> </and> </condition> <target name="_message_xalan" unless="xalan.present"> <echo>Cannot find all xalan and/or serialiser jars</echo> <echo>The XSLT formatting may not work correctly.</echo> <echo>Check you have xalan and serializer jars in ${lib.dir}</echo> </target> </project>
-
测试ant是否可用。在 jmeter/extras 目录下执行 ant (也不知道为啥,在其他目录执行ant就报错:taskdef class org.programmerplanet.ant.taskdefs.jmeter.JMeterTask cannot be found ) 输出以下结果即为正常
Jnekins 持续构建
-
jenkins 安装插件 HTML Publisher 安装后重启jenkins
-
jenkins 全局工具配置里 配置ant的安装目录 和jdk的安装目录
-
新建自由风格项目,配置ant,配置java,选择构建ant invork 填写build文件地址
-
开始构建,查看报告