设为首页 收藏本站
查看: 532|回复: 0

[经验分享] Jenkins+Ant可持续集成Jmeter脚本

[复制链接]

尚未签到

发表于 2018-1-9 06:04:13 | 显示全部楼层 |阅读模式
<?xml version="1.0"?>  
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 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.
  
-->
  

  
<!--
  Stylesheet for processing 2.1 output format test result files
  To uses this directly in a browser, add the following to the JTL file as line 2:
  <?xml-stylesheet type="text/xsl" href="../extras/jmeter-results-detail-report_21.xsl"?>
  and you can then view the JTL in a browser
  
-->
  

  
<xsl:output method="html" indent="yes" encoding="UTF-8" doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN" />
  

  
<!-- Defined parameters (overrideable) -->
  
<xsl:param    name="showData" select="'n'"/>
  
<xsl:param    name="titleReport" select="'Load Test Results'"/>
  
<xsl:param    name="dateReport" select="'date not defined'"/>
  

  
<xsl:template match="testResults">
  <html>
  <head>
  <title><xsl:value-of select="$titleReport" /></title>
  <style type="text/css">
  body {
  font:normal 68% verdana,arial,helvetica;
  color:#000000;
  }
  table tr td, table tr th {
  font-size: 68%;
  }
  table.details tr th{
  color: #ffffff;
  font-weight: bold;
  text-align:center;
  background:#2674a6;
  white-space: nowrap;
  }
  table.details tr td{
  background:#eeeee0;
  white-space: nowrap;
  }
  h1 {
  margin: 0px 0px 5px; font: 165% verdana,arial,helvetica
  }
  h2 {
  margin-top: 1em; margin-bottom: 0.5em; font: bold 125% verdana,arial,helvetica
  }
  h3 {
  margin-bottom: 0.5em; font: bold 115% verdana,arial,helvetica
  }
  .Failure {
  font-weight:bold; color:red;
  }
  img
  {
  border-width: 0px;
  }
  .expand_link
  {
  position=absolute;
  right: 0px;
  width: 27px;
  top: 1px;
  height: 27px;
  }
  .page_details
  {
  display: none;
  }
  .page_details_expanded
  {
  display: block;
  display/* hide this definition from  IE5/6 */: table-row;
  }
  

  

  </style>
  <script language="JavaScript"><![CDATA[
  function expand(details_id)
  {
  document.getElementById(details_id).className = "page_details_expanded";
  }
  function collapse(details_id)
  {
  document.getElementById(details_id).className = "page_details";
  }
  function change(details_id)
  {
  if(document.getElementById(details_id+"_image").src.match("expand"))
  {
  document.getElementById(details_id+"_image").src = "collapse.png";
  expand(details_id);
  }
  else
  {
  document.getElementById(details_id+"_image").src = "expand.png";
  collapse(details_id);
  }
  }
  ]]></script>
  </head>
  <body>
  <xsl:call-template name="pageHeader" />
  <xsl:call-template name="summary" />

  <hr>  <xsl:call-template name="pagelist" />

  <hr>  <xsl:call-template name="detail" />
  

  </body>
  </html>
  
</xsl:template>
  

  
<xsl:template name="pageHeader">
  <h1><xsl:value-of select="$titleReport" /></h1>

  <table>  <tr>
  <td align="left">Date report: <xsl:value-of select="$dateReport" /></td>
  <td align="right">Designed for use with <a href="http://jmeter.apache.org/">JMeter</a> and <a href="http://ant.apache.org">Ant</a>.</td>
  </tr>
  </table>

  <hr>  
