1. 程式人生 > >jmeter之beanshell斷言實例

jmeter之beanshell斷言實例

品質 .json esp sed add art 不為 spl sta

.首先儲存一個接口的響應結果,比如在http請求的後面添加beanshell後置處理器(BeanShell PostProcessor)來儲存http請求的響應結果:

 1 import org.json.*;
 2 
 3 //獲取上一個請求的返回值
 4 String response = prev.getResponseDataAsString();
 5 //將返回值轉換為json
 6 JSONObject responseJson = new JSONObject(response);
 7 //獲取responseMessage
 8 String message = responseJson.getString("responseMessage");
9 log.info("message的值:" + message); 10 11 //使用vars.put()方法儲存變量message 12 vars.put("message",message); 13 //獲取titleLink 14 String titleLink = responseJson.getJSONObject("data").getString("titleLink"); 15 log.info("titleLink的值:" + titleLink); 16 //使用vars.put()方法儲存變量message 17 vars.put("titleLink",titleLink);

在後面的其他接口中如何需要使用變量message和titleLink,可以使用${message}和${titleLink}來獲取變量的值;

變量儲存好後,在需要斷言的接口後面添加BeanShell斷言,使用Failrue來標識斷言失敗,FailureMessage標示斷言失敗的原因,如:

1 //使用vars.get()方法獲取變量的值
2 String message= vars.get("message");
3  
4 if(!message.equals("success")) {
5     Failure = true; 
6     FailureMessage = "規則解析失敗";
7 }else{ 8 FailureMessage = "規則解析成功"; 9 }

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

2.直接在需要斷言的接口後面使用beanshell斷言,使用Failrue來標識斷言失敗,FailureMessage標示斷言失敗的原因,如:

 1 import org.json.*;
 2 
 3 //獲取上一個請求的返回值
 4 String response = prev.getResponseDataAsString();
 5 //將返回值轉換為json
 6 JSONObject responseJson = new JSONObject(response);
 7 //獲取responseMessage
 8 String message = responseJson.getString("responseMessage");
 9 log.info("message的值:" + message);
10 
11 if(!message.equals("success")){
12     Failure = true; 
13     FailureMessage = "規則解析失敗,message不等於success";
14     return;
15 }
16 
17 //獲取titleLink
18 Object titleLink = responseJson.getJSONObject("data").get("titleLink");
19 log.info("titleLink的值:" + titleLink.toString());
20 
21 
22 if(titleLink.toString().equals("null") || "".equals(titleLink)){
23     Failure = true; 
24     FailureMessage = "規則解析失敗,titleLink為空";
25 }else if(!titleLink.toString().startsWith("http") && !titleLink.toString().startsWith("https")){
26     Failure = true;
27     FailureMessage = "規則解析失敗,titleLink不為空,但是不是以http或者https開頭的";
28 }

技術分享圖片

接口的響應數據為:

 1 {
 2 :   "responseCode":"1",
 3 :   "responseMessage":"success",
 4 :   "responseType":null,
 5 :   "data":
 6 :   {
 7 :   :   "city":"上海",
 8 :   :   "rentUnit":"月",
 9 :   :   "source":"個人房源網",
10 :   :   "title":"徐盈路1188弄徐涇青浦徐涇租房",
11 :   :   "belonger":"個人",
12 :   :   "housingType":"住宅",
13 :   :   "floor":"高層",
14 :   :   "rentPrice":"17000",
15 :   :   "titleLink":"http://sh.grfy.net/rent/d-34612565.html",
16 :   :   "decoration":null,
17 :   :   "direction":null,
18 :   :   "isSplit":"否",
19 :   :   "imgs":null,
20 :   :   "publishTime":"2018-07-25T23:20:33.471",
21 :   :   "contactMobile":null,
22 :   :   "website":"http://sh.grfy.net/rent/list_2_0_0_0-0_0_0-0_0_2_0_{}_.html",
23 :   :   "address":"徐涇",
24 :   :   "contactName":"王女士",
25 :   :   "houseType":"4室2廳2衛",
26 :   :   "estate":"徐涇",
27 :   :   "roomArea":"177",
28 :   :   "collectHouseType":"住宅",
29 :   :   "collectType":"出租",
30 :   :   "district":"青浦",
31 :   :   "totalFloor":"共20層",
32 :   :   "region":"上海",
33 :   :   "isRegister":"否",
34 :   :   "desc":"仁恒西郊花園 4室2廳2衛 房屋亮點 新上 配套齊全 有陽臺 首次出租 隨時看房 出租要求 一家人 一年起租 租戶穩定 作息正常 房源描述小區環境好,物業管理成熟,私人會所實施配套齊全,臨近地鐵17號徐盈站,周邊多所國際學校,仁恒的房子品質有保障。無中介費。"
35 :   }
36 }

斷言失敗如下:

技術分享圖片

jmeter之beanshell斷言實例