博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jmeter添加自定义扩展函数之DoubleSum
阅读量:5316 次
发布时间:2019-06-14

本文共 2623 字,大约阅读时间需要 8 分钟。

1,打开eclipse,新建maven工程,在pom中引用jmeter核心jar包,具体请看------,这里就不再赘述

2,代码如下:

package com.mytest.functions;import org.apache.jmeter.engine.util.CompoundVariable;import org.apache.jmeter.functions.AbstractFunction;import org.apache.jmeter.functions.InvalidVariableException;import org.apache.jmeter.samplers.SampleResult;import org.apache.jmeter.samplers.Sampler;import org.apache.jmeter.threads.JMeterVariables;import java.util.Collection;import java.util.LinkedList;import java.util.List;/** * Provides a DoubleSum function that adds two or more Double values. * Mostly copied from LongSum */public class DoubleSum extends AbstractFunction {    private static final List
desc = new LinkedList
(); private static final String KEY = "__doubleSum"; static { desc.add("First double to add"); desc.add("Second long to add - further doubles can be summed by adding further arguments"); desc.add("Name of variable in which to store the result (optional),The author is guanyf"); } private Object[] values; /** * No-arg constructor. */ public DoubleSum() { } /** * {
@inheritDoc} */ @Override public synchronized String execute(SampleResult previousResult, Sampler currentSampler) throws InvalidVariableException { JMeterVariables vars = getVariables(); Double sum = 0D; String varName = ((CompoundVariable) values[values.length - 1]).execute().trim(); for (int i = 0; i < values.length - 1; i++) { sum += Double.parseDouble(((CompoundVariable) values[i]).execute()); } try { sum += Double.parseDouble(varName); varName = null; // there is no variable name } catch (NumberFormatException ignored) { } String totalString = Double.toString(sum); if (vars != null && varName != null && varName.length() > 0) {
// vars will be null on TestPlan vars.put(varName, totalString); } return totalString; } /** * {
@inheritDoc} */ @Override public synchronized void setParameters(Collection
parameters) throws InvalidVariableException { checkMinParameterCount(parameters, 2); values = parameters.toArray(); } /** * {
@inheritDoc} */ @Override public String getReferenceKey() { return KEY; } /** * {
@inheritDoc} */ @Override public List
getArgumentDesc() { return desc; }}
View Code

 

转载于:https://www.cnblogs.com/guanyf/p/10912419.html

你可能感兴趣的文章
WPF简单模拟QQ登录背景动画
查看>>
Bitmap和Drawable相互转换方法
查看>>
bzoj 2038 小Z的袜子
查看>>
egret3D与2D混合开发,画布尺寸不一致的问题
查看>>
自定义线程池
查看>>
freebsd 实现 tab 命令 补全 命令 提示
查看>>
numpy调试
查看>>
struts1和struts2的区别
查看>>
函数之匿名函数
查看>>
shell习题第16题:查用户
查看>>
梯度下降法与方向导数
查看>>
实验4 [bx]和loop的使用
查看>>
Redis常用命令
查看>>
2018.08.22 NOIP模拟 shop(lower_bound+前缀和预处理)
查看>>
2018.11.06 bzoj1040: [ZJOI2008]骑士(树形dp)
查看>>
2019.02.15 bzoj5210: 最大连通子块和(链分治+ddp)
查看>>
redis cluster 集群资料
查看>>
混合模式程序集是针对“v2.0.50727”版的运行时生成的,在没有配置其他信息的情况下,无法在 4.0 运行时中加载该程序集。...
查看>>
jQuery总结或者锋利的jQuery笔记二
查看>>
微软职位内部推荐-Sr. SE - Office incubation
查看>>