Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oto
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
龚小红
oto
Commits
a122828c
Commit
a122828c
authored
Jan 26, 2022
by
龚小红
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'Feature/20220114/gxh' into 'master'
fix See merge request test-group/kejiji!218
parents
0a327272
1882fd75
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
273 additions
and
273 deletions
+273
-273
Cashback.java
src/test/java/com/kjj/cases/assistant/pay/Cashback.java
+273
-273
No files found.
src/test/java/com/kjj/cases/assistant/pay/Cashback.java
View file @
a122828c
...
@@ -65,280 +65,280 @@ public class Cashback implements Authorization {
...
@@ -65,280 +65,280 @@ public class Cashback implements Authorization {
public
void
默认付费
_
一级用户邀请付费页
()
{
public
void
默认付费
_
一级用户邀请付费页
()
{
//代理人续费状态
//代理人续费状态
Map
<
String
,
Object
>
payParams
=
new
HashMap
<
String
,
Object
>();
Map
<
String
,
Object
>
payParams
=
new
HashMap
<
String
,
Object
>();
//
payParams.put("entryDiscountType",1); //入口折扣类型,1-普通,3-邀请,4-优惠码
payParams
.
put
(
"entryDiscountType"
,
1
);
//入口折扣类型,1-普通,3-邀请,4-优惠码
//
Response response = network.getResponse(PAY_info);
Response
response
=
network
.
getResponse
(
PAY_info
);
//
int discountType = response.jsonPath().getInt("data.discountType");
int
discountType
=
response
.
jsonPath
().
getInt
(
"data.discountType"
);
//
String superiorName = response.jsonPath().getString("data.invitation.superiorName");
String
superiorName
=
response
.
jsonPath
().
getString
(
"data.invitation.superiorName"
);
//
int preferentialPrice = response.jsonPath().getInt("data.preferentialPrice");
int
preferentialPrice
=
response
.
jsonPath
().
getInt
(
"data.preferentialPrice"
);
//
Assert.assertEquals(discountType,3,network.message(PAY_info,"非邀请付费逻辑",response.body().asString()));
Assert
.
assertEquals
(
discountType
,
3
,
network
.
message
(
PAY_info
,
"非邀请付费逻辑"
,
response
.
body
().
asString
()));
//
Assert.assertEquals(superiorName,"吉吉",network.message(PAY_info,"上级不是吉吉",response.body().asString()));
Assert
.
assertEquals
(
superiorName
,
"吉吉"
,
network
.
message
(
PAY_info
,
"上级不是吉吉"
,
response
.
body
().
asString
()));
//
Assert.assertEquals(preferentialPrice,3,network.message(PAY_info,"邀请价格非0.03",response.body().asString()));
Assert
.
assertEquals
(
preferentialPrice
,
3
,
network
.
message
(
PAY_info
,
"邀请价格非0.03"
,
response
.
body
().
asString
()));
}
}
//
@Test(description = "邀请的待支付好友列表",priority = 3)
@Test
(
description
=
"邀请的待支付好友列表"
,
priority
=
3
)
//
public void 邀请的待支付好友列表() {
public
void
邀请的待支付好友列表
()
{
//
agentTku();
agentTku
();
//
Map<String, Object> Params = new HashMap<String, Object>();
Map
<
String
,
Object
>
Params
=
new
HashMap
<
String
,
Object
>();
//
Params.put("distributionListType",1);
Params
.
put
(
"distributionListType"
,
1
);
//
Params.put("pageIndex",1);
Params
.
put
(
"pageIndex"
,
1
);
//
Params.put("pageSize",10);
Params
.
put
(
"pageSize"
,
10
);
//
Response response = network.getResponse(Params,PAY_distributionList);
Response
response
=
network
.
getResponse
(
Params
,
PAY_distributionList
);
//
Object list=response.jsonPath().getJsonObject("data.list");
Object
list
=
response
.
jsonPath
().
getJsonObject
(
"data.list"
);
//
String nickname=response.jsonPath().getString("data.list.get(0).nickname");
String
nickname
=
response
.
jsonPath
().
getString
(
"data.list.get(0).nickname"
);
//
Assert.assertNotNull(list,network.message(PAY_distributionList,"待付款好友列表为null",response.body().asString()));
Assert
.
assertNotNull
(
list
,
network
.
message
(
PAY_distributionList
,
"待付款好友列表为null"
,
response
.
body
().
asString
()));
//
}
}
//
//
@Test (description = "返现用户付费_一级用户下单并支付成功",priority = 4)
@Test
(
description
=
"返现用户付费_一级用户下单并支付成功"
,
priority
=
4
)
//
public void 返现用户付费_一级用户下单并支付成功() {
public
void
返现用户付费
_
一级用户下单并支付成功
()
{
//
newUser1();
newUser1
();
//
//创建支付
//创建支付
//
Map<String, Object> params = new HashMap<String, Object>();
Map
<
String
,
Object
>
params
=
new
HashMap
<
String
,
Object
>();
//
params.put("entryDiscountType",1);
params
.
put
(
"entryDiscountType"
,
1
);
//
params.put("discountType",3); //实际折扣类型,1-普通,2-续费,3-邀请,4-优惠码
params
.
put
(
"discountType"
,
3
);
//实际折扣类型,1-普通,2-续费,3-邀请,4-优惠码
//
params.put("paySource","2");
params
.
put
(
"paySource"
,
"2"
);
//
Response response = network.postResponse(params,PAY_create);
Response
response
=
network
.
postResponse
(
params
,
PAY_create
);
//
tradeNo = response.jsonPath().getString("data.tradeNo");
tradeNo
=
response
.
jsonPath
().
getString
(
"data.tradeNo"
);
//
Assert.assertNotNull(tradeNo,network.message(params, PAY_create,"拉起支付:拉起微信支付失败",response.body().asString())); //判断订单号是否为空
Assert
.
assertNotNull
(
tradeNo
,
network
.
message
(
params
,
PAY_create
,
"拉起支付:拉起微信支付失败"
,
response
.
body
().
asString
()));
//判断订单号是否为空
//
//
params.clear();
params
.
clear
();
//
int data = 2;
int
data
=
2
;
//
int i = 0;
int
i
=
0
;
//
try {
try
{
//
// 轮训下单接口
// 轮训下单接口
//
while (data == 2){
while
(
data
==
2
){
//
sleep(2000);
sleep
(
2000
);
//
//
params.put("tradeNo",tradeNo);
params
.
put
(
"tradeNo"
,
tradeNo
);
//
response = network.getResponse(params,PAY_result);
response
=
network
.
getResponse
(
params
,
PAY_result
);
//
data = response.jsonPath().getInt("data");//1-待付款,2-付款中,3-付款成功,4-付款失败,5-取消支付,6-支付异常
data
=
response
.
jsonPath
().
getInt
(
"data"
);
//1-待付款,2-付款中,3-付款成功,4-付款失败,5-取消支付,6-支付异常
//
i++;
i
++;
//
if (i == 10){
if
(
i
==
10
){
//
Assert.fail(network.message(params, BasicConfig.MOBILE_secondKill_goodsOrderResult, "轮训支付结果超过10次", response.body().asString()));
Assert
.
fail
(
network
.
message
(
params
,
BasicConfig
.
MOBILE_secondKill_goodsOrderResult
,
"轮训支付结果超过10次"
,
response
.
body
().
asString
()));
//
break;
break
;
//
}
}
//
}
}
//
}catch (Exception e){
}
catch
(
Exception
e
){
//
e.printStackTrace();
e
.
printStackTrace
();
//
Assert.fail(network.message(params, BasicConfig.MOBILE_secondKill_goodsOrderResult, "获取数据失败", response.body().asString()));
Assert
.
fail
(
network
.
message
(
params
,
BasicConfig
.
MOBILE_secondKill_goodsOrderResult
,
"获取数据失败"
,
response
.
body
().
asString
()));
//
}
}
//
Assert.assertEquals(data,3,network.message(USER_INFO,"支付失败",response.body().asString()));
Assert
.
assertEquals
(
data
,
3
,
network
.
message
(
USER_INFO
,
"支付失败"
,
response
.
body
().
asString
()));
//
// 检查会员开通结果
// 检查会员开通结果
//
response = network.getResponse(USER_INFO);
response
=
network
.
getResponse
(
USER_INFO
);
//
boolean isVip = response.jsonPath().getBoolean("data.vipValid");
boolean
isVip
=
response
.
jsonPath
().
getBoolean
(
"data.vipValid"
);
//
Assert.assertTrue(isVip,network.message(USER_INFO,"微信支付成功,但是接口返回还是非会员状态",response.body().asString()));
Assert
.
assertTrue
(
isVip
,
network
.
message
(
USER_INFO
,
"微信支付成功,但是接口返回还是非会员状态"
,
response
.
body
().
asString
()));
//
//
}
}
//
//
//
@Test (description = "默认付费_续费页",priority = 5) //priority 方法执行优先级
@Test
(
description
=
"默认付费_续费页"
,
priority
=
5
)
//priority 方法执行优先级
//
public void 默认付费_续费页() {
public
void
默认付费
_
续费页
()
{
//
sleep(2000);
sleep
(
2000
);
//
//代理人续费状态
//代理人续费状态
//
Map<String, Object> payParams = new HashMap<String, Object>();
Map
<
String
,
Object
>
payParams
=
new
HashMap
<
String
,
Object
>();
//
payParams.put("entryDiscountType",1); //入口折扣类型,1-普通,3-邀请,4-优惠码
payParams
.
put
(
"entryDiscountType"
,
1
);
//入口折扣类型,1-普通,3-邀请,4-优惠码
//
Response response = network.getResponse(PAY_info);
Response
response
=
network
.
getResponse
(
PAY_info
);
//
int discountType = response.jsonPath().getInt("data.discountType");
int
discountType
=
response
.
jsonPath
().
getInt
(
"data.discountType"
);
//
int validity = response.jsonPath().getInt("data.validity");
int
validity
=
response
.
jsonPath
().
getInt
(
"data.validity"
);
//
int preferentialPrice = response.jsonPath().getInt("data.preferentialPrice");
int
preferentialPrice
=
response
.
jsonPath
().
getInt
(
"data.preferentialPrice"
);
//
Assert.assertEquals(discountType,2,network.message(PAY_info,"非续费逻辑",response.body().asString()));
Assert
.
assertEquals
(
discountType
,
2
,
network
.
message
(
PAY_info
,
"非续费逻辑"
,
response
.
body
().
asString
()));
//
Assert.assertEquals(validity,12,network.message(PAY_info,"增加会员时长非12个月",response.body().asString()));
Assert
.
assertEquals
(
validity
,
12
,
network
.
message
(
PAY_info
,
"增加会员时长非12个月"
,
response
.
body
().
asString
()));
//
Assert.assertEquals(preferentialPrice,2,network.message(PAY_info,"续费价格非0.02",response.body().asString()));
Assert
.
assertEquals
(
preferentialPrice
,
2
,
network
.
message
(
PAY_info
,
"续费价格非0.02"
,
response
.
body
().
asString
()));
//
//
//会员类型版本判断
//会员类型版本判断
//
Map<String, Object> params = new HashMap<String, Object>();
Map
<
String
,
Object
>
params
=
new
HashMap
<
String
,
Object
>();
//
params.put("t",System.currentTimeMillis());
params
.
put
(
"t"
,
System
.
currentTimeMillis
());
//
response = network.getResponse(params, version_info);
response
=
network
.
getResponse
(
params
,
version_info
);
//
int userVersion = response.jsonPath().getInt("data.find {it.openType == 1}.userVersion"); // 找出开启状态的版本类型 1为通用版 2为保险版
int
userVersion
=
response
.
jsonPath
().
getInt
(
"data.find {it.openType == 1}.userVersion"
);
// 找出开启状态的版本类型 1为通用版 2为保险版
//
Assert.assertEquals(userVersion,2,network.message(params, version_info,"会员类型版本判断:判断错误,此版本为通用版",response.body().asString()));
Assert
.
assertEquals
(
userVersion
,
2
,
network
.
message
(
params
,
version_info
,
"会员类型版本判断:判断错误,此版本为通用版"
,
response
.
body
().
asString
()));
//
}
}
//
//
@Test (description = "返现用户付费_一级用户续费并支付成功",priority = 6)
@Test
(
description
=
"返现用户付费_一级用户续费并支付成功"
,
priority
=
6
)
//
public void 返现用户付费_一级用户续费并支付成功() {
public
void
返现用户付费
_
一级用户续费并支付成功
()
{
//
//创建支付
//创建支付
//
Map<String, Object> params = new HashMap<String, Object>();
Map
<
String
,
Object
>
params
=
new
HashMap
<
String
,
Object
>();
//
params.put("entryDiscountType",1);
params
.
put
(
"entryDiscountType"
,
1
);
//
params.put("discountType",2); //实际折扣类型,1-普通,2-续费,3-邀请,4-优惠码
params
.
put
(
"discountType"
,
2
);
//实际折扣类型,1-普通,2-续费,3-邀请,4-优惠码
//
params.put("paySource","2");
params
.
put
(
"paySource"
,
"2"
);
//
Response response = network.postResponse(params,PAY_create);
Response
response
=
network
.
postResponse
(
params
,
PAY_create
);
//
tradeNo = response.jsonPath().getString("data.tradeNo");
tradeNo
=
response
.
jsonPath
().
getString
(
"data.tradeNo"
);
//
Assert.assertNotNull(tradeNo,network.message(params, PAY_create,"拉起支付:拉起微信支付失败",response.body().asString())); //判断订单号是否为空
Assert
.
assertNotNull
(
tradeNo
,
network
.
message
(
params
,
PAY_create
,
"拉起支付:拉起微信支付失败"
,
response
.
body
().
asString
()));
//判断订单号是否为空
//
//
params.clear();
params
.
clear
();
//
int data = 2;
int
data
=
2
;
//
int i = 0;
int
i
=
0
;
//
try {
try
{
//
// 轮训下单接口
// 轮训下单接口
//
while (data == 2){
while
(
data
==
2
){
//
sleep(2000);
sleep
(
2000
);
//
//
params.put("tradeNo",tradeNo);
params
.
put
(
"tradeNo"
,
tradeNo
);
//
response = network.getResponse(params,PAY_result);
response
=
network
.
getResponse
(
params
,
PAY_result
);
//
data = response.jsonPath().getInt("data");//1-待付款,2-付款中,3-付款成功,4-付款失败,5-取消支付,6-支付异常
data
=
response
.
jsonPath
().
getInt
(
"data"
);
//1-待付款,2-付款中,3-付款成功,4-付款失败,5-取消支付,6-支付异常
//
i++;
i
++;
//
if (i == 10){
if
(
i
==
10
){
//
Assert.fail(network.message(params, BasicConfig.MOBILE_secondKill_goodsOrderResult, "轮训支付结果超过10次", response.body().asString()));
Assert
.
fail
(
network
.
message
(
params
,
BasicConfig
.
MOBILE_secondKill_goodsOrderResult
,
"轮训支付结果超过10次"
,
response
.
body
().
asString
()));
//
break;
break
;
//
}
}
//
}
}
//
}catch (Exception e){
}
catch
(
Exception
e
){
//
e.printStackTrace();
e
.
printStackTrace
();
//
Assert.fail(network.message(params, BasicConfig.MOBILE_secondKill_goodsOrderResult, "获取数据失败", response.body().asString()));
Assert
.
fail
(
network
.
message
(
params
,
BasicConfig
.
MOBILE_secondKill_goodsOrderResult
,
"获取数据失败"
,
response
.
body
().
asString
()));
//
}
}
//
Assert.assertEquals(data,3,network.message(USER_INFO,"支付失败",response.body().asString()));
Assert
.
assertEquals
(
data
,
3
,
network
.
message
(
USER_INFO
,
"支付失败"
,
response
.
body
().
asString
()));
//
}
}
//
//
@Test(description = "二级用户绑定分享合伙人关系",priority = 7)
@Test
(
description
=
"二级用户绑定分享合伙人关系"
,
priority
=
7
)
//
public void 二级用户绑定分享合伙人关系() {
public
void
二级用户绑定分享合伙人关系
()
{
//
newUser2();
newUser2
();
//
Map<String, Object> params = new HashMap<String, Object>();
Map
<
String
,
Object
>
params
=
new
HashMap
<
String
,
Object
>();
//
params.put("sellerId",sellerId2);
params
.
put
(
"sellerId"
,
sellerId2
);
//
params.put("inviterSid",sellerId);
params
.
put
(
"inviterSid"
,
sellerId
);
//
params.put("openId",openId2);
params
.
put
(
"openId"
,
openId2
);
//
params.put("userId",userId2);
params
.
put
(
"userId"
,
userId2
);
//
params.put("oaId",1);
params
.
put
(
"oaId"
,
1
);
//
params.put("scene",1);
params
.
put
(
"scene"
,
1
);
//
Response response = network.postResponse(params,PAY_bind);
Response
response
=
network
.
postResponse
(
params
,
PAY_bind
);
//
boolean bindResult=response.jsonPath().getBoolean("data.bindResult");
boolean
bindResult
=
response
.
jsonPath
().
getBoolean
(
"data.bindResult"
);
//
Assert.assertTrue(bindResult,network.message(PAY_bind,"用户绑定失败",response.body().asString()));
Assert
.
assertTrue
(
bindResult
,
network
.
message
(
PAY_bind
,
"用户绑定失败"
,
response
.
body
().
asString
()));
//
}
}
//
//
@Test (description = "默认付费_二级用户邀请付费页",priority = 8) //priority 方法执行优先级
@Test
(
description
=
"默认付费_二级用户邀请付费页"
,
priority
=
8
)
//priority 方法执行优先级
//
public void 默认付费_二级用户邀请付费页() {
public
void
默认付费
_
二级用户邀请付费页
()
{
//
Map<String, Object> payParams = new HashMap<String, Object>();
Map
<
String
,
Object
>
payParams
=
new
HashMap
<
String
,
Object
>();
//
payParams.put("entryDiscountType",1); //入口折扣类型,1-普通,3-邀请,4-优惠码
payParams
.
put
(
"entryDiscountType"
,
1
);
//入口折扣类型,1-普通,3-邀请,4-优惠码
//
Response response = network.getResponse(PAY_info);
Response
response
=
network
.
getResponse
(
PAY_info
);
//
int discountType = response.jsonPath().getInt("data.discountType");
int
discountType
=
response
.
jsonPath
().
getInt
(
"data.discountType"
);
//
String superiorName = response.jsonPath().getString("data.invitation.superiorName");
String
superiorName
=
response
.
jsonPath
().
getString
(
"data.invitation.superiorName"
);
//
int preferentialPrice = response.jsonPath().getInt("data.preferentialPrice");
int
preferentialPrice
=
response
.
jsonPath
().
getInt
(
"data.preferentialPrice"
);
//
Assert.assertEquals(discountType,3,network.message(PAY_info,"非邀请付费逻辑",response.body().asString()));
Assert
.
assertEquals
(
discountType
,
3
,
network
.
message
(
PAY_info
,
"非邀请付费逻辑"
,
response
.
body
().
asString
()));
//
//
Assert.assertEquals(superiorName,"小葡萄",network.message(PAY_info,"上级邀请人错误",response.body().asString()));
// Assert.assertEquals(superiorName,"小葡萄",network.message(PAY_info,"上级邀请人错误",response.body().asString()));
//
Assert.assertEquals(preferentialPrice,3,network.message(PAY_info,"邀请价格非0.03",response.body().asString()));
Assert
.
assertEquals
(
preferentialPrice
,
3
,
network
.
message
(
PAY_info
,
"邀请价格非0.03"
,
response
.
body
().
asString
()));
//
}
}
//
//
@Test (description = "返现用户付费_二级用户下单并支付成功",priority = 9)
@Test
(
description
=
"返现用户付费_二级用户下单并支付成功"
,
priority
=
9
)
//
public void 返现用户付费_二级用户下单并支付成功() {
public
void
返现用户付费
_
二级用户下单并支付成功
()
{
//
//创建支付
//创建支付
//
Map<String, Object> params = new HashMap<String, Object>();
Map
<
String
,
Object
>
params
=
new
HashMap
<
String
,
Object
>();
//
params.put("entryDiscountType",1);
params
.
put
(
"entryDiscountType"
,
1
);
//
params.put("discountType",3); //实际折扣类型,1-普通,2-续费,3-邀请,4-优惠码
params
.
put
(
"discountType"
,
3
);
//实际折扣类型,1-普通,2-续费,3-邀请,4-优惠码
//
params.put("paySource","2");
params
.
put
(
"paySource"
,
"2"
);
//
Response response = network.postResponse(params,PAY_create);
Response
response
=
network
.
postResponse
(
params
,
PAY_create
);
//
tradeNo = response.jsonPath().getString("data.tradeNo");
tradeNo
=
response
.
jsonPath
().
getString
(
"data.tradeNo"
);
//
Assert.assertNotNull(tradeNo,network.message(params, PAY_create,"拉起支付:拉起微信支付失败",response.body().asString())); //判断订单号是否为空
Assert
.
assertNotNull
(
tradeNo
,
network
.
message
(
params
,
PAY_create
,
"拉起支付:拉起微信支付失败"
,
response
.
body
().
asString
()));
//判断订单号是否为空
//
//
params.clear();
params
.
clear
();
//
int data = 2;
int
data
=
2
;
//
int i = 0;
int
i
=
0
;
//
try {
try
{
//
// 轮训下单接口
// 轮训下单接口
//
while (data == 2){
while
(
data
==
2
){
//
sleep(2000);
sleep
(
2000
);
//
//
params.put("tradeNo",tradeNo);
params
.
put
(
"tradeNo"
,
tradeNo
);
//
response = network.getResponse(params,PAY_result);
response
=
network
.
getResponse
(
params
,
PAY_result
);
//
data = response.jsonPath().getInt("data");//1-待付款,2-付款中,3-付款成功,4-付款失败,5-取消支付,6-支付异常
data
=
response
.
jsonPath
().
getInt
(
"data"
);
//1-待付款,2-付款中,3-付款成功,4-付款失败,5-取消支付,6-支付异常
//
i++;
i
++;
//
if (i == 10){
if
(
i
==
10
){
//
Assert.fail(network.message(params, BasicConfig.MOBILE_secondKill_goodsOrderResult, "轮训支付结果超过10次", response.body().asString()));
Assert
.
fail
(
network
.
message
(
params
,
BasicConfig
.
MOBILE_secondKill_goodsOrderResult
,
"轮训支付结果超过10次"
,
response
.
body
().
asString
()));
//
break;
break
;
//
}
}
//
}
}
//
}catch (Exception e){
}
catch
(
Exception
e
){
//
e.printStackTrace();
e
.
printStackTrace
();
//
Assert.fail(network.message(params, BasicConfig.MOBILE_secondKill_goodsOrderResult, "获取数据失败", response.body().asString()));
Assert
.
fail
(
network
.
message
(
params
,
BasicConfig
.
MOBILE_secondKill_goodsOrderResult
,
"获取数据失败"
,
response
.
body
().
asString
()));
//
}
}
//
Assert.assertEquals(data,3,network.message(USER_INFO,"支付失败",response.body().asString()));
Assert
.
assertEquals
(
data
,
3
,
network
.
message
(
USER_INFO
,
"支付失败"
,
response
.
body
().
asString
()));
//
// 检查会员开通结果
// 检查会员开通结果
//
response = network.getResponse(USER_INFO);
response
=
network
.
getResponse
(
USER_INFO
);
//
boolean isVip = response.jsonPath().getBoolean("data.vipValid");
boolean
isVip
=
response
.
jsonPath
().
getBoolean
(
"data.vipValid"
);
//
Assert.assertTrue(isVip,network.message(USER_INFO,"微信支付成功,但是接口返回还是非会员状态",response.body().asString()));
Assert
.
assertTrue
(
isVip
,
network
.
message
(
USER_INFO
,
"微信支付成功,但是接口返回还是非会员状态"
,
response
.
body
().
asString
()));
//
//
}
}
//
//
@Test(description = "获取用户版本信息",priority = 10)
@Test
(
description
=
"获取用户版本信息"
,
priority
=
10
)
//
public void 获取用户版本信息() {
public
void
获取用户版本信息
()
{
//
agentTku();
agentTku
();
//
Response response = network.getResponse(USER_INFO);
Response
response
=
network
.
getResponse
(
USER_INFO
);
//
boolean isInsuranceVersion=response.jsonPath().getBoolean("data.isInsuranceVersion");
boolean
isInsuranceVersion
=
response
.
jsonPath
().
getBoolean
(
"data.isInsuranceVersion"
);
//
Assert.assertTrue(isInsuranceVersion,network.message(USER_INFO,"不是保险版本",response.body().asString()));
Assert
.
assertTrue
(
isInsuranceVersion
,
network
.
message
(
USER_INFO
,
"不是保险版本"
,
response
.
body
().
asString
()));
//
//
}
}
//
//
@Test(description = "邀请的已支付好友列表",priority = 11)
@Test
(
description
=
"邀请的已支付好友列表"
,
priority
=
11
)
//
public void 邀请的已支付好友列表() {
public
void
邀请的已支付好友列表
()
{
//
sleep(2000);
sleep
(
2000
);
//
Map<String, Object> Params = new HashMap<String, Object>();
Map
<
String
,
Object
>
Params
=
new
HashMap
<
String
,
Object
>();
//
Params.put("pageIndex",1);
Params
.
put
(
"pageIndex"
,
1
);
//
Params.put("pageSize",10);
Params
.
put
(
"pageSize"
,
10
);
//
Params.put("distributionListType",2);
Params
.
put
(
"distributionListType"
,
2
);
//
Response response = network.getResponse(Params,PAY_distributionList);
Response
response
=
network
.
getResponse
(
Params
,
PAY_distributionList
);
//
Object list=response.jsonPath().getJsonObject("data.list");
Object
list
=
response
.
jsonPath
().
getJsonObject
(
"data.list"
);
//
String nickname=response.jsonPath().getString("data.list.get(0).nickname");
String
nickname
=
response
.
jsonPath
().
getString
(
"data.list.get(0).nickname"
);
//
Assert.assertNotNull(list,network.message(PAY_distributionList,"已付款好友列表为null",response.body().asString()));
Assert
.
assertNotNull
(
list
,
network
.
message
(
PAY_distributionList
,
"已付款好友列表为null"
,
response
.
body
().
asString
()));
//
//
Assert.assertEquals(nickname,"小葡萄",network.message(PAY_distributionList,"已付款微信昵称错误",response.body().asString()));
// Assert.assertEquals(nickname,"小葡萄",network.message(PAY_distributionList,"已付款微信昵称错误",response.body().asString()));
//
}
}
//
//
@Test(description = "代理人账户信息",priority = 12)
@Test
(
description
=
"代理人账户信息"
,
priority
=
12
)
//
public void 代理人账户信息() {
public
void
代理人账户信息
()
{
//
Response response = network.getResponse(PAY_accInfo);
Response
response
=
network
.
getResponse
(
PAY_accInfo
);
//
double balance=Double.parseDouble(response.jsonPath().getString("data.balance"));
double
balance
=
Double
.
parseDouble
(
response
.
jsonPath
().
getString
(
"data.balance"
));
//
Assert.assertTrue(balance>0,network.message(PAY_accInfo,"当前余额为0",response.body().asString()));
Assert
.
assertTrue
(
balance
>
0
,
network
.
message
(
PAY_accInfo
,
"当前余额为0"
,
response
.
body
().
asString
()));
//
double totalPromotionEarnings=Double.parseDouble(response.jsonPath().getString("data.totalPromotionEarnings"));
double
totalPromotionEarnings
=
Double
.
parseDouble
(
response
.
jsonPath
().
getString
(
"data.totalPromotionEarnings"
));
//
Assert.assertTrue(totalPromotionEarnings>0,network.message(PAY_accInfo,"总收益为0",response.body().asString()));
Assert
.
assertTrue
(
totalPromotionEarnings
>
0
,
network
.
message
(
PAY_accInfo
,
"总收益为0"
,
response
.
body
().
asString
()));
//
double settleMoney=Double.parseDouble(response.jsonPath().getString("data.settleMoney"));
double
settleMoney
=
Double
.
parseDouble
(
response
.
jsonPath
().
getString
(
"data.settleMoney"
));
//
Assert.assertTrue(settleMoney>0,network.message(PAY_accInfo,"待结算金额为0",response.body().asString()));
Assert
.
assertTrue
(
settleMoney
>
0
,
network
.
message
(
PAY_accInfo
,
"待结算金额为0"
,
response
.
body
().
asString
()));
//
int canWithdraw=response.jsonPath().getInt("data.canWithdraw");
int
canWithdraw
=
response
.
jsonPath
().
getInt
(
"data.canWithdraw"
);
//
Assert.assertTrue(canWithdraw==1,network.message(PAY_accInfo,"不可以提现",response.body().asString()));
Assert
.
assertTrue
(
canWithdraw
==
1
,
network
.
message
(
PAY_accInfo
,
"不可以提现"
,
response
.
body
().
asString
()));
//
int minWithdrawMoney=response.jsonPath().getInt("data.minWithdrawMoney");
int
minWithdrawMoney
=
response
.
jsonPath
().
getInt
(
"data.minWithdrawMoney"
);
//
Assert.assertTrue(minWithdrawMoney==1,network.message(PAY_accInfo,"最小可提现金额不等于1",response.body().asString()));
Assert
.
assertTrue
(
minWithdrawMoney
==
1
,
network
.
message
(
PAY_accInfo
,
"最小可提现金额不等于1"
,
response
.
body
().
asString
()));
//
int maxWithdrawMoney=response.jsonPath().getInt("data.maxWithdrawMoney");
int
maxWithdrawMoney
=
response
.
jsonPath
().
getInt
(
"data.maxWithdrawMoney"
);
//
Assert.assertTrue(maxWithdrawMoney==5000,network.message(PAY_accInfo,"最大可提现金额不等于5000",response.body().asString()));
Assert
.
assertTrue
(
maxWithdrawMoney
==
5000
,
network
.
message
(
PAY_accInfo
,
"最大可提现金额不等于5000"
,
response
.
body
().
asString
()));
//
}
}
//
//
@Test(description = "合伙人账户明细",priority = 13)
@Test
(
description
=
"合伙人账户明细"
,
priority
=
13
)
//
public void 合伙人账户明细() {
public
void
合伙人账户明细
()
{
//
Map<String, Object> Params = new HashMap<>();
Map
<
String
,
Object
>
Params
=
new
HashMap
<>();
//
Params.put("type", 1);
Params
.
put
(
"type"
,
1
);
//
Params.put("pageNo", 1);
Params
.
put
(
"pageNo"
,
1
);
//
Params.put("pageSize", 20);
Params
.
put
(
"pageSize"
,
20
);
//
Response response = network.getResponse(Params, PAY_accDetail);
Response
response
=
network
.
getResponse
(
Params
,
PAY_accDetail
);
//
int size = response.jsonPath().getInt("data.size()");
int
size
=
response
.
jsonPath
().
getInt
(
"data.size()"
);
//
Assert.assertTrue(size >0, network.message(PAY_accDetail, "提现记录为null", response.body().asString()));
Assert
.
assertTrue
(
size
>
0
,
network
.
message
(
PAY_accDetail
,
"提现记录为null"
,
response
.
body
().
asString
()));
//
//
Params.put("type", 2);
Params
.
put
(
"type"
,
2
);
//
response = network.getResponse(Params, PAY_accDetail);
response
=
network
.
getResponse
(
Params
,
PAY_accDetail
);
//
size = response.jsonPath().getInt("data.size()");
size
=
response
.
jsonPath
().
getInt
(
"data.size()"
);
//
Assert.assertTrue(size >0, network.message(PAY_accDetail, "提现记录为null", response.body().asString()));
Assert
.
assertTrue
(
size
>
0
,
network
.
message
(
PAY_accDetail
,
"提现记录为null"
,
response
.
body
().
asString
()));
//
float changeMoney1 = response.jsonPath().getFloat("data[0].changeMoney");
float
changeMoney1
=
response
.
jsonPath
().
getFloat
(
"data[0].changeMoney"
);
//
Assert.assertTrue(changeMoney1 ==30.0, network.message(PAY_accDetail, "二级付费合伙人返现金额不为30", response.body().asString()));
Assert
.
assertTrue
(
changeMoney1
==
30.0
,
network
.
message
(
PAY_accDetail
,
"二级付费合伙人返现金额不为30"
,
response
.
body
().
asString
()));
//
float changeMoney2 = response.jsonPath().getFloat("data[1].changeMoney");
float
changeMoney2
=
response
.
jsonPath
().
getFloat
(
"data[1].changeMoney"
);
//
Assert.assertTrue(changeMoney2 ==50.0, network.message(PAY_accDetail, "一级付费合伙人返现金额不为50", response.body().asString()));
Assert
.
assertTrue
(
changeMoney2
==
50.0
,
network
.
message
(
PAY_accDetail
,
"一级付费合伙人返现金额不为50"
,
response
.
body
().
asString
()));
//
}
}
//
//
@Test(description = "代理人提现",priority = 14)
@Test
(
description
=
"代理人提现"
,
priority
=
14
)
//
public void 代理人提现() {
public
void
代理人提现
()
{
//
Map<String, Object> Params = new HashMap<>();
Map
<
String
,
Object
>
Params
=
new
HashMap
<>();
//
Params.put("withdrawMoney", 1);
Params
.
put
(
"withdrawMoney"
,
1
);
//
Response response = network.getResponse(Params, PAY_withdraw);
Response
response
=
network
.
getResponse
(
Params
,
PAY_withdraw
);
//
boolean data = response.jsonPath().getBoolean("data");
boolean
data
=
response
.
jsonPath
().
getBoolean
(
"data"
);
//
Assert.assertTrue(data, network.message(PAY_withdraw, "提现失败", response.body().asString()));
Assert
.
assertTrue
(
data
,
network
.
message
(
PAY_withdraw
,
"提现失败"
,
response
.
body
().
asString
()));
//
}
}
//
//
@Test(description = "普通代理人账户明细",priority = 15)
@Test
(
description
=
"普通代理人账户明细"
,
priority
=
15
)
//
public void 普通代理人账户明细() {
public
void
普通代理人账户明细
()
{
//
newUser1();
newUser1
();
//
Map<String, Object> Params = new HashMap<>();
Map
<
String
,
Object
>
Params
=
new
HashMap
<>();
//
Params.put("type", 2);
Params
.
put
(
"type"
,
2
);
//
Params.put("pageNo", 1);
Params
.
put
(
"pageNo"
,
1
);
//
Params.put("pageSize", 20);
Params
.
put
(
"pageSize"
,
20
);
//
Response response = network.getResponse(Params, PAY_accDetail);
Response
response
=
network
.
getResponse
(
Params
,
PAY_accDetail
);
//
int size = response.jsonPath().getInt("data.size()");
int
size
=
response
.
jsonPath
().
getInt
(
"data.size()"
);
//
Assert.assertTrue(size >0, network.message(PAY_accDetail, "提现记录为null", response.body().asString()));
Assert
.
assertTrue
(
size
>
0
,
network
.
message
(
PAY_accDetail
,
"提现记录为null"
,
response
.
body
().
asString
()));
//
float changeMoney1 = response.jsonPath().getFloat("data[0].changeMoney");
float
changeMoney1
=
response
.
jsonPath
().
getFloat
(
"data[0].changeMoney"
);
//
Assert.assertTrue(changeMoney1 ==35.0, network.message(PAY_accDetail, "一级付费普通代理人返现金额不为35", response.body().asString()));
Assert
.
assertTrue
(
changeMoney1
==
35.0
,
network
.
message
(
PAY_accDetail
,
"一级付费普通代理人返现金额不为35"
,
response
.
body
().
asString
()));
//
//
deleteTestUser(userId);
deleteTestUser
(
userId
);
//
deleteTestUser(userId2);
deleteTestUser
(
userId2
);
//
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment