![代码测接口.jpg](https://upload-images.jianshu.io/upload_images/13983732-61b8851cd168fcf7.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
# 接口
* [以此网页为例](http://qa.guoyasoft.com:8080/swagger-ui.html)
## 新增账户接口
* 请求方法:post
* 接口地址:/account/add
* 参数格式:键值对
```
public class TestAPI {
@Test
public void testAddAccountAll() {
//正常流_添加账户_全字段正常
//请求url
String url = "http://qa.guoyasoft.com:8080/account/add";
//请求参数
String data = "accountName=renlb1211&customerName=任立波";
//使用dopost方法给服务器发送请求,注意这里(application/x-www-form-urlencoded)
String result = HttpClientUtil.doPost(url, "application/x-www-form-urlencoded", data);
//打印响应结果
System.out.println(result);
//判断响应里是否包含 "respCode": "0000"字符串
boolean actual = result.contains("\"respCode\":\"0000\"");
//断言
Assert.assertEquals(actual, true);
}
```
## 查询账户接口
* 接口地址:/account/get
* 请求方法:get
```
@Test
public void testGetAccountall(){
//正常流_查询账户_全字段正常
//url
String url ="http://qa.guoyasoft.com:8080/account/get?accountName=renlibo";
//使用doget方法给服务器发送请求
String result = HttpClientUtil.doGet(url);
//打印响应结果
System.out.println(result);
//判断响应是否包含"accountName": "renlibo"
boolean actual = result.contains("\"accountName\":\"renlibo\"");
//断言
Assert.assertEquals(actual,true);
}
```
## 充值接口
* 请求方法:post
* 接口地址:/accountBill/recharge
* 参数格式:json
```
@Test
public void testRechargeAccountall(){
//正常流_充值账户_全字段正常
//url
String url = "http://qa.guoyasoft.com:8080/accountBill/recharge";
//请求参数
String data ="{\n"
+ " \"accountName\": \"renlibo\",\n"
+ " \"busiDesc\": \"string\",\n"
+ " \"changeMoney\": 10000,\n"
+ " \"mark\": \"string\",\n"
+ " \"operator\": \"string\"\n"
+ "}";
//通过dopost方法给服务器发送请求,注意这里("application/json")
String result = HttpClientUtil.doPost(url, "application/json", data);
//打印响应结果
System.out.println(result);
//判断响应结果是否包含
boolean actual = result.contains("\"respCode\":\"0000\"");
//断言
Assert.assertEquals(actual,true);
}
```![1539316809.jpg](https://upload-images.jianshu.io/upload_images/13983732-23be14a03d92824a.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
![1539335112.jpg](https://upload-images.jianshu.io/upload_images/13983732-6723eedd40cedf98.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
# java
## 类:java代码都是以类的形式写的
1、每一个变量前要有类来声明是什么类型以及大小等等,使用一个变量,先声明类,再使用:
```
String url = "http://qa.guoyasoft.com:8080/account/add";
```
* string代表字符串类型;url代表变量名;=为赋值符,把值赋予给变量名;“”中的是值
2、类:
* boolean:布尔类型
* string: 字符串类型
* int:数字类型
* void:无返回值类型,为空类型
## 权限
* public:公有权限
* private:私有权限
* protect:安全权限
## 方法名
1、 方法的作用:可以把命令行打包
* 例如:
```
@Test
public void testAddAccountAll() {
//正常流_添加账户_全字段正常
//请求url
String url = "http://qa.guoyasoft.com:8080/account/add";
//请求参数
String data = "accountName=renlb1211&customerName=任立波";
//使用dopost方法给服务器发送请求
String result = HttpClientUtil.doPost(url, "application/x-www-form-urlencoded", data);
//打印响应结果
System.out.println(result);
//判断响应里是否包含 "respCode": "0000"字符串
boolean actual = result.contains("\"respCode\":\"0000\"");
//断言
Assert.assertEquals(actual, true);
```
* 打包后:
```
2、方法后面都要跟( ),括号的作用是用来接收数据
3、 方法命名规则:第一个单词首字母小写,后续单词的首字母都大写:“testAddAccountAll()”
4、 例子: contains:方法名,用来判断否包含;它是string字符串类型的一种方法。例如:
* 根据之前引用的代码中,result是string类型
* result.contains("任"):意思是,判断string类型的result中是否包含"任"
5、 Assert是一种类,用来做断言的
* Assert.assertEquals(A, true):意思是Assert类的assertEquals方法是用来断言"A"是否是true
## 参数
1、 位置:方法名(参数)
2、 表示方法用于的类型、个数、位置等
* 例如,dopost方法每一行都有类型、个数
![image.png](https://upload-images.jianshu.io/upload_images/13983732-90bbdf86503ccd58.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
## 使用
* 权限 返回值类型 方法名(参数列表){方法体}
## 注解和注释
### 注释
注释是给人看,例如下图,红框中都是注释
![image.png](https://upload-images.jianshu.io/upload_images/13983732-bfcad4d12a4756fc.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
### 注解
* 注解是给机器、程序看,由testNG管理,例如@Test,意思是说明这个方法是要执行的,如上图开始就有@Test
### testNT.xml
1、 作用:配置方法的执行顺序
2、 前提条件:所有待执行的方案都要加上@Test注解
3、 配置执行顺序
![执行顺序.png](https://upload-images.jianshu.io/upload_images/13983732-1503aff41f6a27df.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
4、 执行,选中testNG.xml,右键选择run
5、 查看结果
![查看结果.png](https://upload-images.jianshu.io/upload_images/13983732-3997ead2a11fb5b2.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
6、 总流程图
![合并方法作流程测试1.png](https://upload-images.jianshu.io/upload_images/13983732-c5100acf2ed95137.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
![合并方法作流程测试2.png](https://upload-images.jianshu.io/upload_images/13983732-4bfba4218e815ebc.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
![合并方法作流程测试3.png](https://upload-images.jianshu.io/upload_images/13983732-eeefd1af6320954d.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
![合并方法作流程测试4.png](https://upload-images.jianshu.io/upload_images/13983732-ed3a1568cce859b8.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
![合并方法作流程测试5.png](https://upload-images.jianshu.io/upload_images/13983732-69200da78a6682c1.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
# 延伸
* idea连接数据库
![连接数据库.jpg](https://upload-images.jianshu.io/upload_images/13983732-a3370ff4fd6c4dfc.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
![连接数据库2.jpg](https://upload-images.jianshu.io/upload_images/13983732-19fb0fae0be77909.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
* idea连接服务器,看日志
![idea链接服务器1.png](https://upload-images.jianshu.io/upload_images/13983732-8c3e0be5ba63e6c1.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
![idea链接服务器2.png](https://upload-images.jianshu.io/upload_images/13983732-1d06d3d5b574cf43.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)