Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
test-platform
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
马博
test-platform
Commits
e4063a33
Commit
e4063a33
authored
Jul 09, 2019
by
wangxiaoshuang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wxs
parent
25b03f92
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
12 deletions
+13
-12
自有新优惠券_兑换限制测试_ExchangeTest.java
...es/ExchangeTest/自有_商品兑换限制/自有新优惠券_兑换限制测试_ExchangeTest.java
+13
-12
No files found.
src/test/java/http/cases/ExchangeTest/自有_商品兑换限制/自有新优惠券_兑换限制测试_ExchangeTest.java
View file @
e4063a33
...
...
@@ -454,15 +454,15 @@ public class 自有新优惠券_兑换限制测试_ExchangeTest extends CheckTem
String
appItemId
=
"196919"
;
try
{
//
Thread.sleep(4000);
Thread
.
sleep
(
4000
);
//第一次兑换
Response
response
=
gawService
.
couponExchange
(
uid
,
appItemId
,
157
);
response
.
prettyPrint
();
//
String orderId = response.jsonPath().getString("data.orderId");
String
orderId
=
response
.
jsonPath
().
getString
(
"data.orderId"
);
//获取兑换结果
//
response = mobileService.orderStatusQuery(uid,orderId);
//
response.prettyPrint();
/*
String message = response.jsonPath().getString("message");
response
=
mobileService
.
orderStatusQuery
(
uid
,
orderId
);
response
.
prettyPrint
();
String
message
=
response
.
jsonPath
().
getString
(
"message"
);
int
i
=
10
;
//异步接口,直到兑换成功
while
(
i
>
0
&&
"兑换正在处理中..."
.
equals
(
message
))
{
...
...
@@ -473,27 +473,28 @@ public class 自有新优惠券_兑换限制测试_ExchangeTest extends CheckTem
i
--;
}
Thread
.
sleep
(
4000
);
Response
detailResponse
=
mobileService
.
appItemDetail
(
authorization
.
dafuwengLogin
(
uid
),
appItemId
);
detailResponse.prettyPrint();
//
detailResponse.prettyPrint();
String
exchangeText
=
MatcherString
.
getString
(
detailResponse
.
asString
(),
"\"exchangeText\":\"(.*?)\","
,
1
);
logger
.
info
(
"商品兑换按钮:"
+
exchangeText
);
//第二次兑换
Thread.sleep(4000);
try
{
response
=
gawService
.
couponExchange
(
uid
,
appItemId
,
157
);
response.prettyPrint();
//
response.prettyPrint();
}
catch
(
Exception
e
){
message
=
e
.
toString
();
}
logger.info(message);
//
logger.info(message);
Assert.assertTrue(message.contains("
已达兑换批次
上限"),"校验message失败");
Assert
.
assertTrue
(
message
.
contains
(
"
该批次已达兑换
上限"
),
"校验message失败"
);
Assert
.
assertTrue
(
message
.
contains
(
"\"success\":false"
),
"校验success失败"
);
Assert.assertEquals(exchangeText,"
已达兑换批次
上限","校验兑换按钮失败");
logger.info("校验实物用户周期限制消费成功");
*/
Assert
.
assertEquals
(
exchangeText
,
"
该批次已达兑换
上限"
,
"校验兑换按钮失败"
);
logger
.
info
(
"校验实物用户周期限制消费成功"
);
}
catch
(
Exception
e
){
...
...
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