[搬運工系列]-JMeter(十六)Jmeter之Bean shell使用(一)
一、什麼是Bean Shell
- BeanShell是一種完全符合Java語法規範的指令碼語言,並且又擁有自己的一些語法和方法;
- BeanShell是一種鬆散型別的指令碼語言(這點和JS類似);
- BeanShell是用Java寫成的,一個小型的、免費的、可以下載的、嵌入式的Java原始碼直譯器,具有物件指令碼語言特性,非常精簡的直譯器jar檔案大小為175k。
- BeanShell執行標準Java語句和表示式,另外包括一些指令碼命令和語法。
二、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)
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變數中
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}進行使用了:
6、執行指令碼:
四、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
更多方法可參考:org.apache.jmeter.samplers.SampleResult
-
sampler - (Sampler):gives access to the current sampler
官網:
http://jmeter.apache.org/usermanual/component_reference.html#BeanShell_Sampler
http://jmeter.apache.org/usermanual/component_reference.html#BeanShell_PreProcessor