</xsl:template>
  

  
<xsl:template name="summary">
  <h2>Summary</h2>

  <table align="center" border="0" cellpadding="5" cellspacing="2">  <tr valign="top">
  <th># Samples</th>
  <th>Failures</th>
  <th>Success Rate</th>
  <th>Average Time</th>
  <th>Min Time</th>
  <th>Max Time</th>
  </tr>
  <tr valign="top">
  <xsl:variable name="allCount" select="count(/testResults/*)" />
  <xsl:variable name="allFailureCount" select="count(/testResults/*[attribute::s='false'])" />
  <xsl:variable name="allSuccessCount" select="count(/testResults/*[attribute::s='true'])" />
  <xsl:variable name="allSuccessPercent" select="$allSuccessCount div $allCount" />
  <xsl:variable name="allTotalTime" select="sum(/testResults/*/@t)" />
  <xsl:variable name="allAverageTime" select="$allTotalTime div $allCount" />
  <xsl:variable name="allMinTime">
  <xsl:call-template name="min">
  <xsl:with-param name="nodes" select="/testResults/*/@t" />
  </xsl:call-template>
  </xsl:variable>
  <xsl:variable name="allMaxTime">
  <xsl:call-template name="max">
  <xsl:with-param name="nodes" select="/testResults/*/@t" />
  </xsl:call-template>
  </xsl:variable>
  <xsl:attribute name="class">
  <xsl:choose>
  <xsl:when test="$allFailureCount &gt; 0">Failure</xsl:when>
  </xsl:choose>
  </xsl:attribute>
  <td align="center">
  <xsl:value-of select="$allCount" />
  </td>
  <td align="center">
  <xsl:value-of select="$allFailureCount" />
  </td>
  <td align="center">
  <xsl:call-template name="display-percent">
  <xsl:with-param name="value" select="$allSuccessPercent" />
  </xsl:call-template>
  </td>
  <td align="center">
  <xsl:call-template name="display-time">
  <xsl:with-param name="value" select="$allAverageTime" />
  </xsl:call-template>
  </td>
  <td align="center">
  <xsl:call-template name="display-time">
  <xsl:with-param name="value" select="$allMinTime" />
  </xsl:call-template>
  </td>
  <td align="center">
  <xsl:call-template name="display-time">
  <xsl:with-param name="value" select="$allMaxTime" />
  </xsl:call-template>
  </td>
  </tr>
  </table>
  
</xsl:template>
  

  
<xsl:template name="pagelist">
  <h2>Pages</h2>

  <table align="center" border="0" cellpadding="5" cellspacing="2">  <tr valign="top">
  <th>URL</th>
  <th># Samples</th>
  <th>Failures</th>
  <th>Success Rate</th>
  <th>Average Time</th>
  <th>Min Time</th>
  <th>Max Time</th>
  <th></th>
  </tr>
  <xsl:for-each select="/testResults/*[not(@lb = preceding::*/@lb)]">
  <xsl:variable name="label" select="@lb" />
  <xsl:variable name="count" select="count(../*[@lb = current()/@lb])" />
  <xsl:variable name="failureCount" select="count(../*[@lb = current()/@lb][attribute::s='false'])" />
  <xsl:variable name="successCount" select="count(../*[@lb = current()/@lb][attribute::s='true'])" />
  <xsl:variable name="successPercent" select="$successCount div $count" />
  <xsl:variable name="totalTime" select="sum(../*[@lb = current()/@lb]/@t)" />
  <xsl:variable name="averageTime" select="$totalTime div $count" />
  <xsl:variable name="minTime">
  <xsl:call-template name="min">
  <xsl:with-param name="nodes" select="../*[@lb = current()/@lb]/@t" />
  </xsl:call-template>
  </xsl:variable>
  <xsl:variable name="maxTime">
  <xsl:call-template name="max">
  <xsl:with-param name="nodes" select="../*[@lb = current()/@lb]/@t" />
  </xsl:call-template>
  </xsl:variable>
  <tr valign="top">
  <xsl:attribute name="class">
  <xsl:choose>
  <xsl:when test="$failureCount &gt; 0">Failure</xsl:when>
  </xsl:choose>
  </xsl:attribute>
  <td>
  <xsl:if test="$failureCount > 0">
  <a><xsl:attribute name="href">#<xsl:value-of select="$label" /></xsl:attribute>
  <xsl:value-of select="$label" />
  </a>
  </xsl:if>
  <xsl:if test="0 >= $failureCount">
  <xsl:value-of select="$label" />
  </xsl:if>
  </td>
  <td align="center">
  <xsl:value-of select="$count" />
  </td>
  <td align="center">
  <xsl:value-of select="$failureCount" />
  </td>
  <td align="right">
  <xsl:call-template name="display-percent">
  <xsl:with-param name="value" select="$successPercent" />
  </xsl:call-template>
  </td>
  <td align="right">
  <xsl:call-template name="display-time">
  <xsl:with-param name="value" select="$averageTime" />
  </xsl:call-template>
  </td>
  <td align="right">
  <xsl:call-template name="display-time">
  <xsl:with-param name="value" select="$minTime" />
  </xsl:call-template>
  </td>
  <td align="right">
  <xsl:call-template name="display-time">
  <xsl:with-param name="value" select="$maxTime" />
  </xsl:call-template>
  </td>
  <td align="center">
  <a href="">
  <xsl:attribute name="href"><xsl:text/>javascript:change('page_details_<xsl:value-of select="position()" />')</xsl:attribute>

  <img src="expand.png">  </a>
  </td>
  </tr>
  <tr>
  <xsl:attribute name="id"><xsl:text/>page_details_<xsl:value-of select="position()" /></xsl:attribute>
  <td colspan="8" bgcolor="#FF0000">
  <div align="center">
  <b>Details for Page "<xsl:value-of select="$label" />"</b>

  <table bordercolor="#000000" bgcolor="#2674A6" border="0"  cellpadding="1" cellspacing="1">  <tr>
  <th>Thread</th>
  <th>Iteration</th>
  <th>Time (milliseconds)</th>
  <th>Bytes</th>
  <th>Success</th>
  </tr>
  <xsl:for-each select="../*[@lb = $label and @tn != $label]">
  <tr>
  <td><xsl:value-of select="@tn" /></td>
  <td align="center"><xsl:value-of select="position()" /></td>
  <td align="right"><xsl:value-of select="@t" /></td>
  <!--  TODO allow for missing bytes field -->
  <td align="right"><xsl:value-of select="@by" /></td>
  <td align="center"><xsl:value-of select="@s" /></td>
  </tr>
  </xsl:for-each>
  </table>
  </div>
  </td>
  </tr>
  </xsl:for-each>
  </table>
  
</xsl:template>
  

  
<xsl:template name="detail">
  <xsl:variable name="allFailureCount" select="count(/testResults/*[attribute::s='false'])" />
  

  <xsl:if test="$allFailureCount > 0">
  <h2>Failure Detail</h2>
  

  <xsl:for-each select="/testResults/*[not(@lb = preceding::*/@lb)]">
  

  <xsl:variable name="failureCount" select="count(../*[@lb = current()/@lb][attribute::s='false'])" />
  

  <xsl:if test="$failureCount > 0">
  <h3><xsl:value-of select="@lb" /><a><xsl:attribute name="name"><xsl:value-of select="@lb" /></xsl:attribute></a></h3>
  


  <table align="center" border="0" cellpadding="5" cellspacing="2">  <tr valign="top">
  <th>Response</th>
  <th>Failure Message</th>
  <xsl:if test="$showData = 'y'">
  <th>Response Data</th>
  </xsl:if>
  </tr>
  <xsl:for-each select="/testResults/*[@lb = current()/@lb][attribute::s='false']">
  <tr>
  <td><xsl:value-of select="@rc | @rs" /> - <xsl:value-of select="@rm" /></td>
  <td><xsl:value-of select="assertionResult/failureMessage" /></td>
  <xsl:if test="$showData = 'y'">
  <td><xsl:value-of select="./binary" /></td>
  </xsl:if>
  </tr>
  </xsl:for-each>
  </table>
  </xsl:if>
  

  </xsl:for-each>
  </xsl:if>
  
</xsl:template>
  

  
<xsl:template name="min">
  <xsl:param name="nodes" select="/.." />
  <xsl:choose>
  <xsl:when test="not($nodes)">NaN</xsl:when>
  <xsl:otherwise>
  <xsl:for-each select="$nodes">
  <xsl:sort data-type="number" />
  <xsl:if test="position() = 1">
  <xsl:value-of select="number(.)" />
  </xsl:if>
  </xsl:for-each>
  </xsl:otherwise>
  </xsl:choose>
  
</xsl:template>
  

  
<xsl:template name="max">
  <xsl:param name="nodes" select="/.." />
  <xsl:choose>
  <xsl:when test="not($nodes)">NaN</xsl:when>
  <xsl:otherwise>
  <xsl:for-each select="$nodes">
  <xsl:sort data-type="number" order="descending" />
  <xsl:if test="position() = 1">
  <xsl:value-of select="number(.)" />
  </xsl:if>
  </xsl:for-each>
  </xsl:otherwise>
  </xsl:choose>
  
</xsl:template>
  

  
<xsl:template name="display-percent">
  <xsl:param name="value" />
  <xsl:value-of select="format-number($value,'0.00%')" />
  
</xsl:template>
  

  
<xsl:template name="display-time">
  <xsl:param name="value" />
  <xsl:value-of select="format-number($value,'0 ms')" />
  
</xsl:template>
  
</xsl:stylesheet>

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-433116-1-1.html 上篇帖子: Installing Jenkins as a Windows service 下篇帖子: [Jenkins][centos]1 持续集成 之 配置VNC,部署Jenkins
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表