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
4709658c
Commit
4709658c
authored
Mar 19, 2021
by
别湘灵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge branch 'master' of /Users/biexiangling/Documents/kejiji with conflicts.
parent
ba4316d5
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
44 additions
and
13 deletions
+44
-13
compiler.xml
.idea/compiler.xml
+1
-1
AgentBean.java
src/test/java/com/kjj/bean/AgentBean.java
+0
-2
LiveVisitor.java
src/test/java/com/kjj/bean/LiveVisitor.java
+4
-0
LiveVisitors.java
src/test/java/com/kjj/cases/live/LiveVisitors.java
+33
-0
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
+1
-1
No files found.
.idea/compiler.xml
View file @
4709658c
...
@@ -8,8 +8,8 @@
...
@@ -8,8 +8,8 @@
<processorPath
useClasspath=
"false"
>
<processorPath
useClasspath=
"false"
>
<entry
name=
"$USER_HOME$/Applications/gradle-6.6.1/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.12/48e4e5d60309ebd833bc528dcf77668eab3cd72c/lombok-1.18.12.jar"
/>
<entry
name=
"$USER_HOME$/Applications/gradle-6.6.1/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.12/48e4e5d60309ebd833bc528dcf77668eab3cd72c/lombok-1.18.12.jar"
/>
</processorPath>
</processorPath>
<module
name=
"kjj.test"
/>
<module
name=
"kjj.main"
/>
<module
name=
"kjj.main"
/>
<module
name=
"kjj.test"
/>
</profile>
</profile>
<profile
name=
"Maven default annotation processors profile"
enabled=
"true"
>
<profile
name=
"Maven default annotation processors profile"
enabled=
"true"
>
<sourceOutputDir
name=
"target/generated-sources/annotations"
/>
<sourceOutputDir
name=
"target/generated-sources/annotations"
/>
...
...
src/test/java/com/kjj/bean/AgentBean.java
View file @
4709658c
...
@@ -21,6 +21,4 @@ public class AgentBean {
...
@@ -21,6 +21,4 @@ public class AgentBean {
private
String
companyLogo
;
private
String
companyLogo
;
private
Long
appointmentNum
;
private
Long
appointmentNum
;
private
int
inviteAuthStatus
;
private
int
inviteAuthStatus
;
}
}
src/test/java/com/kjj/bean/LiveVisitor.java
0 → 100644
View file @
4709658c
package
com
.
kjj
.
bean
;
public
class
LiveVisitor
{
}
src/test/java/com/kjj/cases/live/LiveVisitors.java
0 → 100644
View file @
4709658c
package
com
.
kjj
.
cases
.
live
;
import
com.alibaba.fastjson.JSON
;
import
com.kjj.bean.AgentBean
;
import
com.kjj.config.BasicConfig
;
import
com.kjj.utils.JsonUtil
;
import
io.restassured.response.Response
;
import
org.testng.Assert
;
import
org.testng.annotations.Test
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.Map
;
public
class
LiveVisitors
{
/*代理人首页直播列表*/
@Test
(
description
=
"代理人首页 "
,
priority
=
1
)
public
void
代理人直播列表
()
{
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"pageIndex"
,
1
);
params
.
put
(
"pageSize"
,
10
);
Response
response
=
network
.
getResponse
(
params
,
BasicConfig
.
MOBILE_Procurator
);
List
<
AgentBean
>
agentBeans
=
JsonUtil
.
parseResponseToListBean
(
response
,
AgentBean
.
class
);
if
(
agentBeans
.
size
()
>
0
)
{
AgentBean
bean
=
agentBeans
.
get
(
0
);
System
.
out
.
println
(
JSON
.
toJSONString
(
agentBeans
));
Assert
.
assertNotNull
(
bean
,
network
.
message
(
params
,
BasicConfig
.
MOBILE_Procurator
,
"查询直播列表失败"
,
response
.
body
().
asString
()));
}
}
}
src/test/java/com/kjj/cases/live/Procurator.java
View file @
4709658c
...
@@ -25,8 +25,8 @@ public class Procurator implements AdminAuthorization{
...
@@ -25,8 +25,8 @@ public class Procurator implements AdminAuthorization{
}
}
/*代理人首页直播列表*/
/*代理人首页直播列表*/
@Test
(
description
=
"代理人首页"
,
priority
=
1
)
@Test
(
description
=
"代理人首页
"
,
priority
=
1
)
public
void
Agent
()
{
public
void
代理人直播列表
()
{
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"pageIndex"
,
1
);
params
.
put
(
"pageIndex"
,
1
);
...
@@ -38,13 +38,11 @@ public class Procurator implements AdminAuthorization{
...
@@ -38,13 +38,11 @@ public class Procurator implements AdminAuthorization{
System
.
out
.
println
(
JSON
.
toJSONString
(
agentBeans
));
System
.
out
.
println
(
JSON
.
toJSONString
(
agentBeans
));
Assert
.
assertNotNull
(
bean
,
network
.
message
(
params
,
BasicConfig
.
MOBILE_Procurator
,
"查询直播列表失败"
,
response
.
body
().
asString
()));
Assert
.
assertNotNull
(
bean
,
network
.
message
(
params
,
BasicConfig
.
MOBILE_Procurator
,
"查询直播列表失败"
,
response
.
body
().
asString
()));
}
}
}
}
/*代理人首页已结束的直播列表*/
/*代理人首页已结束的直播列表*/
@Test
(
description
=
"代理人首页已结束的直播列表"
,
priority
=
2
)
@Test
(
description
=
"代理人首页已结束的直播列表"
,
priority
=
2
)
public
void
AgentLiveEndList
()
{
public
void
代理人直播结束列表
()
{
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"pageIndex"
,
1
);
params
.
put
(
"pageIndex"
,
1
);
...
@@ -63,7 +61,7 @@ public class Procurator implements AdminAuthorization{
...
@@ -63,7 +61,7 @@ public class Procurator implements AdminAuthorization{
/*代理人信息*/
/*代理人信息*/
@Test
(
description
=
"代理人信息"
,
priority
=
3
)
@Test
(
description
=
"代理人信息"
,
priority
=
3
)
public
void
AgentCardInfo
()
{
public
void
代理人名片信息
()
{
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
Response
response
=
network
.
getResponse
(
params
,
BasicConfig
.
MOBILE_AgentCardInfo
);
Response
response
=
network
.
getResponse
(
params
,
BasicConfig
.
MOBILE_AgentCardInfo
);
...
@@ -74,7 +72,7 @@ public class Procurator implements AdminAuthorization{
...
@@ -74,7 +72,7 @@ public class Procurator implements AdminAuthorization{
/*代理人信息*/
/*代理人信息*/
@Test
(
description
=
"代理人修改信息"
,
priority
=
4
)
@Test
(
description
=
"代理人修改信息"
,
priority
=
4
)
public
void
AgentEditCardInfo
()
{
public
void
编辑代理人信息
()
{
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"sellerName"
,
"你好测试"
+
RandomUtils
.
nextInt
(
1
,
100
));
params
.
put
(
"sellerName"
,
"你好测试"
+
RandomUtils
.
nextInt
(
1
,
100
));
...
@@ -86,5 +84,4 @@ public class Procurator implements AdminAuthorization{
...
@@ -86,5 +84,4 @@ public class Procurator implements AdminAuthorization{
System
.
out
.
println
(
JSON
.
toJSONString
(
agentBeans
));
System
.
out
.
println
(
JSON
.
toJSONString
(
agentBeans
));
Assert
.
assertNotNull
(
agentBeans
,
network
.
message
(
params
,
BasicConfig
.
MOBILE_AgentEditCardInfo
,
"修改代理人信息失败"
,
response
.
body
().
asString
()));
Assert
.
assertNotNull
(
agentBeans
,
network
.
message
(
params
,
BasicConfig
.
MOBILE_AgentEditCardInfo
,
"修改代理人信息失败"
,
response
.
body
().
asString
()));
}
}
}
}
src/test/java/com/kjj/cases/live/SaveAndUpdate.java
View file @
4709658c
...
@@ -58,7 +58,6 @@ public class SaveAndUpdate implements AdminAuthorization {
...
@@ -58,7 +58,6 @@ public class SaveAndUpdate implements AdminAuthorization {
Object
data
=
response
.
jsonPath
().
getJsonObject
(
"data"
);
Object
data
=
response
.
jsonPath
().
getJsonObject
(
"data"
);
System
.
out
.
println
(
data
);
System
.
out
.
println
(
data
);
Assert
.
assertNotNull
(
data
,
network
.
message
(
params
,
BasicConfig
.
MANAGER_GETCONFDETAIL
,
"查询配置失败"
,
response
.
body
().
asString
()));
Assert
.
assertNotNull
(
data
,
network
.
message
(
params
,
BasicConfig
.
MANAGER_GETCONFDETAIL
,
"查询配置失败"
,
response
.
body
().
asString
()));
}
}
...
...
src/test/java/com/kjj/config/BasicConfig.java
View file @
4709658c
...
@@ -4,7 +4,7 @@ public class BasicConfig {
...
@@ -4,7 +4,7 @@ public class BasicConfig {
public
static
int
apiCount
;
//接口数量统计
public
static
int
apiCount
;
//接口数量统计
// 是否开启钉钉机器人推送
// 是否开启钉钉机器人推送
public
static
final
boolean
isPushReport
=
tru
e
;
//true
public
static
final
boolean
isPushReport
=
fals
e
;
//true
// 代理人微信昵称
// 代理人微信昵称
public
static
final
String
WECHAT_NAME
=
"嘿保险"
;
//true
public
static
final
String
WECHAT_NAME
=
"嘿保险"
;
//true
...
...
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