使用Httpclient进行接口测试

下载Httpclient包:http://apache.fayea.com//httpcomponents/httpclient/binary/httpcomponents-client-4.5-bin.zip

刚安装完eclipse,新建项目interfaceTest,新建类InterfaceTest,参照资料:http://blog.csdn.net/wangpeng047/article/details/19624529

导入Httpclient包:

点击菜单栏的project-点properties属性,然后在 Java build path菜单中点libraries-点击add External jars,找到Httpclient的zip包的路径,导入该包。成功后,该项目下referenced libraries目录下出现了Httpclient包的相关内容。

想直接粘参考资料的代码来的,但是,第一句package XXX就把我搞蒙了,先查了一下:http://www.cnblogs.com/mengdd/archive/2012/12/27/2836412.html,里面说“如果定义类的时候没有使用package指定包名,则Java认为类位于默认包里面(default package)。”

嗯,那现在开始吧(以下代码是抄的wangpeng047的,略有改动):

  1. package com.Test;
  2. import java.io.File;
  3. import java.io.FileInputStream;
  4. import java.io.IOException;
  5. import java.io.UnsupportedEncodingException;
  6. import java.security.KeyManagementException;
  7. import java.security.KeyStore;
  8. import java.security.KeyStoreException;
  9. import java.security.NoSuchAlgorithmException;
  10. import java.security.cert.CertificateException;
  11. import java.util.ArrayList;
  12. import java.util.List;
  13. import javax.net.ssl.SSLContext;
  14. import org.apache.http.HttpEntity;
  15. import org.apache.http.NameValuePair;
  16. import org.apache.http.ParseException;
  17. import org.apache.http.client.ClientProtocolException;
  18. import org.apache.http.client.entity.UrlEncodedFormEntity;
  19. import org.apache.http.client.methods.CloseableHttpResponse;
  20. import org.apache.http.client.methods.HttpGet;
  21. import org.apache.http.client.methods.HttpPost;
  22. import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
  23. import org.apache.http.conn.ssl.SSLContexts;
  24. import org.apache.http.conn.ssl.TrustSelfSignedStrategy;
  25. import org.apache.http.entity.ContentType;
  26. import org.apache.http.entity.mime.MultipartEntityBuilder;
  27. import org.apache.http.entity.mime.content.FileBody;
  28. import org.apache.http.entity.mime.content.StringBody;
  29. import org.apache.http.impl.client.CloseableHttpClient;
  30. import org.apache.http.impl.client.HttpClients;
  31. import org.apache.http.message.BasicNameValuePair;
  32. import org.apache.http.util.EntityUtils;
  33. import org.junit.Test;
  34. public class HttpClientTest {
  35. @Test
  36. public void jUnitTest() {
  37. get();
  38. }
  39. /**
  40. * HttpClient连接SSL
  41. */
  42. public void ssl() {
  43. CloseableHttpClient httpclient = null;
  44. try {
  45. KeyStore trustStore = KeyStore.getInstance(KeyStore.getDefaultType());
  46. FileInputStream instream = new FileInputStream(new File("d:\\tomcat.keystore"));
  47. try {
  48. // 加载keyStore d:\\tomcat.keystore
  49. trustStore.load(instream, "123456".toCharArray());
  50. } catch (CertificateException e) {
  51. e.printStackTrace();
  52. } finally {
  53. try {
  54. instream.close();
  55. } catch (Exception ignore) {
  56. }
  57. }
  58. // 相信自己的CA和所有自签名的证书
  59. SSLContext sslcontext = SSLContexts.custom().loadTrustMaterial(trustStore, new TrustSelfSignedStrategy()).build();
  60. // 只允许使用TLSv1协议
  61. SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(sslcontext, new String[] { "TLSv1" }, null,
  62. SSLConnectionSocketFactory.BROWSER_COMPATIBLE_HOSTNAME_VERIFIER);
  63. httpclient = HttpClients.custom().setSSLSocketFactory(sslsf).build();
  64. // 创建http请求(get方式)
  65. HttpGet httpget = new HttpGet("https://localhost:8443/myDemo/Ajax/serivceJ.action");
  66. System.out.println("executing request" + httpget.getRequestLine());
  67. CloseableHttpResponse response = httpclient.execute(httpget);
  68. try {
  69. HttpEntity entity = response.getEntity();
  70. System.out.println("----------------------------------------");
  71. System.out.println(response.getStatusLine());
  72. if (entity != null) {
  73. System.out.println("Response content length: " + entity.getContentLength());
  74. System.out.println(EntityUtils.toString(entity));
  75. EntityUtils.consume(entity);
  76. }
  77. } finally {
  78. response.close();
  79. }
  80. } catch (ParseException e) {
  81. e.printStackTrace();
  82. } catch (IOException e) {
  83. e.printStackTrace();
  84. } catch (KeyManagementException e) {
  85. e.printStackTrace();
  86. } catch (NoSuchAlgorithmException e) {
  87. e.printStackTrace();
  88. } catch (KeyStoreException e) {
  89. e.printStackTrace();
  90. } finally {
  91. if (httpclient != null) {
  92. try {
  93. httpclient.close();
  94. } catch (IOException e) {
  95. e.printStackTrace();
  96. }
  97. }
  98. }
  99. }
  100. /**
  101. * post方式提交表单(模拟用户登录请求)
  102. */
  103. public void postForm() {
  104. // 创建默认的httpClient实例.
  105. CloseableHttpClient httpclient = HttpClients.createDefault();
  106. // 创建httppost
  107. HttpPost httppost = new HttpPost("http://localhost:8080/myDemo/Ajax/serivceJ.action");
  108. // 创建参数队列
  109. List<namevaluepair> formparams = new ArrayList<namevaluepair>();
  110. formparams.add(new BasicNameValuePair("username", "admin"));
  111. formparams.add(new BasicNameValuePair("password", "123456"));
  112. UrlEncodedFormEntity uefEntity;
  113. try {
  114. uefEntity = new UrlEncodedFormEntity(formparams, "UTF-8");
  115. httppost.setEntity(uefEntity);
  116. System.out.println("executing request " + httppost.getURI());
  117. CloseableHttpResponse response = httpclient.execute(httppost);
  118. try {
  119. HttpEntity entity = response.getEntity();
  120. if (entity != null) {
  121. System.out.println("--------------------------------------");
  122. System.out.println("Response content: " + EntityUtils.toString(entity, "UTF-8"));
  123. System.out.println("--------------------------------------");
  124. }
  125. } finally {
  126. response.close();
  127. }
  128. } catch (ClientProtocolException e) {
  129. e.printStackTrace();
  130. } catch (UnsupportedEncodingException e1) {
  131. e1.printStackTrace();
  132. } catch (IOException e) {
  133. e.printStackTrace();
  134. } finally {
  135. // 关闭连接,释放资源
  136. try {
  137. httpclient.close();
  138. } catch (IOException e) {
  139. e.printStackTrace();
  140. }
  141. }
  142. }
  143. /**
  144. * 发送 post请求访问本地应用并根据传递参数不同返回不同结果
  145. */
  146. public void post() {
  147. // 创建默认的httpClient实例.
  148. CloseableHttpClient httpclient = HttpClients.createDefault();
  149. // 创建httppost
  150. HttpPost httppost = new HttpPost("http://localhost:8080/myDemo/Ajax/serivceJ.action");
  151. // 创建参数队列
  152. List<namevaluepair> formparams = new ArrayList<namevaluepair>();
  153. formparams.add(new BasicNameValuePair("type", "house"));
  154. UrlEncodedFormEntity uefEntity;
  155. try {
  156. uefEntity = new UrlEncodedFormEntity(formparams, "UTF-8");
  157. httppost.setEntity(uefEntity);
  158. System.out.println("executing request " + httppost.getURI());
  159. CloseableHttpResponse response = httpclient.execute(httppost);
  160. try {
  161. HttpEntity entity = response.getEntity();
  162. if (entity != null) {
  163. System.out.println("--------------------------------------");
  164. System.out.println("Response content: " + EntityUtils.toString(entity, "UTF-8"));
  165. System.out.println("--------------------------------------");
  166. }
  167. } finally {
  168. response.close();
  169. }
  170. } catch (ClientProtocolException e) {
  171. e.printStackTrace();
  172. } catch (UnsupportedEncodingException e1) {
  173. e1.printStackTrace();
  174. } catch (IOException e) {
  175. e.printStackTrace();
  176. } finally {
  177. // 关闭连接,释放资源
  178. try {
  179. httpclient.close();
  180. } catch (IOException e) {
  181. e.printStackTrace();
  182. }
  183. }
  184. }
  185. /**
  186. * 发送 get请求
  187. */
  188. public void get() {
  189. CloseableHttpClient httpclient = HttpClients.createDefault();
  190. try {
  191. // 创建httpget.
  192. HttpGet httpget = new HttpGet("http://www.baidu.com/");
  193. System.out.println("executing request " + httpget.getURI());
  194. // 执行get请求.
  195. CloseableHttpResponse response = httpclient.execute(httpget);
  196. try {
  197. // 获取响应实体
  198. HttpEntity entity = response.getEntity();
  199. System.out.println("--------------------------------------");
  200. // 打印响应状态
  201. System.out.println(response.getStatusLine());
  202. if (entity != null) {
  203. // 打印响应内容长度
  204. System.out.println("Response content length: " + entity.getContentLength());
  205. // 打印响应内容
  206. System.out.println("Response content: " + EntityUtils.toString(entity));
  207. }
  208. System.out.println("------------------------------------");
  209. } finally {
  210. response.close();
  211. }
  212. } catch (ClientProtocolException e) {
  213. e.printStackTrace();
  214. } catch (ParseException e) {
  215. e.printStackTrace();
  216. } catch (IOException e) {
  217. e.printStackTrace();
  218. } finally {
  219. // 关闭连接,释放资源
  220. try {
  221. httpclient.close();
  222. } catch (IOException e) {
  223. e.printStackTrace();
  224. }
  225. }
  226. }
  227. /**
  228. * 上传文件
  229. */
  230. public void upload() {
  231. CloseableHttpClient httpclient = HttpClients.createDefault();
  232. try {
  233. HttpPost httppost = new HttpPost("http://localhost:8080/myDemo/Ajax/serivceFile.action");
  234. FileBody bin = new FileBody(new File("F:\\image\\sendpix0.jpg"));
  235. StringBody comment = new StringBody("A binary file of some kind", ContentType.TEXT_PLAIN);
  236. HttpEntity reqEntity = MultipartEntityBuilder.create().addPart("bin", bin).addPart("comment", comment).build();
  237. httppost.setEntity(reqEntity);
  238. System.out.println("executing request " + httppost.getRequestLine());
  239. CloseableHttpResponse response = httpclient.execute(httppost);
  240. try {
  241. System.out.println("----------------------------------------");
  242. System.out.println(response.getStatusLine());
  243. HttpEntity resEntity = response.getEntity();
  244. if (resEntity != null) {
  245. System.out.println("Response content length: " + resEntity.getContentLength());
  246. }
  247. EntityUtils.consume(resEntity);
  248. } finally {
  249. response.close();
  250. }
  251. } catch (ClientProtocolException e) {
  252. e.printStackTrace();
  253. } catch (IOException e) {
  254. e.printStackTrace();
  255. } finally {
  256. try {
  257. httpclient.close();
  258. } catch (IOException e) {
  259. e.printStackTrace();
  260. }
  261. }
  262. }
  263. }</namevaluepair></namevaluepair></namevaluepair></namevaluepair>

啊嘚嘚。其实我没验证过这些代码~我也不是这么搞的。刚把httpclient包引入,盖爷就过来帮忙导入了好多我不认识的包,叭叭叭敲了几行代码,就告诉我,你改接口地址和键值对,就可以进行测试了:

package interfaceTest_1;

import java.util.HashMap;
import java.util.Map;

import com.alibaba.fastjson.JSON;

public class InterfaceTest {

public static void main(String[] args) {
// TODO Auto-generated method stub
Map<String,Object> m = new HashMap<String,Object>();
m.put("a",1);
m.put("",1);
String res = HTTPUtil.postJson("http://www.baidu.com", JSON.toJSONString(m));
System.out.println(res);
}

}

感谢盖爷的技术支持,我后续再自己试试这个过程~

时间: 2024-11-13 18:42:03

使用Httpclient进行接口测试的相关文章

接口测试(二)—HttpClient

使用HttpClient进行接口测试,所需要使用的相关代码 HttpClient进行接口测试所需jar包:httpclient.jar.httpcore.jar.commons-logging.jarGet请求://创建httpclient对象CloseableHttpClient httpClient = HttpClients.createDefault();//如果发送的是GET请求,创建HttpGet对象HttpGet httpget = new HttpGet("http://www.

接口测试——HttpClient工具的https请求、代理设置、请求头设置、获取状态码和响应头

转自:https://www.cnblogs.com/hong-fithing/p/7617855.html https请求 https协议(Secure Hypertext Transfer Protocol) : 安全超文本传输协议, HTTPS以保密为目标研发, 简单讲HTTPS协议是由SSL+HTTP协议构建的可进行加密传输. 身份认证的网络协议, 其安全基础是SSL协议, 因此加密的详细内容请看SSL. 全称Hypertext Transfer Protocol overSecure

一.HttpClient、JsonPath、JsonObject运用

HttpClient详细应用请参考官方api文档:http://hc.apache.org/httpcomponents-client-4.5.x/httpclient/apidocs/index.html 1.使用httpclient进行接口测试,所需jar包如下:httpclient.jar. httpcore.jar. commons-logging.jar 2.使用JSONObject插件处理响应数据 所需的6个JAR包:json-lib.jar.commons-beanutils.ja

httpclient获取响应实体和信息的封装方法(解耦更新)

转自:https://blog.csdn.net/fhaohaizi/article/details/77850302 2018年07月19日更新,主要是解耦之后方法很多地方发生了变化,httpclient用了连接池方式,作为一个静态变量处理,请求头和响应头以及cookies设置都有了相关处理方法,本来这个方法已经快超过100行了,解耦之后分成了几个小方法,方便修改和调试.分两部分,一部分是框架,只做了公共处理,另外一部分是每个项目的base类需要重新实现一些这个方法来处理header信息以及需

APP测试流程

1 APP测试基本流程 1.1流程图 1.2测试周期 测试周期可按项目的开发周期来确定测试时间,一般测试时间为两三周(即15个工作日),根据项目情况以及版本质量可适当缩短或延长测试时间.正式测试前先向主管确认项目排期. 1.3测试资源 测试任务开始前,检查各项测试资源. --产品功能需求文档: --产品原型图: --产品效果图: --行为统计分析定义文档: --测试设备(ios3.1.3-ios5.0.1:Android1.6-Android4.0:Winphone7.1及以上:Symbian 

http自动化测试

接口测试自动化生成框架:http://blog.sina.com.cn/s/blog_6cf812be01010bqf.html Http接口自动化测试资料:http://www.51testing.com/html/17/15066317-877622.html 使用httpClient进行接口测试:http://lijingshou.iteye.com/blog/1998209 HTTP JSON协议接口测试自动化实例(自动化测试开发实践系列):http://www.educity.cn/w

移动应用/APP的测试流程及方法

1. APP测试基本流程 1.1流程图 1.2测试周期 测试周期可按项目的开发周期来确定测试时间,一般测试时间为两三周(即15个工作日),根据项目情况以及版本质量可适当缩短或延长测试时间.正式测试前先向主管确认项目排期. 1.3测试资源 测试任务开始前,检查各项测试资源. --产品功能需求文档: --产品原型图: --产品效果图: --行为统计分析定义文档: --测试设备(ios3.1.3-ios5.0.1:Android1.6-Android4.0:Winphone7.1及以上:Symbian

APP测试点归纳

1.2测试周期 测试周期可按项目的开发周期来确定测试时间,一般测试时间为两三周(即 15个工作日), 根据项目情况以及版本质量可适当缩短或延长测试时间.正式测试前先向主管确认项目排期. 1.3测试资源 测试任务开始前,检查各项测试资源. --产品功能需求文档: --产品原型图: --产品效果图: --行为统计分析定义文档: --测试设备(    ios3.1.3-ios5.0.1:  Android1.6-Android4.0: Winphone7.1及以上:       Symbian v3/

app功能测试知识汇总

1 APP测试基本流程 2 1.1流程图 2 1.2测试周期 3 1.3测试资源 3 1.4日报及产品上线报告 3 2 App测试点 3 2.1安全测试 3 2.1.1软件权限 3 2.1.2安装与卸载安全性 4 2.1.3数据安全性 4 2.1.4通讯安全性 5 2.1.5人机接口安全性 5 2.2安装.卸载测试 5 2.2.1安装 6 2.2.2卸载 6 2.3 UI测试 6 2.3.1导航测试 7 2.3.2图形测试 7 2.3.3内容测试 7 2.4功能测试 7 2.4.1运行 8 2.