美文网首页Java web
第五节 测试框架HttpClient(二)

第五节 测试框架HttpClient(二)

作者: 我吃小虾米 | 来源:发表于2019-11-06 23:01 被阅读0次

    HttpClient基本介绍

    HttpClient官方网站:hc.apache.org
    HttpClient中文网站:http://www.httpclient.cn/
    中文网站内涵httpclent介绍、用法、面试题等
    HttpClien4.5中文教程:https://blog.csdn.net/u011179993/article/category/9264255 很感谢作者的翻译
    HttpClien4.5英文教程:http://www.httpclient.cn/httpclient-tutorial.pdf

    学习的视频比较老,好多方法都被弃用了,学习起来就是一步一个坎,还是慢慢来,研究一个问题网上查资料好久。主要也不是正经开发,代码能力真的是有限。。。加油吧!!

    基础

    历史

    HttpClient 是Apache Jakarta Common 下的子项目,可以用来提供高效的、最新的、功能丰富的支持 HTTP 协议的客户端编程工具包,并且它支持 HTTP 协议最新的版本和建议。

    而今,Commons HttpClient项目现在已经寿终正寝,不再开发和维护。取而代之的是Apache Httpcomponents项目,它包括HttpClient和HttpCore两大模块,能提供更好的性能和更大的灵活性。

    使用方法

    使用HttpClient发送请求、接收响应很简单,一般需要如下几步即可。

    1. 创建HttpClient对象。

    2. 创建请求方法的实例,并指定请求URL。如果需要发送GET请求,创建HttpGet对象;如果需要发送POST请求,创建HttpPost对象。

    3. 如果需要发送请求参数,可调用HttpGet、HttpPost共同的setParams(HttpParams params)方法来添加请求参数;对于HttpPost对象而言,也可调用setEntity(HttpEntity entity)方法来设置请求参数。

    4. 调用HttpClient对象的execute(HttpUriRequest request)发送请求,该方法返回一个HttpResponse。

    5. 调用HttpResponse的getAllHeaders()、getHeaders(String name)等方法可获取服务器的响应头;调用HttpResponse的getEntity()方法可获取HttpEntity对象,该对象包装了服务器的响应内容。程序可通过该对象获取服务器的响应内容。

    6. 释放连接。无论执行方法是否成功,都必须释放连接

    原文链接:https://blog.csdn.net/w372426096/article/details/82713315

    Http常见请求类型

    1、GET请求会向数据库发索取数据的请求,从而来获取信息,该请求就像数据库的select操作一样,只是用来查询一下数据,不会修改、增加数据,不会影响资源的内容,即该请求不会产生副作用。无论进行多少次操作,结果都是一样的。

    2、与GET不同的是,PUT请求是向服务器端发送数据的,从而改变信息,该请求就像数据库的update操作一样,用来修改数据的内容,但是不会增加数据的种类等,也就是说无论进行多少次PUT操作,其结果并没有不同。

    3、POST请求同PUT请求类似,都是向服务器端发送数据的,但是该请求会改变数据的种类等资源,就像数据库的insert操作一样,会创建新的内容。几乎目前所有的提交操作都是用POST请求的。

    4、DELETE请求顾名思义,就是用来删除某一个资源的,该请求就像数据库的delete操作。

    创建MAVEN依赖

            <dependency>
                <groupId>org.apache.httpcomponents</groupId>
                <artifactId>httpclient</artifactId>
                <version>4.5.1</version>
            </dependency>
    

    了解基本用法

    //        打开浏览器
           CloseableHttpClient httpClient=HttpClients.createDefault();
    //        声明get请求
            HttpGet httpGet=new HttpGet("http://www.baidu.com");
    //        发送GET请求
            CloseableHttpResponse response=httpClient.execute(httpGet);
            try {
                <......>
            }finally {
                response.close();
            }
    

    构建HTTP请求

    方法一

     HttpGet httpGet=new HttpGet("http://www.baidu.com");
    

    方法一

            URI uri = new URIBuilder()
                    .setScheme("http")
                    .setHost("www.baidu.com")
                    .setPath("/f")
                    .setParameter("kw", "国产动画")
                    .build();
           HttpGet httpGet=new HttpGet(uri);
    

    GET请求

            //1.打开浏览器
            CloseableHttpClient httpClient = HttpClients.createDefault();
            //2.声明get请求
            HttpGet httpGet = new HttpGet("http://www.baidu.com/s?wd=java");
            //3.发送请求
            CloseableHttpResponse response = httpClient.execute(httpGet);
            //4.判断状态码
            if(response.getStatusLine().getStatusCode()==200){
                HttpEntity entity = response.getEntity();
               //使用工具类EntityUtils,从响应中取出实体表示的内容并转换成字符串
                String string = EntityUtils.toString(entity, "utf-8");
                System.out.println(string);
            }
            //5.关闭资源
            response.close();
            httpClient.close();
    

    获取cookie

     HttpClientContext content = HttpClientContext.create();
            CloseableHttpResponse response=httpClient.execute(httpget,content);
            if (response.getStatusLine().getStatusCode()==200){
                HttpEntity entity=response.getEntity();
                String string= EntityUtils.toString(entity,"utf-8");
    
    //            获取cookies
                CookieStore cookieStore=content.getCookieStore();
                List<Cookie> cookieList = cookieStore.getCookies();
                for (Cookie cookie:cookieList){
                    String name=cookie.getName();
                    String value = cookie.getValue();
                    System.out.println("cookie name:"+name+";cookie value:"+value);
    
                }
    

    入参带有cookie

            CloseableHttpClient client=HttpClients.createDefault();
            HttpClientContext context=HttpClientContext.create();
            context.setCookieStore(this.cookieStore);
            CloseableHttpResponse response=client.execute(httpGet,context);
    

    将请求到的cookie携带访问get请求

    第一步、在resources下创建一个properties文件,文件内写入请求域名和路径



    第二步 、创建JSON文件模拟请求

    [
      {
        "description": "这是一个响应带有cookie的请求",
        "request": {
          "uri": "/getcookies",
          "method": "get"
        },
        "response": {
          "status": "200",
          "text": "获取cookies成功",
          "cookies": {
            "login": "true"
          },
          "headers": {
            "Content-Type": "text/html;charset=gbk"
          }
        }
      },
    
      {
        "description": "这是一个请求带有cookie的请求",
        "request": {
          "uri": "/getrequestcookies",
          "method": "get",
          "cookies": {
            "login": "true"
          }
        },
        "response": {
          "status": "200",
          "text": "传入获取cookies成功",
          "headers": {
            "Content-Type": "text/html;charset=gbk"
          }
        }
      }
    ]
    

    第三步、创建TESTNG类,完成cookie的获取与携带cookies入参

      private String urL;
        private ResourceBundle bundle;
        private CookieStore cookieStore;
    
        @BeforeTest
        public void  beforeTest(){
            bundle=ResourceBundle.getBundle("application", Locale.CHINA);
            urL=bundle.getString("test.url");
        }
    
        @Test
        public void getCookiesTest() throws Exception{
            CloseableHttpClient httpClient= HttpClients.createDefault();
    //        声明get请求
            HttpGet httpget=new HttpGet(this.urL+bundle.getString("test.getCookies.uri"));
    //        发送get请求
            HttpClientContext content = HttpClientContext.create();
            CloseableHttpResponse response=httpClient.execute(httpget,content);
            if (response.getStatusLine().getStatusCode()==200){
                HttpEntity entity=response.getEntity();
                String string= EntityUtils.toString(entity,"utf-8");
    
    //            获取cookies
                 this.cookieStore=content.getCookieStore();
                List<Cookie> cookieList = cookieStore.getCookies();
                for (Cookie cookie:cookieList){
                    String name=cookie.getName();
                    String value = cookie.getValue();
                    System.out.println("cookie name:"+name+";cookie value:"+value);
    
                }
    
    
            }
    
            response.close();
            httpClient.close();
    
        }
    
        @Test(dependsOnMethods = {"getCookiesTest"})
        public void getRequestCookieTest() throws IOException {
            HttpGet httpGet=new HttpGet(this.urL+bundle.getString("test.getRequestCookis.uri"));
            CloseableHttpClient client=HttpClients.createDefault();
            HttpClientContext context=HttpClientContext.create();
            context.setCookieStore(this.cookieStore);
            CloseableHttpResponse response=client.execute(httpGet,context);
            if (response.getStatusLine().getStatusCode()==200) {
                HttpEntity entity=response.getEntity();
                String str=EntityUtils.toString(entity, "utf-8");
                System.out.println(str);
            }
            response.close();
            client.close();
    
        }
    

    第四步 、利用Mock启动JSON文件
    第五步、执行如上类,执行结果如下


    相关文章

      网友评论

        本文标题:第五节 测试框架HttpClient(二)

        本文链接:https://www.haomeiwen.com/subject/lgrbmctx.html