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
8b83730b
Commit
8b83730b
authored
Mar 08, 2022
by
龚小红
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
57100bf6
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
10 deletions
+9
-10
SecondKill.java
src/test/java/com/kjj/cases/live/secondKill/SecondKill.java
+1
-1
Manager.java
src/test/java/com/kjj/cases/otoseller/Manager.java
+2
-3
Work.java
src/test/java/com/kjj/cases/otoseller/Work.java
+6
-6
No files found.
src/test/java/com/kjj/cases/live/secondKill/SecondKill.java
View file @
8b83730b
...
...
@@ -698,7 +698,7 @@ public class SecondKill implements Authorization {
Assert
.
fail
(
network
.
message
(
orderPar
,
BasicConfig
.
MOBILE_secondKill_goodsOrder
,
"未获取到数据"
,
orderRes
.
body
().
asString
()));
}
orderResult
(
ConfSecondKill
.
QualifiedId
,
1
);
orderResult
(
ConfSecondKill
.
QualifiedId
,
2
);
}
@Test
(
description
=
"管理后台查看秒杀资格商品进度"
,
priority
=
46
)
...
...
src/test/java/com/kjj/cases/otoseller/Manager.java
View file @
8b83730b
...
...
@@ -29,7 +29,7 @@ public class Manager {
int
size
=
response
.
jsonPath
().
getInt
(
"data.list.size()"
);
Assert
.
assertTrue
(
size
>
0
,
network
.
message
(
params
,
BasicConfig
.
MANAGER_oto_sellerList
,
"销售列表为空"
,
response
.
body
().
asString
()));
int
workStatus
=
response
.
jsonPath
().
getInt
(
"data.list.find{it.id == "
+
35
+
"}.workStatus"
);
int
workStatus
=
response
.
jsonPath
().
getInt
(
"data.list.find{it.id == "
+
40
+
"}.workStatus"
);
Assert
.
assertEquals
(
workStatus
,
1
,
network
.
message
(
params
,
BasicConfig
.
MANAGER_oto_searchSeller
,
"工作状态错误"
,
response
.
body
().
asString
()));
}
...
...
@@ -48,7 +48,6 @@ public class Manager {
public
void
修改销售信息
(){
HashMap
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"id"
,
sellerId
);
params
.
put
(
"id"
,
35
);
params
.
put
(
"sellerName"
,
"勿动-自动化更新销售"
);
params
.
put
(
"phoneNumber"
,
"18852895892"
);
params
.
put
(
"roleType"
,
1
);
...
...
@@ -110,7 +109,7 @@ public class Manager {
@Test
(
description
=
"不可修改总监为普通"
,
priority
=
6
)
public
void
不可修改总监为普通
(){
HashMap
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"id"
,
sellerId
);
params
.
put
(
"id"
,
36
);
params
.
put
(
"sellerName"
,
"勿动-自动化测试销售"
);
params
.
put
(
"phoneNumber"
,
"18852895892"
);
params
.
put
(
"roleType"
,
3
);
...
...
src/test/java/com/kjj/cases/otoseller/Work.java
View file @
8b83730b
...
...
@@ -126,7 +126,7 @@ public class Work implements Authorization {
HashMap
<
String
,
Object
>
params
=
new
HashMap
<>();
String
str
=
String
.
valueOf
(
System
.
currentTimeMillis
());
params
.
put
(
"customerId"
,
custId
);
params
.
put
(
"sellerId"
,
35
);
params
.
put
(
"sellerId"
,
40
);
Response
response
=
network
.
postResponse
(
params
,
BasicConfig
.
MANAGER_oto_assignSeller
);
boolean
data
=
response
.
jsonPath
().
getBoolean
(
"data"
);
Assert
.
assertTrue
(
data
,
network
.
message
(
params
,
BasicConfig
.
MANAGER_oto_assignSeller
,
"分配客户失败"
,
response
.
body
().
asString
()));
...
...
@@ -596,7 +596,7 @@ public class Work implements Authorization {
@Test
(
description
=
"公域引流_关闭销售呼叫权限"
,
priority
=
42
)
public
void
公域引流
_
关闭销售呼叫权限
(){
HashMap
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"id"
,
35
);
params
.
put
(
"id"
,
40
);
params
.
put
(
"callPermission"
,
0
);
Response
response
=
network
.
postResponse
(
params
,
BasicConfig
.
MANAGER_oto_switchCallPermissio
);
boolean
data
=
response
.
jsonPath
().
getBoolean
(
"data"
);
...
...
@@ -612,7 +612,7 @@ public class Work implements Authorization {
Assert
.
assertFalse
(
success
,
network
.
message
(
params
,
BasicConfig
.
WORK_call
,
"关闭呼叫权限后呼叫成功"
,
response
.
body
().
asString
()));
params
.
clear
();
params
.
put
(
"id"
,
35
);
params
.
put
(
"id"
,
40
);
params
.
put
(
"callPermission"
,
1
);
response
=
network
.
postResponse
(
params
,
BasicConfig
.
MANAGER_oto_switchCallPermissio
);
boolean
data
=
response
.
jsonPath
().
getBoolean
(
"data"
);
...
...
@@ -622,7 +622,7 @@ public class Work implements Authorization {
@Test
(
description
=
"公域引流_禁用销售账号"
,
priority
=
44
)
public
void
公域引流
_
禁用销售账号
(){
HashMap
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"id"
,
35
);
params
.
put
(
"id"
,
40
);
params
.
put
(
"sellerStatus"
,
0
);
Response
response
=
network
.
postResponse
(
params
,
BasicConfig
.
MANAGER_oto_switchSellerStatus
);
boolean
data
=
response
.
jsonPath
().
getBoolean
(
"data"
);
...
...
@@ -640,7 +640,7 @@ public class Work implements Authorization {
Assert
.
assertFalse
(
success
,
network
.
message
(
params
,
BasicConfig
.
WORK_customerList
,
"关闭销售权限后访问成功"
,
response
.
body
().
asString
()));
params
.
clear
();
params
.
put
(
"id"
,
35
);
params
.
put
(
"id"
,
40
);
params
.
put
(
"sellerStatus"
,
1
);
response
=
network
.
postResponse
(
params
,
BasicConfig
.
MANAGER_oto_switchSellerStatus
);
boolean
data
=
response
.
jsonPath
().
getBoolean
(
"data"
);
...
...
@@ -754,7 +754,7 @@ public class Work implements Authorization {
@Test
(
description
=
"总监修改名下销售工作状态"
,
priority
=
56
)
public
void
总监修改名下销售工作状态
(){
HashMap
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"sellerId"
,
35
);
params
.
put
(
"sellerId"
,
40
);
params
.
put
(
"workStatus"
,
0
);
Response
response
=
network
.
postResponse
(
params
,
BasicConfig
.
WORK_switchWorkStatus
);
boolean
data
=
response
.
jsonPath
().
getBoolean
(
"data"
);
...
...
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