Jmeter-BeanShell断言:将数据库结果封装成list作为参数

时间:2018-06-28 12:05:50   收藏:0   阅读:1984

 

import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONException;

//获取数据库数据
Object dataCount = vars.getObject("result");
String dataCount_str = dataCount.toString();
JSONArray list = JSON.parseArray(dataCount_str.replace("=",":"));
JSONArray detailList = new JSONArray();
for (int i = 0; i < list.size(); i++) {

    JSONObject object = list.getJSONObject(i);
    // 添加键值对
    object.put("entryNum",12);
    object.put("entrySmallNum",object.getInteger("small_large_package_ratio")-1);
    object.put("smallLargePackageRatio",object.getInteger("small_large_package_ratio"));
    object.put("medicationId",object.getInteger("medication_id"));
    //去掉多余的键值对
    object.remove("chest_id");
    object.remove("chest_nature");
    object.remove("small_large_package_ratio");
    object.remove("medication_id");
    detailList.add(object);
}
log.info(detailList.toString());

vars.put("detailList",detailList.toString());

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!