http请求测试实例(采用fastjson解析)

        在实际开发中,我们经常会去做http请求的开发,下面则是如何请求的单元测试小实例,仅供参考。

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

import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.NameValuePair;
import org.apache.commons.httpclient.methods.GetMethod;
import org.apache.commons.httpclient.methods.PostMethod;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;

import com.alibaba.fastjson.JSONObject;

public class TTest {
    
    private String serverURL = "http://serviceAddress/system";
    private String address = "/address/queryInfo";
    private String username = "lisi";
    private String password = "123";

    @Before
    public void setUp() throws Exception {
    }
    
    @Test
    public void queryInfo_test() throws Exception {
        Map<String, Object> paramMap = new HashMap<String, Object>();
        paramMap.put("queryName", "张三");
        paramMap.put("age", 30);
        String paramJson = JSONObject.toJSONString(paramMap);
        String result = httpConnectionWithAuth(serverURL, address, paramJson, username, password);
        //String result = httpConnectionWithNoAuth(serverURL, address, paramJson);
        JSONObject object = JSONObject.parseObject(result);
        Assert.assertEquals(object.get("result"), true);
    }
    
    /**
     * 带认证的请求
     */
    private String httpConnectionWithAuth(String url, String addr, String json, String un, String pw) throws Exception {
        System.out.println("请求参数:\r\n" + json);
        System.out.println("请求地址:" + url + addr);
        HttpClient client = new HttpClient();
        PostMethod postMethod = new PostMethod(url + "//j_security_check");

        NameValuePair[] param = { new NameValuePair("j_username", un), new NameValuePair("j_password", pw),
                new NameValuePair("SMAUTHREASON", "0") };

        postMethod.setRequestBody(param);
        client.executeMethod(postMethod);
        postMethod.releaseConnection();

        GetMethod method = new GetMethod(url + "/do/LoginController/login");
        client.executeMethod(method);

        long s = System.currentTimeMillis();
        postMethod = new PostMethod(url + addr);
        postMethod.setRequestBody(json);
        postMethod.addRequestHeader("Content-Type", "application/json;charset=UTF-8");
        client.executeMethod(postMethod);
        long t = System.currentTimeMillis();
        String result = postMethod.getResponseBodyAsString();
        System.out.println("执行时长:" + (t - s) + "ms");
        System.out.println("返回结果:" + JSONObject.parseObject(result));
        postMethod.releaseConnection();
        return result;
    }
    
    /**
     * 无需认证的请求
     */
    private String httpConnectionWithNoAuth(String url, String addr, String json) throws Exception {
        System.out.println("请求参数:\r\n" + json);
        System.out.println("请求地址:" + url + addr);
        HttpClient client = new HttpClient();

        long s = System.currentTimeMillis();
        PostMethod postMethod = new PostMethod(url + addr);
        postMethod.setRequestBody(json);
        postMethod.addRequestHeader("Content-Type", "application/json;charset=UTF-8");
        client.executeMethod(postMethod);
        long t = System.currentTimeMillis();
        String result = postMethod.getResponseBodyAsString();
        System.out.println("执行时长:" + (t - s) + "ms");
        System.out.println("返回结果:" + JSONObject.parseObject(result));
        postMethod.releaseConnection();
        return result;
    }
}

 

PS:依赖jar包见附件。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值