1.创建一个新的java代码页面
展示如下
- 对testUserSignup写接口代码
数据从swagger 获取.先跑一个注册!
把方法名放在对应的XML里面,因为host是对应xml传的一个参数值.只能在xml运行看结果.include:执行 exclude :不执行
- 上面
@Test
注解放在class类的里面 我放错了 纠正一下
-
xml run一下
虽然我们跑通了.但是我们全程都是手敲的代码.这样在工作当中比较废时间.我们能不能将固定一些代码,封装起来,到时候直接引用呢?接下来的方法就是为我们解决于此.
*
*
*
* @author chenmc
* @date $date$ $time$
* @param $params$
* @return $returns$
*/
- 上面的代码 复制到方框里面
- 多行注释 (多行注释直接
/**
tab自动补全 )
2.host 字体红色了 如图 怎么去处理
warning 警告的意思
-
host红色消失了
3.同样的方式我们建立一个dopost方法,把代码都写好,到时候输入dopost 直接引用代码.重复的代码手动输入,以后就省事多了.
![image.png](https://upload-
images.jianshu.io/upload_images/13983750-5201d4625a56e45e.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
@Test
@Parameters({"host"})
public void $functionName$(String host) {
System.out.println(host);
// API为接口地址
String url = host + "$API$";
System.out.println(url);
//bodyData 请求参数
String bodyData = "$bodyData$";
//键值对 application/x-www-form-urlencoded
//json application/json
//xml application/xml
String contentType = "$contentType$";
String result = HttpClientUtil.doPost(url,contentType,bodyData);
System.out.println(result);
//assert 为预期结果
boolean actual = result.contains("$assert$");
Assert.assertEquals(actual, true);
}
- 上面的代码复制到,下面的方框里面
-
输入do 选择自己刚配置的dopost
*只需要改一下图中12345 做接口自动化测试是不是方便了很多!!
4.同样的方式建议doget
前面几部省略,具体看上面的都是一样的操作
复制下面的代码粘贴在方框里面
@Test
@Parameters({"host"})
public void $functionName$(String host){
System.out.println(host);
// API为接口地址,data为请求数据
String url = host + "$API$" + "?" +"$data$";
System.out.println(url);
//result 为响应结果
String result = HttpClientUtil.doGet(url);
System.out.println(result);
//assert 为预期结果
boolean actual = result.contains("$assert$");
Assert.assertEquals(actual, true);
}
- 输入dog选择 我们配置的deget 回车,代码直接生成.方便我们做get的请求方法做接口测试!
-
只需要改一下画方框里面的对应值就行了
5.如法炮制,正则表达式
//正则表达式
//将正则封装成一个变量 pattern 模式
String pattern = "$re1$";
Pattern r = Pattern.compile(pattern);
Matcher m = r.matcher(result);
String c = "";
if(m.find()){
String s = m.group(0);
System.out.println(s);
//正则表达式
String pattern1 = "$re2$";
Pattern r1 = Pattern.compile(pattern1);
Matcher m1 = r1.matcher(s);
if(m1.find()){
c = m1.group(0);
System.out.println(c);
}else{
System.out.println( s + " no matcher");
}
}else{
System.out.println(result + " no matcher");
}
复制到 方框里面
跳出存的代码 直接饮用 节约重复敲代码的时间
-
存的dopost doget 正则表达式代码接下来我们就能用了。
输入do 选择dopost 前面存的代码 回车
[swagger注册接口](http://qa.guoyasoft.com:8080/swagger-ui.html#/)
-
数据从swagger上面调用。接口与接口之间关联,我们要用正则表达式提取,存数据到变量池,下个接口直接用变量名直接提取
*在打印响应断言 代码后面,插入引用正则表达式代码 re
上面存好的直接引用
-
红色字体 把鼠标放在字体后面单击,alt+回车 就行了
-
选择regex:正则表达式
-
清楚前一个接口响应里的数据那个要用到下一个接口 我们这里用正则表达式提取出来。比如这里我只需要 cstId后面的值.方法为先复制 "cstId":0, 然后用
(.*?)代替里面的0
.
\\d 前面多了第一个\ 是为了在程序中转义第二个\+ 表示 1个或多个
组合起来
\\d+ 就表示多个数字,形如 12、44、6763……
\\. 匹配一个小数点
-
右键对应的xml run一下看看结果
- 完整的 注册代码 接口为 /user/signup /user/signup
public class userSignup {
public String cstId;
@Test
@Parameters({"host"})
public void testUserSignup(String host) {
System.out.println(host);
// API为接口地址
String url = host + "/user/signup";
System.out.println(url);
//bodyData 请求参数
String bodyData = "{\n"
+ " \"phone\": \"13636602339\",\n"
+ " \"pwd\": \"a123456\",\n"
+ " \"rePwd\": \"a123456\",\n"
+ " \"userName\": \"rendj71\"\n"
+ "}";
//键值对 application/x-www-form-urlencoded
//json application/json
//xml application/xml
String contentType = "application/json";
String result = HttpClientUtil.doPost(url,contentType,bodyData);
System.out.println(result);
//正则表达式
String pattern = "\"cstId\":(.*?),"; //正则提取存一个变量pattern
Pattern r = Pattern.compile(pattern); //编译存变量r
Matcher m = r.matcher(result); //匹配结果
String c = "";
if(m.find()){
String s = m.group(0);//捕获
System.out.println(s);
//正则表达式
String pattern1 = "\\d+"; //第2次提取 正则存一个变量
Pattern r1 = Pattern.compile(pattern1); //编译
Matcher m1 = r1.matcher(s); //匹配结果
if(m1.find()){
c = m1.group(0); //捕获结果
System.out.println(c);
}else{
System.out.println( s + " no matcher");
}
}else{
System.out.println(result + " no matcher");
}
cstId = c;
System.out.println(cstId);
//assert 为预期结果
boolean actual = result.contains("0000");
Assert.assertEquals(actual, true);
}
@Test
@Parameters({"host"})
public void testCstRealname(String host) {
System.out.println(host);
// API为接口地址
String url = host + "/cst/realname";
System.out.println(url);
//bodyData 请求参数
String bodyData = "{\n"
+ " \"birthday\": \"2018-10-17T07:28:41.692Z\",\n"
+ " \"certno\": \"500234198612151491\",\n"
+ " \"city\": \"重庆\",\n"
+ " \"cstId\": "+cstId+",\n"
+ " \"cstName\": \"任登君\",\n"
+ " \"email\": \"rendj1215@126.com\",\n"
+ " \"province\": \"重庆\",\n"
+ " \"sex\": 2\n"
+ "}";
//键值对 application/x-www-form-urlencoded
//json application/json
//xml application/xml
String contentType = "application/json";
String result = HttpClientUtil.doPost(url,contentType,bodyData);
System.out.println(result);
//assert 为预期结果
//正则表达式
String pattern = "\"cstId\":(.*?),";
Pattern r = Pattern.compile(pattern);
Matcher m = r.matcher(result);
String c = "";
if(m.find()){
String s = m.group(0);
System.out.println(s);
//正则表达式
String pattern1 = "\\d+";
Pattern r1 = Pattern.compile(pattern1);
Matcher m1 = r1.matcher(s);
if(m1.find()){
c = m1.group(0);
System.out.println(c);
}else{
System.out.println( s + " no matcher");
}
}else{
System.out.println(result + " no matcher");
}
cstId = c;
System.out.println(cstId);
boolean actual = result.contains("0000");
Assert.assertEquals(actual, true);
}
}
- 实名认证接口### /cst/realname
方法同上 这个接口是用的post请求方法。操作同上 后面没有关联接口 正则可以不用写。
public class testUserSignup{
public String cstId;
/**
*
*
* @author chenmc
* @date 2018/10/18 0:21
* @param [host]
* @return void
*/
/* @Test
@Parameters({"host"}) //传一个参数
public void testUserSignup(String host){
System.out.println(host);
String url = host + "/user/signup";
System.out.println(url);
String body ="{\n" +
" \"phone\": \"13636602339\",\n" +
" \"pwd\": \"a123456\",\n" +
" \"rePwd\": \"a123456\",\n" +
" \"userName\": \"rendj26\"\n" +
"}";
String content = "application/json";
String result = HttpClientUtil.doPost(url, content, body);
//打印响应
System.out.println(result);
//判断响应里面是否包含0000
boolean actual = result.contains("\"respCode\":\"0000\"");
//断言
Assert.assertEquals(actual,true);
}
*/
@Test
@Parameters({"host"})
public void testUserSignup(String host) {
System.out.println(host);
// API为接口地址
String url = host + "/user/signup";
System.out.println(url);
//bodyData 请求参数
String bodyData = "{\n" +
" \"phone\": \"13636602339\",\n" +
" \"pwd\": \"a123456\",\n" +
" \"rePwd\": \"a123456\",\n" +
" \"userName\": \"rendj18\"\n" +
"}";
//键值对 application/x-www-form-urlencoded
//json application/json
//xml application/xml
String contentType = "application/json";
String result = HttpClientUtil.doPost(url,contentType,bodyData);
System.out.println(result);
//正则表达式
String pattern = "\"cstId\":(.*?),";
Pattern r = Pattern.compile(pattern);
Matcher m = r.matcher(result);
String c = "";
if(m.find()){
String s = m.group(0);
System.out.println(s);
//正则表达式
String pattern1 = "\\d+";
Pattern r1 = Pattern.compile(pattern1);
Matcher m1 = r1.matcher(s);
if(m1.find()){
c = m1.group(0);
System.out.println(c);
}else{
System.out.println( s + " no matcher");
}
}else{
System.out.println(result + " no matcher");
}
cstId =c;
System.out.println(cstId);
//assert 为预期结果
boolean actual = result.contains("0000");
Assert.assertEquals(actual, true);
}
@Test
@Parameters({"host"})
public void testCstRealname(String host) {
System.out.println(host);
// API为接口地址
String url = host + "/cst/realname";
System.out.println(url);
//bodyData 请求参数
String bodyData = "{\n"
+ " \"birthday\": \"2018-10-20T16:37:19.013Z\",\n"
+ " \"certno\": \"500234198612151491\",\n"
+ " \"city\": \"重庆\",\n"
+ " \"cstId\": "+cstId+",\n"
+ " \"cstName\": \"任嘉\",\n"
+ " \"email\": \"rendj1215@126.com\",\n"
+ " \"province\": \"重庆\",\n"
+ " \"sex\": 2\n"
+ "}";
//键值对 application/x-www-form-urlencoded
//json application/json
//xml application/xml
String contentType = "application/json";
String result = HttpClientUtil.doPost(url,contentType,bodyData);
System.out.println(result);
//assert 为预期结果
boolean actual = result.contains("0000");
Assert.assertEquals(actual, true);
}
}