溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

jmeter怎么添加自定義擴(kuò)展函數(shù)實(shí)現(xiàn)圖片base64編碼

發(fā)布時間:2022-02-07 15:26:09 來源:億速云 閱讀:241 作者:iii 欄目:開發(fā)技術(shù)

這篇“jmeter怎么添加自定義擴(kuò)展函數(shù)實(shí)現(xiàn)圖片base64編碼”文章的知識點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“jmeter怎么添加自定義擴(kuò)展函數(shù)實(shí)現(xiàn)圖片base64編碼”文章吧。

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

<!-- https://mvnrepository.com/artifact/org.apache.jmeter/ApacheJMeter_core -->
<dependency>
    <groupId>org.apache.jmeter</groupId>
    <artifactId>ApacheJMeter_core</artifactId>
    <version>3.2</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.jmeter/ApacheJMeter_functions -->
<dependency>
    <groupId>org.apache.jmeter</groupId>
    <artifactId>ApacheJMeter_functions</artifactId>
    <version>3.2</version>
</dependency>

1. 新建一個包c(diǎn)om.mytest.functions,包名要包含functions,因?yàn)閖meter.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<String> desc = new LinkedList<String>();
    static {
        desc.add("圖片路徑");
    }
        desc.add("圖片base64后存放變量");
    private static final String KEY = "__MyBase64";
   
    //存放傳入?yún)?shù)的值的變量
    private Object[] values;
    
    //描述參數(shù)
    public List<String> getArgumentDesc() {
        // TODO Auto-generated method stub
        return desc;
    @Override
    //函數(shù)的執(zhí)行
    public synchronized String execute(SampleResult arg0, Sampler arg1) throws InvalidVariableException {
        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;
    public String getReferenceKey() {
        //提供jmeter函數(shù)助手顯示的名稱
        return KEY;
    public synchronized void setParameters(Collection<CompoundVariable> arg0) throws InvalidVariableException {
        //檢查參數(shù)的個數(shù),支持的方法有2個,具體用法參加api:
        /**
         * protected void checkParameterCount(Collection<CompoundVariable> parameters,
                                   int count)
                            throws InvalidVariableException
            Utility method to check parameter counts.
            Parameters:
            parameters - collection of parameters
            count - number of parameters expected
         * */
        //-----------------
         * 
                                   int min,
                                   int max)
            min - minimum number of parameters allowed
            max - maximum number of parameters allowed
        //checkParameterCount(arg0, 1);
        checkParameterCount(arg0, 1, 2);
        //將參數(shù)值存入變量中
        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. 由于我寫的類沒有依賴第三方j(luò)ar包,引入的jmeter核心包都是jmeter自帶的,所以直接導(dǎo)出上面的類為一個jar包,并把這個jar放在jmeter安裝目錄的apache-jmeter-3.2\lib\ext下面

jmeter怎么添加自定義擴(kuò)展函數(shù)實(shí)現(xiàn)圖片base64編碼

4. 重啟jmeter,打開函數(shù)助手,可看見如下圖:

jmeter怎么添加自定義擴(kuò)展函數(shù)實(shí)現(xiàn)圖片base64編碼

5. 下面我們測試一下這個函數(shù)是否能使用,新建一個http請求,在post請求里分別添加${__MyBase64(D:\\aa.jpg,imgresult)}和${imgresult}如下圖,注意${__MyBase64(D:\\aa.jpg,imgresult)}一定要在上面

jmeter怎么添加自定義擴(kuò)展函數(shù)實(shí)現(xiàn)圖片base64編碼

6. 運(yùn)行后可以看到已經(jīng)成功

jmeter怎么添加自定義擴(kuò)展函數(shù)實(shí)現(xiàn)圖片base64編碼

以上就是關(guān)于“jmeter怎么添加自定義擴(kuò)展函數(shù)實(shí)現(xiàn)圖片base64編碼”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI