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

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

打开eclipse,新建maven工程,在pom中引入jmeter核心jar包:

org.apache.jmeter
ApacheJMeter_core
3.2
org.apache.jmeter
ApacheJMeter_functions
3.2

 

1. 新建一个包com.mytest.functions,包名要包含functions,因为jmeter.properties对这块有配置,可见该文件的classfinder.functions.contain=.functions.

2. 在该包下新建一个类并继承AbstractFunction,重写该类的所有方法,具体如下:

package com.mytest.functions;import java.io.FileInputStream;import java.io.InputStream;import java.util.Collection;import java.util.LinkedList;import java.util.List;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 sun.misc.BASE64Encoder;public class MyBase64 extends AbstractFunction{    //自定义function的描述    private static final List
desc = new LinkedList
(); static { desc.add("图片路径"); } static { desc.add("图片base64后存放变量"); } private static final String KEY = "__MyBase64"; //存放传入参数的值的变量 private Object[] values; //描述参数 public List
getArgumentDesc() { // TODO Auto-generated method stub return desc; } @Override //函数的执行 public synchronized String execute(SampleResult arg0, Sampler arg1) throws InvalidVariableException { // TODO Auto-generated method stub JMeterVariables localJMeterVariables = getVariables(); String str1 = ((CompoundVariable)this.values[0]).execute(); String str2 = getImgBase64(str1); if ((localJMeterVariables != null) && (this.values.length > 1)) { String str3 = ((CompoundVariable)this.values[1]).execute().trim(); localJMeterVariables.put(str3, str2); } return str2; } @Override public String getReferenceKey() { // TODO Auto-generated method stub //提供jmeter函数助手显示的名称 return KEY; } @Override public synchronized void setParameters(Collection
arg0) throws InvalidVariableException { // TODO Auto-generated method stub //检查参数的个数,支持的方法有2个,具体用法参加api: /** * protected void checkParameterCount(Collection
parameters, int count) throws InvalidVariableException Utility method to check parameter counts. Parameters: parameters - collection of parameters count - number of parameters expected * */ //----------------- /** * * protected void checkParameterCount(Collection
parameters, int min, int max) throws InvalidVariableException Utility method to check parameter counts. Parameters: parameters - collection of parameters min - minimum number of parameters allowed max - maximum number of parameters allowed * */ //checkParameterCount(arg0, 1); checkParameterCount(arg0, 1, 2); //将参数值存入变量中 this.values = arg0.toArray(); } public String getImgBase64(String filePath) { InputStream in = null; byte[] data = null; String result = null; try { in = new FileInputStream(filePath); data = new byte[in.available()]; in.read(data); in.close(); BASE64Encoder encoder = new BASE64Encoder(); result = encoder.encode(data); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } return result; }}

3. 由于我写的类没有依赖第三方jar包,引入的jmeter核心包都是jmeter自带的,所以直接导出上面的类为一个jar包,并把这个jar放在jmeter安装目录的apache-jmeter-3.2\lib\ext下面

4. 重启jmeter,打开函数助手,可看见如下图:

5. 下面我们测试一下这个函数是否能使用,新建一个http请求,在post请求里分别添加${__MyBase64(D:\\aa.jpg,imgresult)}和${imgresult}如下图,注意${__MyBase64(D:\\aa.jpg,imgresult)}一定要在上面

6. 运行后可以看到已经成功

转载地址:http://edbfo.baihongyu.com/

你可能感兴趣的文章
排除网络故障课后习题参考答案
查看>>
[LeetCode]Multiply Strings
查看>>
NPOI 2.0导出word(docx格式)
查看>>
有趣的玩意儿
查看>>
DataSet的DataTable高效插入到数据库表
查看>>
Ubuntu文件管理命令系统
查看>>
c#日期类型的使用 (转)
查看>>
引用还是指针?
查看>>
XML与DataSet的相互转换类
查看>>
Python脚本控制的WebDriver 常用操作 <二十八> 超时设置和cookie操作
查看>>
lrzsz linix 远程文件传输工具。
查看>>
[转]ZooKeeper 集群环境搭建 (本机3个节点)
查看>>
去除标题_怎样去除总磷
查看>>
进入工程制图闪退_CAD设计必备:机械制图基础知识
查看>>
和 xcode_在iOS上用Xcode和Create ML检测皮肤癌
查看>>
python二维数组输出下三角_python,将三角函数绘制成二维数组
查看>>
python数据分析与人工智能_Python数据分析:seaborn
查看>>
echarts折线图不显示y轴值_Echarts 折线图y轴标签值太长时显示不全的解决办法
查看>>
改变elementui卡片crad样式_修改ElementUI样式的几种方式
查看>>
齐博php百度编辑器上传图片_为百度UE编辑器上传图片添加水印功能
查看>>