jenkins+jmeter+ant(一)ant配置

jenkins+jmeter+ant(一)ant配置

  • java
  • jmeter
  • jenkins
  • ant
  • java+jmeter+jenkins的配置,之前文章均已提到。

ant安装配置

  • 下载地址

  • win配置:

    #新建环境变量
    变量名:ANT_HOME
    变量值:D:\jiekou_tools\apache-ant-1.10.6
    
    # PATH
    %ANT_HOME%\bin
    %ANT_HOME%\lib
    
  • Linux配置:

    # 添加ANT变量
    export ANT_HOME=/usr/loca/apache-ant-1.10.6
    export PATH=${PATH}:${ANT_HOME}/bin:${ANT_HOME}/lib
    
    # 刷新权限
    source /etc/profile
    

ant本地调试

  • 1、将jmeter目录:extras\ant-jmeter-1.1.1.jar拷贝到apache-ant-1.10.6\lib

    cp ant-jmeter-1.1.1.jar /usr/local/apache-ant-1.10.6/lib
    
  • 2、创建文件夹loadTest,放入测试脚本

  • 3、将Jmeterextras文件中的jmeter-results-detail-report_21.xslbuild.xmlcollapse.pngexpand.png放到ant目录中的bin目录下面

    在Ant的bin目录中打开build.xml文件找到以下内容:

        <property name="testpath" value="${user.dir}"/>
        <property name="jmeter.home" value="${basedir}/.."/>
        <property name="report.title" value="Load Test Results"/>
        
        <!-- Name of test (without .jmx) -->
        <property name="test" value="Test"/>
    

    结合win安装包的位置修改成以下内容:

      <property name="testpath" value="C:\Users\LGY\Desktop\loadTest"/>
      <property name="jmeter.home" value="D:\jiekou_tools\apache-jmeter-5.1.1"/>
      <property name="report.title" value="Load Test Results"/>
      
      <!-- Name of test (without .jmx) -->
      <property name="test" value="123"/>
    

    build.xml的注释(注意:windows系统需要注释一下,Linux不需要注释)

    <jvmarg value="-Xincgc"/>
    <jvmarg value="-Xmx128m"/>
    <jvmarg value="-Dproperty=value"/>
    <jmeterarg value="-qextra.properties"/>
    
名称解析
testpath测试计划,这里用于存放测试脚本、测试生成的文件、测试报告。也就是刚刚创建的loadTest文件夹的路径。
jmeter.homejmeter目录路径
report.title测试报告标题(自定义)
testJmeter测试脚本名称(无需后缀.jmx)
  • 运行:ant -buildfile D:\jiekou_tools\apache-ant-1.10.6\bin\build.xml

    则在LoadTest文件夹就会有hmtl文件生成

  • 修改之后的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="C:\Users\LGY\Desktop\loadTest"/>
        <property name="jmeter.home" value="D:\jiekou_tools\apache-jmeter-5.1.1"/>
        <property name="report.title" value="Load Test Results"/>
        
        <!-- Name of test (without .jmx) -->
        <property name="test" value="123"/>
        
        <!-- Should report include response data for failures? -->
        <property name="show-data" value="n"/>
    
        <property name="format" value="2.1"/>
        
        <condition property="style_version" value="_30">
            <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"/>
    		<delete file="${testpath}/${test}.jtl"/>
            <jmeter
                jmeterhome="${jmeter.home}"
                testplan ="${testpath}/${test}.jmx"
                resultlog="${testpath}/${test}.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}.jtl"
                out="${testpath}/${test}.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>
    
    

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值