我正在尝试使用Beanshell后处理器提取JSON数组的一个变量的值,但我没有在日志中获得任何响应
我的JSON有点像:
"store":
: [
: : {
: : : "storeId":12345,
: : : "storeName":"ABC",
: : : "storeAddress":"DEFGHIJKL",
: : : "storeMinOrderAmount":100,
: : : "mobile":"+911234567890",
: : : "mobileSecondary":null,
: : : "city":"Somewhere",
: : : "pincode":123456,
: : : "country":"India",
: : : "email":"ptrm@company.com",
: : : "pickup":true,
: : : "delivery":false,
: : : "storeSplashPath":null,
: : : "storeSplashType":null,
: : : "distance":"0.10"
: : },
我的Beanshell Post Processor是:
import org.apache.commons.lang3.StringUtils;
import org.json.JSONArray;
import org.json.JSONObject;
import com.eclipsesource.json.*;
print("*******************");
//Get Store total count
int totalStoreNumber = StringUtils.countMatches(new String(data), "storeId");
print("Total Number of Stores are: " + totalStoreNumber);
if (totalStoreNumber > 0) {
//Check for Fulfilment type is "Pickup"
String jsonString = prev.getResponseDataAsString();
JsonObject store = JsonObject.readFrom(jsonString);
JsonArray store = store.get("store").asArray();
String pickup = store.get(1).asObject().get("pickup").asString();
vars.put("fulfilmentType_BSH", pickup);
print("Is Pickup allowed: " + pickup);
}
else {
print("No Stores Nearby");
}
我不知道我哪里错了。我已阅读相关查询,但无法做到这一点。 有什么想法吗?
答案 0 :(得分:7)
首先,为什么不使用JSON Path PostProcessor呢?您可以使用单个简单的JSON Path表达式来完全相同,如:
$.store[0].pickup
如果由于任何原因你还需要在Beanshell中做到这一点我有一些想法:
这绝对是错误。您不能在Beanshell脚本
中声明具有相同名称的2个变量JsonObject store = JsonObject.readFrom(jsonString);
JsonArray store = store.get("store").asArray();
// ^^^^^ ka-boom!
可能的问题。 IndexOutOfBoundsException如果响应中只有1个商店。在Beanshell中,集合从零开始,第一个元素的索引为0。
String pickup = store.get(1).asObject().get("pickup").asString();
// ^ ka-boom!
另一个可能的问题可能是您的导入,以防万一
import org.json.JSONArray;
import org.json.JSONObject;
import com.eclipsesource.json.*;
您是否已将相关的罐子添加到JMeter Classpath并在此之后重新启动了JMeter?你确定你正确使用方法吗?
以下是使用JMeter 3.0附带的json-smart重新实现的代码(您不需要任何其他jar)
import net.minidev.json.JSONArray;
import net.minidev.json.JSONObject;
import net.minidev.json.parser.JSONParser;
import org.apache.commons.lang.StringUtils;
//Get Store total count
int totalStoreNumber = StringUtils.countMatches(new String(data), "storeId");
log.info("Total Number of Stores are: " + totalStoreNumber);
if (totalStoreNumber > 0) {
//Check for Fulfilment type is "Pickup"
String jsonString = new String(data);
JSONParser parser = new JSONParser(JSONParser.MODE_JSON_SIMPLE);
JSONObject store = (JSONObject) parser.parse(data);
JSONArray storeArray = (JSONArray) store.get("store");
String pickup = ((JSONObject) storeArray.get(0)).getAsString("pickup");
vars.put("fulfilmentType_BSH", pickup);
log.info("Is Pickup allowed: " + pickup);
} else {
log.info("No Stores Nearby");
}
其工作的证据
有关在JMeter测试中使用Beanshell脚本的详细信息,请参阅How to Use BeanShell: JMeter's Favorite Built-in Component指南