一、什麼是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)
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 本節內容如下:
一、操作變數
二、操作屬性
三、自訂函數
四、引用外部java檔案
五、引用外部class檔案
六、引用外部Jar包
七、其它用法(接受參數, log等)
一、操作變數:通過使用Bean shell內建對象vars可以對變數進行存取操作
a) vars.get("name"):從jmeter中獲得變數值
b) vars.put("key","value"):資料存到jmeter變數中
二、操作屬性:通過使用Bean shell內建對象props 可以對屬性進行存取操作
a) props.get("START.HMS"); 註:START.HMS為屬性名稱,在檔案jmeter.properties中定義
b) props.put("PROP1","1234");
三、自訂函數:
在BeanShell中,我們可以使用java語言自訂函數來處理特定的邏輯,結合BeanShell的內建對象進行變數的存取,方便我們進行測試提高指令碼的靈活性。
樣本:
1、在Test Plan中添加一個變數:hello = kitty
2、Debug sampler-1和Debug sampler-2什麼都不處理,用來查詢對比beahshell處理前後的結果
3、BeanShell Sampler中的指令碼如下:
4、運行結果: Debug sampler-1中顯示:hello=kitty BeanShell sampler中 返回結果為:success Debug sampler-1中顯示:hello=world,jmeter=111111
四、引用外部java檔案:
有沒有覺得上面(三)中自訂函數這樣的方式太麻煩並且也不美觀。而且如果我們已經有現成的java源檔案或者class檔案時,我們有沒有什麼辦法直接在jemter中引用。這就是這部分要介紹的內容,直接上樣本:
1、假如我有一個java 源檔案,名為:Myclass.java,代碼如下:
package test;public class Myclass{ public int add(int a, int b) { return a + b; } }
2、Bean Shell使用代碼如下:
在bean shel中通過source("代碼路徑")方法引入java,然後調用方法和java一樣,new一個class,再調用裡面的add 方法。
3、運行結果:
五、引用外部class檔案:
現在知道如何引用外部檔案,有時候如果我們只有class檔案怎麼辦呢。其實在jmeter中也可以直接引用class檔案,樣本如下:
1、直接把上例中的java檔案編譯成class檔案,如何編譯請自行百度。
2、Bean Shell使用代碼如下:
用addClassPath("D:\\")方法引入 class檔案,在用import匯入包及類,然後就可以像java一樣調用了
3、運行結果:
六、引用外部Jar包:
上面四、五介紹了如何引用外部java和class檔案,如果檔案比較多時我們可以把它們打成一個jar包然後在jemter中調用,具體如何使用可以看我上一篇有介紹:Jmeter之Bean shell使用(一)。
在這裡想補充一點的是jmeter中引入jar的方法:
1、上一篇中已使用過的:把jar包放到jmeter目錄\apache-jmeter-2.13\lib\ext下
2、在Test Plan的右側面板最下方直接添加需要引用的jar包,如下圖:
七、其它用法:
1、在Test Plan中定義如下三個變數:
2、Bean Shell可指令碼如下:
a、bean shell可以接受傳入參數,如下圖:${u1} ${u2} ${u3}
b、參數可以通過bsh.args[]按順序提取
c、bean shell提供了一個內建變數Parameters,來儲存參數的集合
3、運行結果:
下圖中1輸入的這兩句設定:
ResponseCode = 500;
ResponseMessage = "This is a test";
下圖中2輸入的這兩句設定:
log.info(Parameters);
log.info(Label);