Jmeter - 断言之 BeanShell Assertion

在一个串联场景中,想要争对前面其他接口的返回值,来对后面的接口返回进行逻辑判断是不是正确的逻辑,此时可以使用BeanShell Assertion进行自定义的断言。

import org.json.*; //lib中加入json.jar 下载地址 https://mvnrepository.com/artifact/org.json/json
String responsData = prev.getResponseDataAsString(); // prev 是一个内置对象,拥有很多方法,可以获取Sample的各种信息
                                //API:http://jmeter.apache.org/api/org/apache/jmeter/samplers/SampleResult.html
JSONObject responseJson
= new JSONObject(responsData); String returnStr = responseJson.get("message").toString(); String energyValue = vars.get("energyValue"); int i = Integer.valueOf(energyValue); Failure=false;//Failure的设置可以是断言成功失败出现在结果树中 if(i == 100){ log.info(returnStr); if(returnStr.contains("学习伙伴现在还不饿")){ return; }else{ Failure=true; //断言失败时设置为true FailureMessage="该接口有问题1";//失败返回信息 } }else{ if(returnStr.contains("成功")){ return; }else{ Failure=true; FailureMessage="该接口有问题2";

 

转载于:https://www.cnblogs.com/tangym/p/11010499.html

你可能感兴趣的:(json)