Java 进阶 & 使用HttpClient发送多个post请求,并将响应结果写入Excel

接口测试中,经常会遇到一次发送多个http请求,然后获取响应结果中的重点字段。并将字段的值写入到某个文件中,以便查看各个请求的具体响应内容。

本文场景:从excel中读取要测试的VIN码,发送Http请求,调用接口,实现车辆VIN码定型并将定型结果处理后,写入到excel中。

具体实现步骤:
1、使用Excel4j工具包下的readExcel2List方法读取存取VIN码的excel,并将其存储到List中
2、使用httpclient工具包,创建post请求,并遍历存储VIN的List,将VIN传入到要发送的post请求中。
HttpClientUtils类:

package com.sc.vmi;

import org.apache.http.HttpEntity;
import org.apache.http.NameValuePair;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.protocol.HTTP;
import org.apache.http.util.EntityUtils;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;

public class HttpClientUtils{
//    private  static  CookieStore cookieStore = new BasicCookieStore();
//    private  static  CloseableHttpClient httpClient = HttpClients.custom().setDefaultCookieStore(cookieStore).build();

    private static CloseableHttpClient httpClient;
    private  static  CloseableHttpResponse httpResponse = null;
    private  static HttpEntity postEntity = null;

    static {
        PoolingHttpClientConnectionManager manager = new PoolingHttpClientConnectionManager();
        manager.setMaxTotal(200); //连接池最大并发连接数
        manager.setDefaultMaxPerRoute(200);//单路由最大并发数,路由是对maxTotal的细分
        httpClient = HttpClients.custom().setConnectionManager(manager).build();
    }

    public static String doPost(String url, Map<String, Object> params){
        HttpPost post = new HttpPost(url);
        post.addHeader(HTTP.CONTENT_ENCODING, "UTF-8");
        String ret = null;
        try {
            if (params != null) {
                List<NameValuePair> list = new ArrayList<NameValuePair>();
                for (Map.Entry<String, Object> entry : params.entrySet()) {
                    list.add(new BasicNameValuePair(entry.getKey(), entry.getValue().toString()));
                }
                postEntity = new UrlEncodedFormEntity(list);
                post.setEntity(postEntity);
            }

            httpResponse = httpClient.execute(post);
            if (httpResponse.getStatusLine().getStatusCode() == 200) {
                ret = EntityUtils.toString(httpResponse.getEntity(), "UTF-8");
            } else {
                throw new Exception(
                        "System level error, Code=[" + httpResponse.getStatusLine().getStatusCode() + "].");
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return ret;
    }

    public static void close(){
        if(postEntity!=null) {
            try {
                EntityUtils.consume(postEntity);
            } catch (IOException e) {
            }
        }
        if (httpResponse != null) {
            try {
                httpResponse.close();
            } catch (IOException e) {
            }
        }
    }
}

这里的post请求需要发送两次,在进行VIN定型之前,需要指定用户登录,然后再定型。
3、创建VIN定型 响应结果的VO,将post请求的响应结果中对应字段mapping到VO的对应字段
VO:VMIResult类

package com.sc.vmi;
import com.github.crab2died.annotation.ExcelField;
public class VMIResult {
    @ExcelField(title = "vin")
    private String vin;

    @ExcelField(title = "resultCode")
    private String resultCode;

    @ExcelField(title = "resultMsg")
    private String resultMsg;

    @ExcelField(title = "vehicleSubModelId")
    private String vehicleSubModelId;

    public String getVin() {
        return vin;
    }

    public void setVin(String vin) {
        this.vin = vin;
    }

    public String getResultCode() {
        return resultCode;
    }

    public void setResultCode(String resultCode) {
        this.resultCode = resultCode;
    }

    public String getResultMsg() {
        return resultMsg;
    }

    public void setResultMsg(String resultMsg) {
        this.resultMsg = resultMsg;
    }

    public String getVehicleSubModelId() {
        return vehicleSubModelId;
    }

    public void setVehicleSubModelId(String vehicleSubModelId) {
        this.vehicleSubModelId = vehicleSubModelId;
    }

    @Override
    public String toString() {
        return "VMIResult{" +
                "vin='" + vin + '\'' +
                ", resultCode='" + resultCode + '\'' +
                ", resultMsg='" + resultMsg + '\'' +
                ", vehicleSubModelId='" + vehicleSubModelId + '\'' +
                '}';
    }
}

4、使用Excel4j工具包下的exportObjects2Excel方法将响应结果指定字段的值写入到excel中
VMITest 类:

package com.sc.vmi;

import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.github.crab2died.ExcelUtils;
import java.io.File;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class VMITest {
    static List<VMIResult>  stringList = new ArrayList<VMIResult>();
    public static void main(String[] args)  {
        getVMIResult();
    }

    private  static void login() {
        Map<String, Object> map = new HashMap<String, Object>();
        map.put("j_username", "vip");
        map.put("j_password", "1");
        map.put("captchaStr", "1");
        String loginUrl = "http://**.**.**:8080/web-suite/j_spring_security_check";
        HttpClientUtils.doPost(loginUrl,map);
    }
    private  static String vtm(String vin) {
        Map<String, Object> map = new HashMap<String, Object>();
        map.put("vin", vin);
        map.put("claimId", "589");
        String vtmUrl = "http://**.**.**:8080/web-suite/metadata/getQuestionByVin";
        return  HttpClientUtils.doPost(vtmUrl,map);
    }

    private static void  getVMIResult(){
        String filePath = System.getProperty("user.dir")+File.separator+ "data"+File.separator+"vin.xlsx";
        String destPath = System.getProperty("user.dir")+File.separator+ "data"+File.separator+"vinResult.xlsx";

        try {
            List<List<String>> list = ExcelUtils.getInstance().readExcel2List(filePath);
            for(List<String> ll : list) {
                for (String vin : ll) {
                    String[] vinRes = vtmPost(vin).split(";");
                    VMIResult  vmiResult = new VMIResult();
                    vmiResult.setVin(vinRes[0]);
                    vmiResult.setResultCode(vinRes[1]);
                    vmiResult.setResultMsg(vinRes[2]);
                    vmiResult.setVehicleSubModelId(vinRes[3]);
                    stringList.add(vmiResult);
                }
            }
            System.out.println(stringList.toString());
            ExcelUtils.getInstance().exportObjects2Excel(stringList,VMIResult.class,destPath);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private static String vtmPost(String vin){
         login();
         String result = vtm(vin);
         JSONObject jsonObject = (JSONObject) JSON.parse(result);
         String resultCode = jsonObject.get("resultCode").toString();
         String resultMsg = jsonObject.get("resultMsg").toString();
         String vehicleSubModelId = getStringValue(jsonObject,"vehicleSubModelId");
         if(vehicleSubModelId.equals("") && "1".equals(resultCode)){
             vehicleSubModelId = "多个款型";
             resultMsg = "二步定款";
         }
         if(resultCode.equals("-3")){
             vehicleSubModelId = "无";
             resultMsg = "定型失败";
         }
        if(resultCode.equals("-20")){
            vehicleSubModelId = "无";
        }
         String str = vin+";"+resultCode+";"+resultMsg+";"+vehicleSubModelId;
         HttpClientUtils.close();
         return  str;
    }

    private static String getStringValue(JSONObject jsonObject,String  key){
        return jsonObject.get(key)==null?"":jsonObject.get(key).toString();
    }
}

写入到excel后的响应结果如下:


image.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,142评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,298评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,068评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,081评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,099评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,071评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,990评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,832评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,274评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,488评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,649评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,378评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,979评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,625评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,643评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,545评论 2 352

推荐阅读更多精彩内容