天天看點

Jmeter之Bean shell使用(一) 轉

如有侵權請聯系,立即删除。

一、什麼是Bean Shell

  • BeanShell是一種完全符合Java文法規範的腳本語言,并且又擁有自己的一些文法和方法;
  • BeanShell是一種松散類型的腳本語言(這點和JS類似);
  • BeanShell是用Java寫成的,一個小型的、免費的、可以下載下傳的、嵌入式的Java源代碼解釋器,具有對象腳本語言特性,非常精簡的解釋器jar檔案大小為175k。
  • BeanShell執行标準Java語句和表達式,另外包括一些腳本指令和文法。

官網:​​http://www.BeanShell.org/​​

二、Jmeter有哪些Bean Shell

  • 定時器:  BeanShell Timer
  • 前置處理器:BeanShell PreProcessor
  • 采樣器:  BeanShell Sampler
  • 後置處理器:BeanShell PostProcessor
  • 斷言:   BeanShell斷言
  • 監聽器:  BeanShell Listener

三、BeanShell的用法

   在此介紹下BeanShell PreProcessor的用法,其它的beahshell可以類推。在此我們使用beahshell調用自己寫的工具類,工具類實作了密碼的加、解密功能:

1、在eclipse寫好代碼,然後把該類打成jar包(在類上點選右鍵->Export->jar file)

Jmeter之Bean shell使用(一) 轉

2、把jar包放到jmeter目錄\apache-jmeter-2.13\lib\ext下

3、打開jmeter,添加一個http sampler(調用登入接口),在sampler下添加一個BeanShell PreProcessor

4、在beanshell PreProcessor中導入我們的jar包,調用裡面的加、解密碼方法,把結果儲存在jmeter變量中,下面兩個方法是beanshell中我們最常用到的:

  • vars.get(String paramStr):獲得變量值
  • vars.put(String key,String value):,将資料存到jmeter變量中
Jmeter之Bean shell使用(一) 轉
import com.pingan.ff.account.user.utils.*;

//加密
System.out.println("*****加密*****");
String password = "123123";
String encode = SecurityUtils.getKey(password);//調用工具類中的方法進行加密
System.out.println("Set my encode");
vars.put("encode",encode);//把值儲存到jmeter變量encode中
String getEncode=vars.get("encode");
System.out.println("Get my encode: " + getEncode);      

5、把加密後的密碼存到jmeter變量中,然後在http sampler中就可以通過${encode}進行使用了:

Jmeter之Bean shell使用(一) 轉

6、執行腳本:

Jmeter之Bean shell使用(一) 轉

四、Bean Shell常用内置變量

    JMeter在它的BeanShell中内置了變量,使用者可以通過這些變量與JMeter進行互動,其中主要的變量及其使用方法如下:

  • log:寫入資訊到jmeber.log檔案,使用方法:log.info(“This is log info!”);
  • ctx:該變量引用了目前線程的上下文,使用方法可參考:org.apache.jmeter.threads.JMeterContext。
  • vars - (JMeterVariables):操作jmeter變量,這個變量實際引用了JMeter線程中的局部變量容器(本質上是Map),它是測試用例與BeanShell互動的橋梁,常用方法:

    a) vars.get(String key):從jmeter中獲得變量值

    b) vars.put(String key,String value):資料存到jmeter變量中

    更多方法可參考:org.apache.jmeter.threads.JMeterVariables

  • props - (JMeterProperties - class java.util.Properties):操作jmeter屬性,該變量引用了JMeter的配置資訊,可以擷取Jmeter的屬性,它的使用方法與vars類似,但是隻能put進去String類型的值,而不能是一個對象。對應于java.util.Properties。 

    a) props.get("START.HMS");  注:START.HMS為屬性名,在檔案jmeter.properties中定義 

    b) props.put("PROP1","1234"); 

  • prev - (SampleResult):擷取前面的sample傳回的資訊,常用方法:

    a) getResponseDataAsString():擷取響應資訊

    b) getResponseCode() :擷取響應code

  • sampler - (Sampler):gives access to the current sampler