Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
xm-autotest-live
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xiamai-test
xm-autotest-live
Commits
f1b16cb6
Commit
f1b16cb6
authored
Feb 08, 2021
by
zhangying
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增客户端的case
parent
ed7cfe2d
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
67 additions
and
8 deletions
+67
-8
src/main/java/com/live/cases/apollo/TestAuthenticateMqtt.java
+54
-0
src/main/java/com/live/cases/apollo/TestChangeCourseState.java
+6
-8
src/main/resources/apicase/apollo.json
+7
-0
No files found.
src/main/java/com/live/cases/apollo/TestAuthenticateMqtt.java
0 → 100644
View file @
f1b16cb6
package
com
.
live
.
cases
.
apollo
;
import
com.alibaba.fastjson.JSONObject
;
import
com.live.enums.ApiModele
;
import
com.live.enums.RequestType
;
import
com.live.enums.Terminal
;
import
com.live.utils.XMBaseTest
;
import
com.live.xmutils.GetLiveCourseData
;
import
org.testng.Assert
;
import
org.testng.annotations.BeforeMethod
;
import
org.testng.annotations.Test
;
/**
* @author zhangying
* @date 2021/2/8 11:42
*/
public
class
TestAuthenticateMqtt
extends
XMBaseTest
{
@BeforeMethod
public
void
beforeTest
()
{
xmAppApi
.
setApiModule
(
ApiModele
.
CloudClass_apollo
)
// API 所属模块 必传 读取配置文件config.properties配置的api地址
.
setApiName
(
"API_authenticateMqtt"
)
// API 名称 必传
.
setLoginUser
(
"zhangy-b"
)
// http 接口,测试账号 必传
.
setTerminal
(
Terminal
.
B
);
// 所属端位(B端,C端,M端等, 必传)
super
.
beforeTest
();
}
/**
* 测试直播客户端查看回放
*/
@Test
public
void
testAuthenticateMqtt
()
{
GetLiveCourseData
getLiveCourseData
=
new
GetLiveCourseData
();
JSONObject
largeClassCourse
=
getLiveCourseData
.
createLargeClassLive
();
String
liveCourseId
=
largeClassCourse
.
getString
(
"result"
);
System
.
out
.
println
(
"liveCourseId ="
+
liveCourseId
);
JSONObject
jsonObject
=
new
JSONObject
();
jsonObject
.
put
(
"liveCourseId"
,
liveCourseId
);
jsonObject
.
put
(
"userId"
,
xmAppApi
.
getLoginInfo
().
getUid
());
jsonObject
.
put
(
"role"
,
"ANCHOR"
);
jsonObject
.
put
(
"visitorType"
,
"PLAYBACK"
);
xmAppApi
.
doRequest
(
RequestType
.
JSON
,
params
,
jsonObject
.
toJSONString
(),
headers
);
System
.
out
.
println
(
xmAppApi
);
JSONObject
jsonBody
=
xmAppApi
.
getBodyInJSON
();
Assert
.
assertEquals
(
"true"
,
jsonBody
.
getString
(
"success"
));
Assert
.
assertEquals
(
"操作成功!"
,
jsonBody
.
getString
(
"message"
));
Assert
.
assertEquals
(
"liveMessageTopic"
,
jsonBody
.
getJSONObject
(
"result"
).
getString
(
"mqttTopic"
));
}
}
src/main/java/com/live/cases/apollo/TestChangeCourseState.java
View file @
f1b16cb6
...
...
@@ -32,14 +32,9 @@ public class TestChangeCourseState extends XMBaseTest {
@Test
public
void
testChangeCourseState
()
{
GetLiveCourseData
getLiveCourseData
=
new
GetLiveCourseData
();
JSONObject
largeClassCourse
=
getLiveCourseData
.
getLargeClassLiveList
();
JSONObject
largeClassCourse
=
getLiveCourseData
.
createLargeClassLive
();
JSONObject
liveCourse
=
largeClassCourse
.
getJSONObject
(
"result"
).
getJSONArray
(
"records"
).
getJSONObject
(
0
);
String
liveCourseId
=
(
String
)
liveCourse
.
get
(
"liveCourseId"
);
if
(
liveCourseId
==
null
){
largeClassCourse
=
getLiveCourseData
.
createLargeClassLive
();
liveCourseId
=
(
String
)
largeClassCourse
.
get
(
"liveCourseId"
);
}
String
liveCourseId
=
largeClassCourse
.
getString
(
"result"
);
System
.
out
.
println
(
"liveCourseId ="
+
liveCourseId
);
JSONObject
jsonObject
=
new
JSONObject
();
...
...
@@ -50,10 +45,13 @@ public class TestChangeCourseState extends XMBaseTest {
System
.
out
.
println
(
xmAppApi
);
JSONObject
jsonBody
=
xmAppApi
.
getBodyInJSON
();
JSONObject
classLiveList
=
getLiveCourseData
.
getLargeClassLiveList
();
Assert
.
assertEquals
(
"true"
,
jsonBody
.
getString
(
"success"
));
Assert
.
assertEquals
(
"操作成功!"
,
jsonBody
.
getString
(
"message"
));
Assert
.
assertEquals
(
"STARTING"
,
classLiveList
.
getJSONObject
(
"result"
).
getJSONArray
(
"records"
).
getJSONObject
(
0
).
getString
(
"courseState"
));
Assert
.
assertEquals
(
liveCourseId
,
classLiveList
.
getJSONObject
(
"result"
).
getJSONArray
(
"records"
).
getJSONObject
(
0
).
getString
(
"liveCourseId"
));
}
}
src/main/resources/apicase/apollo.json
View file @
f1b16cb6
...
...
@@ -184,5 +184,11 @@
"apiContentType"
:
"application/json;charset=utf-8"
,
"apiName"
:
"课次添加学员"
,
"desc"
:
"课次添加学员"
},
"API_authenticateMqtt"
:
{
"apiPath"
:
"/apollo/anon/customerLive/authenticateMqtt"
,
"apiContentType"
:
"application/json;charset=utf-8"
,
"apiName"
:
"客户端MQTT授权"
,
"desc"
:
"客户端MQTT授权"
}
}
\ No newline at end of file
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