Httpclient 介面自動化
好久木寫啦!!!好久木寫啦!!!
心血來潮分享點小白的東西!!!
廢話少說直接乾貨!!!
本文核心是將如何從資料驅動開始,以報告結尾的形式來實現“很多剛入行朋友們”所需要的介面自動化
型別:驅動:excel
核心jar:httpclient
編譯:maven(跟本文所講有點沾不著邊)
自動化框架 :testng(這個支援併發所以實現了併發的方法)
報告:ztest(有在之前tester老大哥的開源報告上實現了修改)
總結關鍵字:httpclient+maven+testng+ztest+excel
資料驅動實現主要是通過jxl包實現
請點這裡:https://testerhome.com/topics/15681
maven pom配置:
<!-- httpclient依賴 -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.5</version>
</dependency>
<!-- json解析依賴 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.47</version>
</dependency>
<!-- testng依賴 -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.14.3</version>
<scope>test</scope>
</dependency>
其實實現可以很簡單,因為在實現的過程中加入了併發的支援所以實現起來就變成了下面這樣子(寫的很水不喜勿噴)
請求類具體實現方式:
httpclient配置類:這個配置類主要目的分為三類
①如何支援https請求
②如何支援執行緒池
③自定義請求重試的機制
https是安全的ssl請求,官方給出的要想支援https請求就必須繞過請求證照,至於如何繞過需要實現一個X509TrustManager的介面
private static SSLContext createIgnoreVerifySSL() {
SSLContext sc = null;
try {
sc = SSLContext.getInstance("SSLv3");
} catch (NoSuchAlgorithmException e) {
logger.error("演算法異常", e);
}
// 實現一個X509TrustManager介面,用於繞過驗證,不用修改裡面的方法
X509TrustManager trustManager = new X509TrustManager() {
public void checkClientTrusted(java.security.cert.X509Certificate[] paramArrayOfX509Certificate,
String paramString) throws CertificateException {
}
public void checkServerTrusted(java.security.cert.X509Certificate[] paramArrayOfX509Certificate,
String paramString) throws CertificateException {
}
public java.security.cert.X509Certificate[] getAcceptedIssuers() {
return null;
}
};
try {
sc.init(null, new TrustManager[] { trustManager }, null);
} catch (KeyManagementException e) {
logger.error("金鑰管理異常", e);
}
return sc;
}
這樣子下來ssl的配置就有了,然後在httpclient裡面實現執行緒池的方法裡面配置這個就好了
這樣子就得到了執行緒池的物件,然後再給執行緒池一頓配置,具體程式碼有註釋解釋
第三個請求自定義重試機制(也可使用預設的重試機制,不實現這個方法,去掉這個配置就好了setRetryHandler(myRetryHandler)),我偏不信邪我就喜歡重寫一個
這樣子下來我需要的一些配置就有了
public synchronized static CloseableHttpClient createClient() {
SSLContext sslcontext = createIgnoreVerifySSL();
// 驗證http,https請求,使用預設的連線請求,如有自定義需要
// 請檢視https://hc.apache.org/httpcomponents-client-4.5.x/tutorial/html/connmgmt.html#d5e449,官方自定義證照驗證文件
Registry<ConnectionSocketFactory> registry = RegistryBuilder.<ConnectionSocketFactory> create()
.register("http", PlainConnectionSocketFactory.INSTANCE)
.register("https", new SSLConnectionSocketFactory(sslcontext)).build();
// 執行緒池設定
PoolingHttpClientConnectionManager cm = new PoolingHttpClientConnectionManager(registry);// registry
// 最大連線總數
cm.setMaxTotal(MAX_CONN);
// 預設路由最大連線數
cm.setDefaultMaxPerRoute(Max_PRE_ROUTE);
// 主機埠最大連線數
HttpHost localhost = new HttpHost("music.migu.cn", 8000);
cm.setMaxPerRoute(new HttpRoute(localhost), MAX_ROUTE);
// http請求重試處理機制,重寫方法
HttpRequestRetryHandler myRetryHandler = new HttpRequestRetryHandler() {
public boolean retryRequest(IOException exception, int executionCount, HttpContext context) {
if (executionCount >= 10) {
logger.error("重試次數超過5", new Throwable("重試次數超過5"));
return false;
}
if (exception instanceof InterruptedIOException) {
logger.error("中斷IO異常", new Throwable("中斷IO異常"));
return false;
}
if (exception instanceof UnknownHostException) {
new Throwable().getMessage();
logger.error("未知主機");
return false;
}
if (exception instanceof ConnectTimeoutException) {
logger.error("連線超時", new Throwable("連線超時"));
return false;
}
if (exception instanceof SSLException) {
logger.error("sll握手異常", new Throwable("sll握手異常"));
return false;
}
HttpClientContext clientContext = HttpClientContext.adapt(context);
HttpRequest request = clientContext.getRequest();
boolean idempotent = !(request instanceof HttpEntityEnclosingRequest);
if (idempotent) {
logger.error("帶有請求的實體自動重試", new Throwable());
return true;
}
return false;
}
};
// 建立自定義將請求重試機制新增進去;客戶端分createDefault() 與 custom()
CloseableHttpClient httpclient = HttpClients.custom().setKeepAliveStrategy(getkeepAliveStrat())
.setConnectionManager(cm).setRetryHandler(myRetryHandler).build();
return httpclient;
}
配置有了之後怎麼辦呢,那當然是實現請求啊
這裡需要給大家科普一下頭,頭分為請求頭跟響應頭(網上大佬們寫的我覺得還不錯),因為請求頭能自定義還是說一下比較好
請求方的http報頭結構:通用報頭|請求報頭|實體報頭
響應方的http報頭結構:通用報頭|響應報頭|實體報頭
Accept代表傳送端(客戶端)希望接受的資料型別。
比如:Accept:text/xml; /是所有型別都接受
代表客戶端希望接受的資料型別是xml型別
Content-Type代表傳送端(客戶端|伺服器)傳送的實體資料的資料型別。
比如:Content-Type:text/html;
代表傳送端傳送的資料格式是html。
解釋完了然後開始實現get,post請求;實現請求之前需要在寫一個setCookie的方法
寫完了cookie之後就就可以當個人了
public BasicHeader setCookie(String head) {
BasicHeader cookie = new BasicHeader("Cookie", head);
return cookie;
}
接下來是get方法
get方法裡面有兩點必須要說明的 一個是response響應頭資訊,一個是response響應實體
response響應頭:getReponsemes(response) 這個類實現瞭解析響應頭裡面的各種資訊裡面包含了兩種方法
response響應實體:getResponseEntity(getEntity)響應實體httpclien官網給了一個流解析的api,但是這個api在某些時候會有bug所以這個流的解析基礎上面又加入了一個解析判斷,都有註釋有註釋你們看的懂的
這兩個方法我就不細說了,後面我會放上git連結看官們可以自取
public List<String> get(String url, String head) throws Exception {
List<String> resList = new ArrayList<String>();
CloseableHttpClient httpclient = HttpClientMain.createClient();// 建立客戶端
CloseableHttpResponse response = null;// 建立響應
String res = null;// 請求結果
String statu = null;
int status;// 狀態碼
HttpEntity getEntity = null;
HttpGet get = null;
HttpClientContext context = HttpClientContext.create();
BasicHeader cookie = setCookie(head);
get = new HttpGet(url);
// get.setRequestProperty("Content-Type",
// "application/x-www-form-urlencoded;charset=utf-8");
// get.setRequestProperty("accept", "*/*");
// get.setHeader("HTTP_CLIENT_IP", "192.168.10.100");
get.addHeader("user-agent",
"Mozilla/5.0 (Windows NT 6.1; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36");
get.addHeader("Content-Type", CONTENT_TYPE_FORM_URLENCODED);
get.addHeader("accept", "*/*");
get.setHeader(cookie);
if (httpclient != null) {
response = httpclient.execute(get, context);
if (response != null) {
status = response.getStatusLine().getStatusCode();
getEntity = response.getEntity();
statu = response.getStatusLine().toString();
res = getResponseEntity(getEntity);
resList.add(getReponsemes(response).toString());
resList.add(statu);
resList.add(res);
if (status != 200) {
throw new Exception(res);
}
}
}
closeAll(httpclient, response);
return resList;
}
post方法:post方法多了一個請求引數至於怎麼
public List<String> post(String url, Map<String, Object> params, String head) throws Exception {
List<String> resList = new ArrayList<String>();
CloseableHttpClient httpclient = null;// 建立客戶端
CloseableHttpResponse response = null;// 建立響應
HttpEntity postEntity = null;// 請求結果
HttpPost httpPost = null;// 請求方法
int statusCode;// 狀態碼
String res = null;
String statu = null;
BasicHeader cookie = setCookie(head);
httpclient = createClient();
HttpClientContext context = HttpClientContext.create();
httpPost = new HttpPost(url);
httpPost = setPostParams(httpPost, params, context, httpclient);
httpPost.addHeader("user-agent",
"Mozilla/5.0 (Windows NT 6.1; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36");
httpPost.addHeader("Content-Type", CONTENT_TYPE_FORM_URLENCODED);
httpPost.addHeader("accept", "*/*");
httpPost.setHeader(cookie);
response = httpclient.execute(httpPost, HttpClientContext.create());
statusCode = response.getStatusLine().getStatusCode();
// getReponsemes(response);
if (response != null) {
statusCode = response.getStatusLine().getStatusCode();
postEntity = response.getEntity();
statu = response.getStatusLine().toString();
res = getResponseEntity(postEntity);
resList.add(getReponsemes(response).toString());
resList.add(statu);
resList.add(res);
if (statusCode != 200) {
throw new Exception(res);
}
}
return resList;
}
好了到這裡基本的主要方法都有了,然後利用testng去實現這些請求了
如果你深入瞭解testng這些看起來就很簡單了
一個資料驅動方法,一個test方法,一個ztest的監聽就完事了
@Listeners({ ZTestReport.class })
public class TestTemplate extends TestBase {
private String excelPath = prop1.getProperty("ExcelPath");
private String sheetName = "api";
private List<String> re = null;
@Test(dataProvider = "data", threadPoolSize = 1, timeOut = 0, invocationCount = 1)
public synchronized void getData(String num, String nicName, String httpType, String reMethond, String host,
String path, String head, String paramType, String param, String verisy) throws Exception {
// 獲取當前執行緒id System.out.println(Thread.currentThread().getId());
SendRequest sr = new SendRequest(num, nicName, httpType, reMethond, host, path, head, paramType, param, verisy);
re = sr.request();
for(String entry:re){
Reporter.log(entry);
}
}
/**
* 資料驅動
*/
@DataProvider(name = "data", parallel = true)
public Object[][] dataProvider() throws IOException, Exception {
return ExcelDataParam.readExcelDataParam(excelPath, sheetName);
}
然後只用到了test標籤至於為什麼完全是為了併發,至於是不是併發效果各位看官們可以列印時間到毫秒來看看,也可以列印執行緒id,至於支援多少併發完全取決於你的機器支援多少執行緒這裡不多講,幹活基本就這麼多了
少了一個SendRequest
這個類主要是繼承了配置檔案(比如你想配置開發,測試,生產的主機可以解除安裝配置檔案裡面)
這個類主要就是根據驅動裡面的引數來判斷怎麼去執行,各個引數為空該怎麼執行,引數型別不同該怎麼執行沒有技術含量的
public class SendRequest extends TestBase {
private String num;// 編號
private String nicName;// 用例名稱
private String httpType;// 請求協議型別
private String reMethond;// 請求方法
private String host;// 主機
private String path;// 路徑
private String head;// 請求頭
private String paramType;// 引數型別 json param
private String param;// 請求引數
private String verisy;// 驗證點
public SendRequest(String num, String nicName, String httpType, String reMethond, String host, String path,
String head, String paramType, String param, String verisy) {
this.num = num;
this.nicName = nicName;
this.httpType = httpType;
this.reMethond = reMethond;
this.host = host;
this.path = path;
this.head = head;
this.paramType = paramType;
this.param = param;
this.verisy = verisy;
}
/**
* 根據驅動型別來選擇呼叫方法與引數型別介面呼叫類
*/
public List<String> request() throws Exception {
List<String> re = null;
if (path == null) {
path = "/";
}
if (host == null) {
host = prop1.getProperty("Host");
}
HttpClientMain req = new HttpClientMain();
if (reMethond.equalsIgnoreCase("get")) {
re = req.get(httpType + "://" + host + path, head);
} else {
// 如果是json引數先把字串轉json,在把json轉map
if (paramType.equalsIgnoreCase("json")) {
JSONObject json = JSONObject.parseObject(param);
re = req.post(httpType + "://" + host + path, JsonToMap.jsonToMap(json), head);
} else {
re = req.post(httpType + "://" + host + path, ParToMap.strToMap(param), head);
}
}
return re;
}
}
至於報告是怎麼實現的:https://testerhome.com/topics/10802 請看一下這位大佬的,對了大佬的報告沒有驗證點,所以我加上了後面git上面的rereport就是加了驗證點的報告,大佬好一手jqury 害的我百度半天才加上
基本就這些了放上git:https://gitee.com/domains90/HttpClient.git
有疑問的跟我一樣的小白們留言就好看到就會回
如果想罵人的請看這裡:我手癢想些,就是手癢啊啊啊啊啊啊
相關文章
- 全自動化介面
- 介面自動化與ui自動化區別UI
- 介面自動化測試
- python 介面自動化Python
- 介面自動化之介面整理(抓包)
- JMeter 介面自動化測試(手工轉自動化指令碼)JMeter指令碼
- python 介面自動化測試Python
- 介面自動化大牛養成記
- 三.介面自動化專案1
- 介面自動化測試框架 HttpFPT框架HTTP
- 二、介面自動化測試(2)
- protobuf 介面自動化測試摸索
- 「乾貨」介面自動化實踐:高效智慧介面場景自動巡檢方案
- Web介面測試-HttpClientWebHTTPclient
- 介面自動化如何處理介面依賴問題
- 介面自動化報告的問題
- 介面自動化(四):框架搭建(Python)框架Python
- 基於RestAssured實現介面自動化REST
- Django 介面自動化測試平臺Django
- 介面自動化測試解決方案
- 介面自動化測試 - RobotFramework RESTinstanceFrameworkREST
- 介面自動化實戰之框架搭建框架
- 大家都用什麼做介面自動化
- JMeter介面自動化發包與示例JMeter
- 使用 testng 做介面自動化測試
- jmeter介面自動化:登入到新增JMeter
- 四.unittest介面自動化框架介紹框架
- 【pytest 介面自動化】token 問題
- Jmeter 介面自動化連載 (13) - 自動生成測試報告JMeter測試報告
- Python介面自動化——檔案上傳/下載介面Python
- python+pytest介面自動化(16)-介面自動化專案中日誌的使用 (使用loguru模組)Python
- 介面自動化之引數動態生成替換
- 介面自動化全量欄位校驗
- 如何用Postman做介面自動化測試Postman
- python 介面自動化--依賴資料Python
- python+requests 實現介面自動化Python
- 【python介面自動化】初識unittest框架Python框架
- Jmeter+Ant+Jenkins介面自動化框架JMeterJenkins框架