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
5f9186a8
Commit
5f9186a8
authored
Mar 29, 2021
by
张艳玲
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '20210329bxl' into 'master'
20210329bxl See merge request test-group/kejiji!37
parents
a6f97eba
778dbcc6
Changes
16
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
616 additions
and
51 deletions
+616
-51
AgentBean.java
src/test/java/com/kjj/bean/AgentBean.java
+0
-2
LiveVisitor.java
src/test/java/com/kjj/bean/LiveVisitor.java
+18
-0
ResourceForm.java
src/test/java/com/kjj/bean/ResourceForm.java
+24
-0
ResourceFree.java
src/test/java/com/kjj/bean/ResourceFree.java
+26
-0
ResourceLink.java
src/test/java/com/kjj/bean/ResourceLink.java
+13
-0
ResourceTestDetail.java
src/test/java/com/kjj/bean/ResourceTestDetail.java
+28
-0
ResourceTestParticipate.java
src/test/java/com/kjj/bean/ResourceTestParticipate.java
+9
-0
CloseLive.java
src/test/java/com/kjj/cases/live/CloseLive.java
+1
-1
LiveMaterial.java
src/test/java/com/kjj/cases/live/LiveMaterial.java
+16
-15
LiveVisitors.java
src/test/java/com/kjj/cases/live/LiveVisitors.java
+240
-0
OpenLive.java
src/test/java/com/kjj/cases/live/OpenLive.java
+1
-1
Procurator.java
src/test/java/com/kjj/cases/live/Procurator.java
+5
-8
SaveAndUpdate.java
src/test/java/com/kjj/cases/live/SaveAndUpdate.java
+0
-1
BasicConfig.java
src/test/java/com/kjj/config/BasicConfig.java
+202
-5
JsonUtil.java
src/test/java/com/kjj/utils/JsonUtil.java
+7
-1
liveTestNG.xml
src/test/liveTestNG.xml
+26
-17
No files found.
src/test/java/com/kjj/bean/AgentBean.java
View file @
5f9186a8
...
...
@@ -21,6 +21,4 @@ public class AgentBean {
private
String
companyLogo
;
private
Long
appointmentNum
;
private
int
inviteAuthStatus
;
}
src/test/java/com/kjj/bean/LiveVisitor.java
0 → 100644
View file @
5f9186a8
package
com
.
kjj
.
bean
;
import
lombok.Data
;
@Data
public
class
LiveVisitor
{
private
String
confId
;
private
String
resourceBigImg
;
private
String
resourceTitle
;
private
int
resourceType
;
private
String
resourceImg
;
private
String
outLink
;
private
int
outLinkType
;
private
String
outLinkAppId
;
private
String
resourceButtonTitle
;
private
String
resourceSubTitle
;
private
String
testType
;
}
src/test/java/com/kjj/bean/ResourceForm.java
0 → 100644
View file @
5f9186a8
package
com
.
kjj
.
bean
;
import
lombok.Data
;
import
java.util.List
;
@Data
public
class
ResourceForm
{
private
String
banner
;
private
List
<
FieldList
>
fieldList
;
private
String
received
;
@Data
public
static
class
FieldList
{
private
String
fieldId
;
private
String
fieldName
;
private
int
fieldType
;
private
int
selectType
;
}
}
src/test/java/com/kjj/bean/ResourceFree.java
0 → 100644
View file @
5f9186a8
package
com
.
kjj
.
bean
;
import
lombok.Data
;
@Data
public
class
ResourceFree
{
private
String
Kj21OTQ1NTk
;
private
String
name
;
private
String
img
;
private
String
companyName
;
private
String
companyId
;
private
String
received
;
private
String
receivedTime
;
private
int
interactType
;
private
String
recordId
;
private
String
liveId
;
private
String
outLink
;
private
String
outLinkDesc
;
private
String
resourceDesc
;
private
String
resourcePictures
;
private
int
resourceType
;
private
String
resourceButtonTitle
;
private
int
outLinkType
;
private
String
outLinkAppId
;
private
String
formBanner
;
}
src/test/java/com/kjj/bean/ResourceLink.java
0 → 100644
View file @
5f9186a8
package
com
.
kjj
.
bean
;
import
lombok.Data
;
@Data
public
class
ResourceLink
{
private
String
name
;
private
String
img
;
private
int
interactType
;
private
String
outLink
;
private
String
outLinkType
;
private
String
outLinkAppId
;
}
src/test/java/com/kjj/bean/ResourceTestDetail.java
0 → 100644
View file @
5f9186a8
package
com
.
kjj
.
bean
;
import
lombok.Data
;
import
java.util.List
;
@Data
public
class
ResourceTestDetail
{
private
int
testType
;
private
int
clueType
;
private
String
tradeIntroducePictures
;
private
String
suspendImg
;
private
String
mainButtonTitle
;
private
String
saleButtonTitle
;
private
List
<
FieldList
>
fieldList
;
private
String
received
;
@Data
public
static
class
FieldList
{
private
String
fieldId
;
private
String
fieldValue
;
private
String
fieldSubmitIds
;
}
private
String
liveId
;
private
String
confId
;
private
int
interactType
;
}
src/test/java/com/kjj/bean/ResourceTestParticipate.java
0 → 100644
View file @
5f9186a8
package
com
.
kjj
.
bean
;
import
lombok.Data
;
@Data
public
class
ResourceTestParticipate
{
private
int
percent
;
private
String
nickname
;
}
src/test/java/com/kjj/cases/live/CloseLive.java
View file @
5f9186a8
...
...
@@ -23,7 +23,7 @@ public class CloseLive implements AdminAuthorization{
public
void
结束直播
()
{
Map
<
String
,
Object
>
closeParam
=
new
HashMap
<>();
closeParam
.
put
(
"liveid"
,
LiveConstants
.
getValue
(
LiveConstants
.
StringKeyEnum
.
LIVE_ID
.
getKey
()));
closeParam
.
put
(
"cid"
,
101
);
closeParam
.
put
(
"cid"
,
90
);
Response
closeRes
=
network
.
postResponse
(
closeParam
,
BasicConfig
.
ANCHOR_CLOSE
);
Object
data
=
closeRes
.
jsonPath
().
getJsonObject
(
"data"
);
System
.
out
.
println
(
data
);
...
...
src/test/java/com/kjj/cases/live/LiveMaterial.java
View file @
5f9186a8
...
...
@@ -11,6 +11,7 @@ import io.restassured.response.Response;
import
org.testng.Assert
;
import
org.testng.annotations.BeforeClass
;
import
org.testng.annotations.Test
;
import
java.util.*
;
...
...
@@ -33,7 +34,7 @@ public class LiveMaterial implements AdminAuthorization {
saveOrUpdateParam
.
put
(
"welfareName"
,
"盲盒锦鲤"
);
saveOrUpdateParam
.
put
(
"welfarePictures"
,
"https://yun.dui88.com/kjy/image/20210304/1614844198545.jpeg"
);
saveOrUpdateParam
.
put
(
"welfarePicturesArr"
,
"https://yun.dui88.com/kjy/image/20210304/1614844198545.jpeg"
);
saveOrUpdateParam
.
put
(
"companyId"
,
101
);
saveOrUpdateParam
.
put
(
"companyId"
,
90
);
Response
saveOrUpdatePes
=
network
.
postResponse
(
saveOrUpdateParam
,
BasicConfig
.
MANAGER_SAVEORUPDATE6
);
boolean
data
=
saveOrUpdatePes
.
jsonPath
().
getBoolean
(
"data"
);
...
...
@@ -45,7 +46,7 @@ public class LiveMaterial implements AdminAuthorization {
public
void
查询福利并删除
()
{
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"companyId"
,
101
);
params
.
put
(
"companyId"
,
90
);
params
.
put
(
"pageIndex"
,
1
);
params
.
put
(
"pageSize"
,
1
);
...
...
@@ -75,7 +76,7 @@ public class LiveMaterial implements AdminAuthorization {
public
void
添加投票
()
{
Map
<
String
,
Object
>
choiceParam
=
new
HashMap
<>();
choiceParam
.
put
(
"companyId"
,
101
);
choiceParam
.
put
(
"companyId"
,
90
);
choiceParam
.
put
(
"question"
,
"投票测试一"
);
List
<
VoteListBean
>
votes
=
new
ArrayList
<>();
VoteListBean
vote
=
new
VoteListBean
();
...
...
@@ -102,7 +103,7 @@ public class LiveMaterial implements AdminAuthorization {
public
void
查询投票并删除
()
{
Map
<
String
,
Object
>
choiceListPram
=
new
HashMap
<>();
choiceListPram
.
put
(
"companyId"
,
101
);
choiceListPram
.
put
(
"companyId"
,
90
);
choiceListPram
.
put
(
"pageIndex"
,
1
);
choiceListPram
.
put
(
"pageSize"
,
1
);
...
...
@@ -130,7 +131,7 @@ public class LiveMaterial implements AdminAuthorization {
@Test
(
description
=
"问题管理"
,
priority
=
5
)
public
void
添加问题
()
{
Map
<
String
,
Object
>
questionParam
=
new
HashMap
<>();
questionParam
.
put
(
"companyId"
,
101
);
questionParam
.
put
(
"companyId"
,
90
);
questionParam
.
put
(
"question"
,
"测试问题"
);
Response
questionRes
=
network
.
postResponse
(
questionParam
,
BasicConfig
.
MANAGER_QUESTION
);
...
...
@@ -143,7 +144,7 @@ public class LiveMaterial implements AdminAuthorization {
public
void
查询问题并删除
()
{
Map
<
String
,
Object
>
question1Param
=
new
HashMap
<>();
question1Param
.
put
(
"companyId"
,
101
);
question1Param
.
put
(
"companyId"
,
90
);
question1Param
.
put
(
"pageIndex"
,
1
);
question1Param
.
put
(
"pageSize"
,
1
);
...
...
@@ -171,7 +172,7 @@ public class LiveMaterial implements AdminAuthorization {
@Test
(
description
=
"添加图文资料"
,
priority
=
7
)
public
void
添加图文资料
()
{
Map
<
String
,
Object
>
resourceParam
=
new
HashMap
<>();
resourceParam
.
put
(
"companyId"
,
101
);
resourceParam
.
put
(
"companyId"
,
90
);
resourceParam
.
put
(
"resourceTitle"
,
"图文资料2"
);
resourceParam
.
put
(
"resourceButtonTitle"
,
"我要报名"
);
resourceParam
.
put
(
"resourceImg"
,
"https://yun.dui88.com/kjy/image/20210306/1615023456356.jpeg"
);
...
...
@@ -189,7 +190,7 @@ public class LiveMaterial implements AdminAuthorization {
public
void
查询图文并删除
()
{
Map
<
String
,
Object
>
imageTextParam
=
new
HashMap
<>();
imageTextParam
.
put
(
"companyId"
,
101
);
imageTextParam
.
put
(
"companyId"
,
90
);
imageTextParam
.
put
(
"pageIndex"
,
1
);
imageTextParam
.
put
(
"pageSize"
,
1
);
imageTextParam
.
put
(
"resourceTypeList"
,
1
);
...
...
@@ -236,7 +237,7 @@ public class LiveMaterial implements AdminAuthorization {
public
void
查询链接并删除
()
{
Map
<
String
,
Object
>
linkParam
=
new
HashMap
<>();
linkParam
.
put
(
"companyId"
,
101
);
linkParam
.
put
(
"companyId"
,
90
);
linkParam
.
put
(
"pageIndex"
,
1
);
linkParam
.
put
(
"pageSize"
,
1
);
linkParam
.
put
(
"resourceTypeList"
,
9
);
...
...
@@ -266,7 +267,7 @@ public class LiveMaterial implements AdminAuthorization {
@Test
(
description
=
"添加表单"
,
priority
=
11
)
public
void
添加表单
()
{
Map
<
String
,
Object
>
formParam
=
new
HashMap
<>();
formParam
.
put
(
"companyId"
,
101
);
formParam
.
put
(
"companyId"
,
90
);
formParam
.
put
(
"resourceTitle"
,
"表单"
);
formParam
.
put
(
"resourceButtonTitle"
,
"我要报名"
);
formParam
.
put
(
"resourcePicturesArr"
,
Arrays
.
asList
(
"https://yun.dui88.com/kjy/image/20210306/1615033326937.jpg"
));
...
...
@@ -285,7 +286,7 @@ public class LiveMaterial implements AdminAuthorization {
public
void
查询表单并删除
()
{
Map
<
String
,
Object
>
form1Param
=
new
HashMap
<>();
form1Param
.
put
(
"companyId"
,
101
);
form1Param
.
put
(
"companyId"
,
90
);
form1Param
.
put
(
"pageIndex"
,
1
);
form1Param
.
put
(
"pageSize"
,
1
);
form1Param
.
put
(
"resourceTypeList"
,
12
);
...
...
@@ -314,7 +315,7 @@ public class LiveMaterial implements AdminAuthorization {
@Test
(
description
=
"免费领资料"
,
priority
=
13
)
public
void
免费领资料
()
{
Map
<
String
,
Object
>
freeParam
=
new
HashMap
<>();
freeParam
.
put
(
"companyId"
,
101
);
freeParam
.
put
(
"companyId"
,
90
);
freeParam
.
put
(
"resourceTitle"
,
"免费领资料"
);
freeParam
.
put
(
"resourceButtonTitle"
,
"领取资料"
);
freeParam
.
put
(
"resourcePicturesArr"
,
Arrays
.
asList
(
"https://yun.dui88.com/kjy/image/20210306/1615033326937.jpg"
));
...
...
@@ -333,7 +334,7 @@ public class LiveMaterial implements AdminAuthorization {
public
void
删除免费领资料
()
{
Map
<
String
,
Object
>
form1Param
=
new
HashMap
<>();
form1Param
.
put
(
"companyId"
,
101
);
form1Param
.
put
(
"companyId"
,
90
);
form1Param
.
put
(
"pageIndex"
,
1
);
form1Param
.
put
(
"pageSize"
,
1
);
form1Param
.
put
(
"resourceTypeList"
,
11
);
...
...
@@ -362,7 +363,7 @@ public class LiveMaterial implements AdminAuthorization {
@Test
(
description
=
"秒薪测试"
,
priority
=
15
)
public
void
秒薪测试
()
{
Map
<
String
,
Object
>
testParam
=
new
HashMap
<>();
testParam
.
put
(
"companyId"
,
101
);
testParam
.
put
(
"companyId"
,
90
);
testParam
.
put
(
"clueType"
,
1
);
testParam
.
put
(
"mainButtonTitle"
,
"领取门票"
);
testParam
.
put
(
"resourcePicturesArr"
,
Arrays
.
asList
(
"https://yun.dui88.com/kjy/image/20210306/1615033326937.jpg"
));
...
...
@@ -384,7 +385,7 @@ public class LiveMaterial implements AdminAuthorization {
public
void
删除秒薪测试
()
{
Map
<
String
,
Object
>
test1Param
=
new
HashMap
<>();
test1Param
.
put
(
"companyId"
,
101
);
test1Param
.
put
(
"companyId"
,
90
);
test1Param
.
put
(
"pageIndex"
,
1
);
test1Param
.
put
(
"pageSize"
,
1
);
test1Param
.
put
(
"resourceTypeList"
,
13
);
...
...
src/test/java/com/kjj/cases/live/LiveVisitors.java
0 → 100644
View file @
5f9186a8
package
com
.
kjj
.
cases
.
live
;
import
com.alibaba.fastjson.JSON
;
import
com.alibaba.fastjson.JSONObject
;
import
com.kjj.bean.*
;
import
com.kjj.config.BasicConfig
;
import
com.kjj.constants.LiveConstants
;
import
com.kjj.utils.JsonUtil
;
import
io.restassured.response.Response
;
import
org.testng.Assert
;
import
org.testng.annotations.BeforeClass
;
import
org.testng.annotations.Test
;
import
java.util.ArrayList
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.Map
;
public
class
LiveVisitors
implements
AdminAuthorization
{
@BeforeClass
public
void
setUp
()
{
visitorAuth
();
}
public
String
confId_imagetext
;
public
String
confId_form
;
public
String
confId_link
;
public
String
confId_test
;
public
String
confId_free
;
/*访客端权益列表*/
@Test
(
description
=
"访客端权益列表"
,
priority
=
1
)
public
void
访客端权益列表
()
{
try
{
Thread
.
sleep
(
30000
);
}
catch
(
InterruptedException
e
)
{
e
.
printStackTrace
();
}
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"liveId"
,
LiveConstants
.
getValue
(
LiveConstants
.
StringKeyEnum
.
ENCODE_LIVE_ID
.
getKey
()));
Response
response
=
network
.
getResponse
(
params
,
BasicConfig
.
MOBILE_Resource
);
List
<
LiveVisitor
>
liveVisitors
=
JsonUtil
.
parseResponseToListBean
(
response
,
LiveVisitor
.
class
);
LiveVisitor
one
=
liveVisitors
.
get
(
0
);
System
.
out
.
println
(
one
.
getConfId
());
confId_imagetext
=
one
.
getConfId
();
LiveVisitor
two
=
liveVisitors
.
get
(
3
);
System
.
out
.
println
(
two
.
getConfId
());
confId_free
=
two
.
getConfId
();
LiveVisitor
three
=
liveVisitors
.
get
(
4
);
System
.
out
.
println
(
three
.
getConfId
());
confId_form
=
three
.
getConfId
();
LiveVisitor
four
=
liveVisitors
.
get
(
5
);
System
.
out
.
println
(
four
.
getConfId
());
confId_test
=
four
.
getConfId
();
LiveVisitor
five
=
liveVisitors
.
get
(
6
);
System
.
out
.
println
(
four
.
getConfId
());
confId_link
=
five
.
getConfId
();
System
.
out
.
println
(
liveVisitors
);
Assert
.
assertNotNull
(
liveVisitors
,
network
.
message
(
params
,
BasicConfig
.
MOBILE_Resource
,
"查询权益列表失败"
,
response
.
body
().
asString
()));
}
/*表单资料-查询*/
@Test
(
description
=
"表单资料查询"
,
priority
=
2
)
public
ResourceForm
系统表单资料查询
()
{
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"confId"
,
confId_form
);
Response
response
=
network
.
getResponse
(
params
,
BasicConfig
.
MOBILE_Form
);
ResourceForm
agentBeans
=
JsonUtil
.
parseResponseToBean
(
response
,
ResourceForm
.
class
);
System
.
out
.
println
(
JSON
.
toJSONString
(
agentBeans
));
Assert
.
assertNotNull
(
agentBeans
,
network
.
message
(
params
,
BasicConfig
.
MOBILE_Form
,
"查询表单资料失败"
,
response
.
body
().
asString
()));
return
agentBeans
;
}
/*表单资料-提交*/
@Test
(
description
=
"表单资料提交"
,
priority
=
3
)
public
void
系统表单资料提交
()
{
ResourceForm
list
=
系统表单资料查询
();
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"confId"
,
confId_form
);
params
.
put
(
"liveId"
,
LiveConstants
.
getValue
(
LiveConstants
.
StringKeyEnum
.
ENCODE_LIVE_ID
.
getKey
()));
List
<
ResourceForm
.
FieldList
>
fieldList
=
list
.
getFieldList
();
List
<
JSONObject
>
fieldListparam
=
new
ArrayList
<>();
JSONObject
one
=
new
JSONObject
();
one
.
put
(
"fieldId"
,
fieldList
.
get
(
0
).
getFieldId
());
one
.
put
(
"fieldValue"
,
"啦啦啦"
);
JSONObject
two
=
new
JSONObject
();
two
.
put
(
"fieldId"
,
fieldList
.
get
(
1
).
getFieldId
());
two
.
put
(
"fieldValue"
,
"152588101691"
);
fieldListparam
.
add
(
one
);
fieldListparam
.
add
(
two
);
params
.
put
(
"fieldList"
,
fieldListparam
);
System
.
out
.
println
(
JSONObject
.
toJSONString
(
params
));
Response
response
=
network
.
postResponse
(
params
,
BasicConfig
.
MOBILE_FormSubmit
);
boolean
data
=
response
.
jsonPath
().
getBoolean
(
"data"
);
Assert
.
assertTrue
(
data
,
network
.
message
(
params
,
BasicConfig
.
MOBILE_FormSubmit
,
"提交表单资料失败"
,
response
.
body
().
asString
()));
}
/*免费领资料-查询*/
@Test
(
description
=
"免费领资料查询"
,
priority
=
4
)
public
void
免费领资料查询
()
{
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"confId"
,
confId_free
);
params
.
put
(
"liveid"
,
LiveConstants
.
getValue
(
LiveConstants
.
StringKeyEnum
.
ENCODE_LIVE_ID
.
getKey
()));
Response
response
=
network
.
getResponse
(
params
,
BasicConfig
.
MOBILE_ResourceFree
);
ResourceFree
agentBeans
=
JsonUtil
.
parseResponseToBean
(
response
,
ResourceFree
.
class
);
System
.
out
.
println
(
JSON
.
toJSONString
(
agentBeans
));
Assert
.
assertNotNull
(
agentBeans
,
network
.
message
(
params
,
BasicConfig
.
MOBILE_ResourceFree
,
"查询免费领资料失败"
,
response
.
body
().
asString
()));
}
/*免费领资料-领取*/
@Test
(
description
=
"免费领资料领取"
,
priority
=
5
)
public
void
免费领资料领取
()
{
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"confId"
,
confId_free
);
params
.
put
(
"liveId"
,
LiveConstants
.
getValue
(
LiveConstants
.
StringKeyEnum
.
ENCODE_LIVE_ID
.
getKey
()));
Response
response
=
network
.
getResponse
(
params
,
BasicConfig
.
MOBILE_Link
);
boolean
invite
=
response
.
jsonPath
().
getBoolean
(
"success"
);
Assert
.
assertTrue
(
invite
,
network
.
message
(
params
,
BasicConfig
.
MOBILE_Link
,
"领取免费领资料失败"
,
response
.
body
().
asString
()));
}
/*链接小程序资料-查询*/
@Test
(
description
=
"链接资料查询"
,
priority
=
6
)
public
void
链接小程序资料查询
()
{
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"confId"
,
confId_link
);
Response
response
=
network
.
getResponse
(
params
,
BasicConfig
.
MOBILE_Link1
);
ResourceLink
agentBeans
=
JsonUtil
.
parseResponseToBean
(
response
,
ResourceLink
.
class
);
System
.
out
.
println
(
JSON
.
toJSONString
(
agentBeans
));
Assert
.
assertNotNull
(
agentBeans
,
network
.
message
(
params
,
BasicConfig
.
MOBILE_Link1
,
"查询链接资料失败"
,
response
.
body
().
asString
()));
}
/*链接资料资料-领取*/
@Test
(
description
=
"链接资料领取"
,
priority
=
7
)
public
void
链接小程序资料领取
()
{
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"confId"
,
confId_link
);
params
.
put
(
"liveId"
,
LiveConstants
.
getValue
(
LiveConstants
.
StringKeyEnum
.
ENCODE_LIVE_ID
.
getKey
()));
Response
response
=
network
.
getResponse
(
params
,
BasicConfig
.
MOBILE_Link
);
boolean
data
=
response
.
jsonPath
().
getBoolean
(
"success"
);
Assert
.
assertTrue
(
data
,
network
.
message
(
params
,
BasicConfig
.
MOBILE_Link
,
"领取链接资料失败"
,
response
.
body
().
asString
()));
}
/*秒薪测试配置-查询*/
@Test
(
description
=
"秒薪测试查询"
,
priority
=
8
)
public
ResourceTestDetail
秒薪测试查询
()
{
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"confId"
,
confId_test
);
Response
response
=
network
.
getResponse
(
params
,
BasicConfig
.
MOBILE_ResourceTestDetail
);
ResourceTestDetail
agentBeans
=
JsonUtil
.
parseResponseToBean
(
response
,
ResourceTestDetail
.
class
);
System
.
out
.
println
(
JSON
.
toJSONString
(
agentBeans
));
Assert
.
assertNotNull
(
agentBeans
,
network
.
message
(
params
,
BasicConfig
.
MOBILE_ResourceTestDetail
,
"查询秒薪测试失败"
,
response
.
body
().
asString
()));
return
agentBeans
;
}
/*秒薪测试-参与*/
@Test
(
description
=
"秒薪测试参与"
,
priority
=
9
)
public
void
秒薪测试参与
()
{
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"liveId"
,
LiveConstants
.
getValue
(
LiveConstants
.
StringKeyEnum
.
ENCODE_LIVE_ID
.
getKey
()));
Response
response
=
network
.
getResponse
(
params
,
BasicConfig
.
MOBILE_ResourceTestParticipate
);
List
<
ResourceTestParticipate
>
agentBeans
=
JsonUtil
.
parseResponseToListBean
(
response
,
ResourceTestParticipate
.
class
);
System
.
out
.
println
(
JSON
.
toJSONString
(
agentBeans
));
Assert
.
assertNotNull
(
agentBeans
,
network
.
message
(
params
,
BasicConfig
.
MOBILE_ResourceTestParticipate
,
"秒薪测试参与失败"
,
response
.
body
().
asString
()));
}
/*权益测试-详情*/
@Test
(
description
=
"权益测试提交"
,
priority
=
10
)
public
void
权益测试详情提交
()
{
ResourceTestDetail
list
=
秒薪测试查询
();
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"confId"
,
confId_test
);
params
.
put
(
"liveId"
,
LiveConstants
.
getValue
(
LiveConstants
.
StringKeyEnum
.
ENCODE_LIVE_ID
.
getKey
()));
List
<
ResourceTestDetail
.
FieldList
>
fieldList
=
list
.
getFieldList
();
List
<
JSONObject
>
fieldListparam
=
new
ArrayList
<>();
JSONObject
one
=
new
JSONObject
();
one
.
put
(
"fieldId"
,
fieldList
.
get
(
0
).
getFieldId
());
one
.
put
(
"fieldValue"
,
"100000"
);
one
.
put
(
"fieldSubmitIds"
,
""
);
fieldListparam
.
add
(
one
);
params
.
put
(
"fieldList"
,
fieldListparam
);
System
.
out
.
println
(
JSONObject
.
toJSONString
(
params
));
Response
response
=
network
.
postResponse
(
params
,
BasicConfig
.
MOBILE_ResourceTestSubmit
);
boolean
data
=
response
.
jsonPath
().
getBoolean
(
"data"
);
Assert
.
assertTrue
(
data
,
network
.
message
(
params
,
BasicConfig
.
MOBILE_ResourceTestSubmit
,
"提交秒薪测试失败"
,
response
.
body
().
asString
()));
}
}
src/test/java/com/kjj/cases/live/OpenLive.java
View file @
5f9186a8
...
...
@@ -18,7 +18,7 @@ public class OpenLive implements AdminAuthorization {
public
void
开启直播
()
{
Map
<
String
,
Object
>
openParam
=
new
HashMap
<>();
openParam
.
put
(
"liveid"
,
LiveConstants
.
getValue
(
LiveConstants
.
StringKeyEnum
.
LIVE_ID
.
getKey
()));
openParam
.
put
(
"cid"
,
101
);
openParam
.
put
(
"cid"
,
90
);
Response
openRes
=
network
.
postResponse
(
openParam
,
BasicConfig
.
ANCHOR_OPEN
);
Object
data
=
openRes
.
jsonPath
().
getJsonObject
(
"data"
);
System
.
out
.
println
(
data
);
...
...
src/test/java/com/kjj/cases/live/Procurator.java
View file @
5f9186a8
...
...
@@ -25,8 +25,8 @@ public class Procurator implements AdminAuthorization{
}
/*代理人首页直播列表*/
@Test
(
description
=
"代理人首页"
,
priority
=
1
)
public
void
Agent
()
{
@Test
(
description
=
"代理人首页
"
,
priority
=
1
)
public
void
代理人直播列表
()
{
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"pageIndex"
,
1
);
...
...
@@ -38,13 +38,11 @@ public class Procurator implements AdminAuthorization{
System
.
out
.
println
(
JSON
.
toJSONString
(
agentBeans
));
Assert
.
assertNotNull
(
bean
,
network
.
message
(
params
,
BasicConfig
.
MOBILE_Procurator
,
"查询直播列表失败"
,
response
.
body
().
asString
()));
}
}
/*代理人首页已结束的直播列表*/
@Test
(
description
=
"代理人首页已结束的直播列表"
,
priority
=
2
)
public
void
AgentLiveEndList
()
{
public
void
代理人直播结束列表
()
{
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"pageIndex"
,
1
);
...
...
@@ -63,7 +61,7 @@ public class Procurator implements AdminAuthorization{
/*代理人信息*/
@Test
(
description
=
"代理人信息"
,
priority
=
3
)
public
void
AgentCardInfo
()
{
public
void
代理人名片信息
()
{
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
Response
response
=
network
.
getResponse
(
params
,
BasicConfig
.
MOBILE_AgentCardInfo
);
...
...
@@ -74,7 +72,7 @@ public class Procurator implements AdminAuthorization{
/*代理人信息*/
@Test
(
description
=
"代理人修改信息"
,
priority
=
4
)
public
void
AgentEditCardInfo
()
{
public
void
编辑代理人信息
()
{
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"sellerName"
,
"你好测试"
+
RandomUtils
.
nextInt
(
1
,
100
));
...
...
@@ -86,5 +84,4 @@ public class Procurator implements AdminAuthorization{
System
.
out
.
println
(
JSON
.
toJSONString
(
agentBeans
));
Assert
.
assertNotNull
(
agentBeans
,
network
.
message
(
params
,
BasicConfig
.
MOBILE_AgentEditCardInfo
,
"修改代理人信息失败"
,
response
.
body
().
asString
()));
}
}
src/test/java/com/kjj/cases/live/SaveAndUpdate.java
View file @
5f9186a8
...
...
@@ -61,7 +61,6 @@ public class SaveAndUpdate implements AdminAuthorization {
Object
data
=
response
.
jsonPath
().
getJsonObject
(
"data"
);
System
.
out
.
println
(
data
);
Assert
.
assertNotNull
(
data
,
network
.
message
(
params
,
BasicConfig
.
MANAGER_GETCONFDETAIL
,
"查询配置失败"
,
response
.
body
().
asString
()));
}
...
...
src/test/java/com/kjj/config/BasicConfig.java
View file @
5f9186a8
This diff is collapsed.
Click to expand it.
src/test/java/com/kjj/utils/JsonUtil.java
View file @
5f9186a8
...
...
@@ -33,11 +33,17 @@ public class JsonUtil {
* @param <T>
* @return
*/
public
static
<
T
>
List
<
T
>
parseResponseTo
List
Bean
(
Response
response
,
Class
<
T
>
tClass
){
public
static
<
T
>
List
<
T
>
parseResponseTo
Page
Bean
(
Response
response
,
Class
<
T
>
tClass
){
Object
data
=
response
.
jsonPath
().
getJsonObject
(
"data"
);
String
str
=
new
JsonBuilder
(
data
).
toString
();
JSONObject
jsonObject
=
JSON
.
parseObject
(
str
);
JSONArray
array
=
jsonObject
.
getJSONArray
(
"list"
);
return
array
.
toJavaList
(
tClass
);
}
public
static
<
T
>
List
<
T
>
parseResponseToListBean
(
Response
response
,
Class
<
T
>
tClass
){
Object
data
=
response
.
jsonPath
().
getJsonObject
(
"data"
);
String
str
=
new
JsonBuilder
(
data
).
toString
();
return
JSON
.
parseArray
(
str
,
tClass
);
}
}
src/test/liveTestNG.xml
View file @
5f9186a8
...
...
@@ -26,33 +26,42 @@
</test>
<test
preserve-order=
"true"
name=
"访客券码领取"
>
<classes>
<class
name=
"com.kjj.cases.live.User"
/>
</classes>
</test>
<test
preserve-order=
"true"
name=
"访客券码领取"
>
<classes>
<class
name=
"com.kjj.cases.live.User"
/>
</classes>
</test>
<test
preserve-order=
"true"
name=
"指定中奖"
>
<classes>
<class
name=
"com.kjj.cases.live.DesignatedWinner"
/>
</classes>
</test>
<test
preserve-order=
"true"
name=
"获取代理人排行榜及客户信息"
>
<classes>
<class
name=
"com.kjj.cases.live.LiveAgent"
/>
</classes>
</test>
<test
preserve-order=
"true"
name=
"助播-开启直播"
>
<classes>
<class
name=
"com.kjj.cases.live.OpenLive"
/>
</classes>
</test>
<test
preserve-order=
"true"
name=
"助播-结束直播"
>
<!-- <test preserve-order="true" name="指定中奖">-->
<!-- <classes>-->
<!-- <class name="com.kjj.cases.live.DesignatedWinner"/>-->
<!-- </classes>-->
<!-- </test>-->
<test
preserve-order=
"true"
name=
"访客领取资料"
>
<classes>
<class
name=
"com.kjj.cases.live.
CloseLive
"
/>
<class
name=
"com.kjj.cases.live.
LiveVisitors
"
/>
</classes>
</test>
<!-- <test preserve-order="true" name="获取代理人排行榜及客户信息">-->
<!-- <classes>-->
<!-- <class name="com.kjj.cases.live.LiveAgent"/>-->
<!-- </classes>-->
<!-- </test>-->
<!-- <test preserve-order="true" name="助播-结束直播">-->
<!-- <classes>-->
<!-- <class name="com.kjj.cases.live.CloseLive"/>-->
<!-- </classes>-->
<!-- </test>-->
...
...
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