Jmeter接口测试使用beanshell断言json返回

一般情况下响应断言就能解决很多问题,但是返回复杂的json时就需要用到beanshell断言。

举个例子

免费的接口API www.sojson.com/api/beian/sojson.com

host:    www.sojson.com

source:   api/beian/sojson.com (api/beian后面只能跟一级域名如:baidu.com或者sojson.com)

创建好线程组HTTP请求,给该请求加beanshell断言,代码如下,其中必须加prev.setSuccessful(false);设置用例的结果

beanshell代码如下

 import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import java.lang.*;
//获取上一个请求的返回
response = prev.getResponseDataAsString();
log.info(response); //正常情况的history应该为数据库查询出来的结果
String history="{\"nature\":\"企业\",\"icp\":\"京ICP备16038595号\",\"indexUrl\":\"www.sojson.com\",\"sitename\":\"JSON在线解析\",\"domain\":\" sojson.com \",\"nowIcp\":\"京ICP备16038595号-2\",\"type\":200,\"search\":\"sojson.com\",\"checkDate\":\"\",\"name\":\"北京都芳商贸有限公司\"}";
//使用Gson解析json
JsonParser parser = new JsonParser();
JsonObject responseObj = (JsonObject) parser.parse(response); JsonParser parser1 = new JsonParser();
JsonObject historyObj = (JsonObject) parser1.parse(history); if(history == "")
{
// Failure = true;
FailureMessage = "连接数据库失败或者数据库内没有历史数据"; //调用Gson提供的Json对象euqals方法判断是否一致
}else if(responseObj.equals(historyObj) == false)
{
log.info("不一样");
//设置该条用例结果,但是查看结果树中不会打印出错信息FailureMessage
prev.setSuccessful(false);
//把断言失败置为真,即用例失败,并在结果树中显示FailureMessage
Failure = true;
FailureMessage = "请求返回和数据库不匹配";
}
else
{
log.info("俩一模一样");
}
上一篇:ES6与ES5差别


下一篇:jmeter断言之BeanShell断言