1. 程式人生 > >測試框架httpclent 4.HttpClient Post方法實現

測試框架httpclent 4.HttpClient Post方法實現

dal div 獲取 import pri 頭信息 結果 content color

startupWithCookies.json

[
  {
    "description":"這是一個會返回cookies信息的get請求",
    "request":{
      "uri":"/getCookies",
      "method":"get"

    },
    "response":{
      "cookies":{
        "login":"true"
      },
      "text":"恭喜獲得cookies信息成功"
    }

  },

  {
    "description":"這是一個帶cookies的請求",
    "request":{
      
"uri":"/get/with/cookies", "method":"get", "cookies":{ "login":"true" } }, "response":{ "text":"這是一個需要攜帶cookies信息才能訪問的get請求" } }, { "description":"這是一個帶cookies的post請求", "request":{ "uri":"/post/with/cookies", "method":"post", "cookies":{
"login":"true" }, "json":{ "name":"huhanshan", "age":"18" } }, "response":{ "status":200, "json":{ "huhanshan":"success", "status":"1" } } } ]

新建一個 MyCookiesForPost.java 類

package com.course.httpclient.cookies;

import
org.apache.http.HttpResponse; import org.apache.http.client.CookieStore; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; import org.apache.http.cookie.Cookie; import org.apache.http.entity.StringEntity; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.util.EntityUtils; import org.json.JSONObject; import org.testng.Assert; import org.testng.annotations.BeforeTest; import org.testng.annotations.Test; import java.io.IOException; import java.util.List; import java.util.Locale; import java.util.ResourceBundle; public class MyCookiesForPost { private String url; private ResourceBundle bundle; //用來存儲cookies信息的變量 private CookieStore store; @BeforeTest public void beforeTest(){ bundle = ResourceBundle.getBundle("application",Locale.CHINA); url = bundle.getString("test.url"); } @Test public void testGetGookies() throws IOException { String result; String uri = bundle.getString("getCookies.uri"); HttpGet get = new HttpGet(this.url + uri); DefaultHttpClient client = new DefaultHttpClient(); HttpResponse response = client.execute(get); result = EntityUtils.toString(response.getEntity(),"utf-8"); System.out.println(result); //獲取cookies的信息,因為cookie裏面不只是一個,他是一個cookie類型的list store = client.getCookieStore(); List<Cookie> cookieList = store.getCookies(); for(Cookie cookie : cookieList){ String name = cookie.getName(); String value = cookie.getValue(); System.out.println("name = "+name+",value = "+value); } } @Test(dependsOnMethods = "testGetGookies") public void testPostMethod() throws IOException { String uri = bundle.getString("test.post.with.cookies"); //拼接最終的地址 String testUrl = url+uri; //聲明一個方法post HttpPost post = new HttpPost(testUrl); //聲明一個Client對象 DefaultHttpClient client = new DefaultHttpClient(); //添加參數 JSONObject param = new JSONObject(); param.put("name","huhanshan"); param.put("age","18"); //設置請求頭信息 header post.setHeader("content-type","application/json"); //將參數信息添加到方法中 StringEntity entity = new StringEntity(param.toString(),"utf-8"); post.setEntity(entity); //聲明一個對象來進行響應結果的存儲 String result; //設置cookies信息 client.setCookieStore(store); //執行post方法 HttpResponse response = client.execute(post); //獲取響應狀態碼 int statusCode = response.getStatusLine().getStatusCode(); if(statusCode==200){ //獲取響應結果 result = EntityUtils.toString(response.getEntity(),"uft-8"); //將返回的響應結果字符串轉化為json對象 JSONObject resultJson = new JSONObject(result); //判斷返回結果的值 String status = resultJson.getString("status"); String success = resultJson.getString("huhanshan"); Assert.assertEquals("1",status,"status的類型是"+status.getClass()); Assert.assertEquals("success",success); System.out.println(result); } } }

首先在terminal運行命令: java -jar ./moco-runner-0.12.0-standalone.jar http -p 8888 -c startupWithCookies.json

測試框架httpclent 4.HttpClient Post方法實現