博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java的post请求-----接口测试
阅读量:5371 次
发布时间:2019-06-15

本文共 4058 字,大约阅读时间需要 13 分钟。

本次主要是对登陆的接口测试post请求,希望记录在博客里面,一点一点的成长。

package com.ju.Login;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import java.io.OutputStream;import java.net.HttpURLConnection;import java.net.MalformedURLException;import java.net.URL;import java.util.HashMap;public class URLConnection {		public static String  GetResponse(String Info) throws IOException	{		String path = "http://192.1#.10.42:#/web_shiro_oracle/login.do";                  //1, 得到URL对象          URL url = new URL(path);                    //2, 打开连接          HttpURLConnection conn = (HttpURLConnection) url.openConnection();                    //3, 设置提交类型          conn.setRequestMethod("POST");                    //4, 设置允许写出数据,默认是不允许 false          conn.setDoOutput(true);          conn.setDoInput(true);//当前的连接可以从服务器读取内容, 默认是true                    //5, 获取向服务器写出数据的流          OutputStream os = conn.getOutputStream();          //参数是键值队  , 不以"?"开始          os.write(Info.getBytes());          //os.write("googleTokenKey=&username=admin&password=5df5c29ae86331e1b5b526ad90d767e4".getBytes());          os.flush();         //6, 获取响应的数据         //得到服务器写回的响应数据          BufferedReader br=new BufferedReader(new InputStreamReader(conn.getInputStream(),"utf-8"));        String str = br.readLine();            System.out.println("响应内容为:  " + str);                      return  str;	}}

  

package com.ju.Test;import java.io.IOException;import org.testng.Assert;import org.testng.Reporter;import org.testng.annotations.Test;import com.ju.Login.URLConnection;public class LoginTest {		String userName;	String Pwd;	String googleTokenKey;	URLConnection get=new URLConnection();	@Test(groups = { "BaseCase"})	public void Login_succ() throws IOException{			//googleTokenKey=null;		//userName="admin";		//Pwd="5df5c29ae86331e1b5b526ad90d767e4";		String Info="googleTokenKey"+"="+""+"&"+"username"+"="+"admin"+"&"+"password"+"="+"5df5c29ae86331e1b5b526ad90d767e4";		Reporter.log(get.GetResponse(Info));		Reporter.log(Info);		/*Reporter.log("【正常用例】:获取"+exp_city+"天气成功!");		httpResult=weather.getHttpRespone(cityCode);		Reporter.log("请求地址: "+weather.geturl());		Reporter.log("返回结果: "+httpResult);		weatherinfo=Common.getJsonValue(httpResult, "weatherinfo");		city=Common.getJsonValue(weatherinfo, "city");		Reporter.log("用例结果: resultCode=>expected: " + exp_city + " ,actual: "+ city);		Assert.assertEquals(city,exp_city);*/	}	@Test(groups = { "BaseCase"})	public void username_fail() throws IOException{				//googleTokenKey=null;		//userName="admin";		//Pwd="5df5c29ae86331e1b5b526ad90d767e4";		String Info="googleTokenKey"+"="+""+"&"+"username"+"="+"admin1"+"&"+"password"+"="+"5df5c29ae86331e1b5b526ad90d767e4";		Reporter.log(get.GetResponse(Info));		Reporter.log(Info);		/*Reporter.log("【正常用例】:获取"+exp_city+"天气成功!");		httpResult=weather.getHttpRespone(cityCode);		Reporter.log("请求地址: "+weather.geturl());		Reporter.log("返回结果: "+httpResult);		weatherinfo=Common.getJsonValue(httpResult, "weatherinfo");		city=Common.getJsonValue(weatherinfo, "city");		Reporter.log("用例结果: resultCode=>expected: " + exp_city + " ,actual: "+ city);		Assert.assertEquals(city,exp_city);*/	}	@Test(groups = { "BaseCase"})	public void pwd_fail() throws IOException{				//googleTokenKey=null;		//userName="admin";		//Pwd="5df5c29ae86331e1b5b526ad90d767e4";		String Info="googleTokenKey"+"="+""+"&"+"username"+"="+"admin"+"&"+"password"+"="+"5df5c29ae86331e1b5b526ad90d767e";		Reporter.log(get.GetResponse(Info));		Reporter.log(Info);		/*Reporter.log("【正常用例】:获取"+exp_city+"天气成功!");		httpResult=weather.getHttpRespone(cityCode);		Reporter.log("请求地址: "+weather.geturl());		Reporter.log("返回结果: "+httpResult);		weatherinfo=Common.getJsonValue(httpResult, "weatherinfo");		city=Common.getJsonValue(weatherinfo, "city");		Reporter.log("用例结果: resultCode=>expected: " + exp_city + " ,actual: "+ city);		Assert.assertEquals(city,exp_city);*/	}	}

  

 然后以TestNG运行loginTest,接着去项目保存的路径下面找到下面箭头标识的文件夹,点击index.html,就可以看到详细的log

 

转载于:https://www.cnblogs.com/wangxiaoqun/p/6721439.html

你可能感兴趣的文章
POJ1062 昂贵的聘礼
查看>>
【零基础学习iOS开发】【02-C语言】08-基本运算
查看>>
Java 将指定字符串连接到此字符串的结尾 concat()
查看>>
Hibernate Criterion
查看>>
Python知识
查看>>
我们为什么要搞长沙.NET技术社区(三)
查看>>
杭电acm Cake
查看>>
js函数中this的指向
查看>>
c++ 引用方式传递数组
查看>>
HBase学习之路 (九)HBase phoenix的使用
查看>>
LeetCode() Remove Duplicates from Sorted Array II
查看>>
【svn】idea svn 文件上会出现一个破书
查看>>
cocos2d-x 3.0 场景切换特效汇总(转)
查看>>
The SortedMap Interface
查看>>
SniperOJ-leak-x86-64
查看>>
bzoj 4260: Codechef REBXOR (01 Trie)
查看>>
学好python
查看>>
css-IE中的border-radius和box-shadow
查看>>
利用bootstrap和webform的异步CRUD及分页
查看>>
Saiku资源帖
查看>>