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
667f052a
Commit
667f052a
authored
Mar 04, 2021
by
zhangying
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增2个接口
parent
46272924
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
130 additions
and
0 deletions
+130
-0
src/main/java/com/live/cases/liveClientT/cloundClass/TestRelationLessonFile.java
+61
-0
src/main/java/com/live/cases/liveClientT/cloundClass/TestTencentStartRecord.java
+54
-0
src/main/resources/apicase/apollo.json
+15
-0
No files found.
src/main/java/com/live/cases/liveClientT/cloundClass/TestRelationLessonFile.java
0 → 100644
View file @
667f052a
package
com
.
live
.
cases
.
liveClientT
.
cloundClass
;
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
;
import
java.util.ArrayList
;
import
java.util.List
;
/**
* @author zhangying
* @date 2021/3/4 17:29
*/
public
class
TestRelationLessonFile
extends
XMBaseTest
{
@BeforeMethod
public
void
beforeTest
()
{
xmAppApi
.
setApiModule
(
ApiModele
.
CloudClass_apollo
)
// API 所属模块 必传 读取配置文件config.properties配置的api地址
.
setApiName
(
"API_relationLessonFile"
)
// API 名称 必传
.
setLoginUser
(
"zhangy-b"
)
// http 接口,测试账号 必传
.
setTerminal
(
Terminal
.
B
);
// 所属端位(B端,C端,M端等, 必传)
dal
.
setCase_owner
(
"张莹"
);
super
.
beforeTest
();
System
.
out
.
println
(
xmAppApi
);
}
/**
* 测试直播间上传课件
*/
@Test
public
void
testRelationLessonFile
()
throws
InterruptedException
{
GetLiveCourseData
getLiveCourseData
=
new
GetLiveCourseData
();
JSONObject
largeCourse
=
getLiveCourseData
.
createLargeClassLive
();
String
liveCourseId
=
largeCourse
.
getString
(
"result"
);
System
.
out
.
println
(
"liveCourseId ="
+
liveCourseId
);
List
addFolderIds
=
new
ArrayList
();
addFolderIds
.
add
(
"1367380611227922433"
);
System
.
out
.
println
(
"addFolderIds = "
+
addFolderIds
);
JSONObject
jsonObject
=
new
JSONObject
();
jsonObject
.
put
(
"liveCourseId"
,
liveCourseId
);
jsonObject
.
put
(
"operatorId"
,
xmAppApi
.
getLoginInfo
().
getAid
());
jsonObject
.
put
(
"operatorType"
,
2
);
jsonObject
.
put
(
"addFolderIds"
,
addFolderIds
);
xmAppApi
.
doRequest
(
RequestType
.
JSON
,
params
,
jsonObject
.
toJSONString
(),
headers
);
JSONObject
jsonBody
=
xmAppApi
.
getBodyInJSON
();
System
.
out
.
println
(
"jsonBody =="
+
jsonBody
);
Assert
.
assertEquals
(
"true"
,
jsonBody
.
getString
(
"success"
));
Assert
.
assertEquals
(
"操作成功!"
,
jsonBody
.
getString
(
"message"
));
// Assert.assertNotEquals(null, jsonBody.getJSONObject("result"));
}
}
src/main/java/com/live/cases/liveClientT/cloundClass/TestTencentStartRecord.java
0 → 100644
View file @
667f052a
package
com
.
live
.
cases
.
liveClientT
.
cloundClass
;
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
;
import
java.util.ArrayList
;
import
java.util.List
;
/**
* @author zhangying
* @date 2021/3/4 17:29
*/
public
class
TestTencentStartRecord
extends
XMBaseTest
{
@BeforeMethod
public
void
beforeTest
()
{
xmAppApi
.
setApiModule
(
ApiModele
.
CloudClass_apollo
)
// API 所属模块 必传 读取配置文件config.properties配置的api地址
.
setApiName
(
"API_tencentStartRecord"
)
// API 名称 必传
.
setLoginUser
(
"zhangy-b"
)
// http 接口,测试账号 必传
.
setTerminal
(
Terminal
.
B
);
// 所属端位(B端,C端,M端等, 必传)
dal
.
setCase_owner
(
"张莹"
);
super
.
beforeTest
();
System
.
out
.
println
(
xmAppApi
);
}
/**
* 测试直播间开启录制
*/
@Test
public
void
testTencentStartRecord
()
throws
InterruptedException
{
GetLiveCourseData
getLiveCourseData
=
new
GetLiveCourseData
();
JSONObject
largeCourse
=
getLiveCourseData
.
createLargeClassLive
();
String
liveCourseId
=
largeCourse
.
getString
(
"result"
);
System
.
out
.
println
(
"liveCourseId ="
+
liveCourseId
);
JSONObject
jsonObject
=
new
JSONObject
();
jsonObject
.
put
(
"liveCourseId"
,
liveCourseId
);
xmAppApi
.
doRequest
(
RequestType
.
JSON
,
params
,
jsonObject
.
toJSONString
(),
headers
);
JSONObject
jsonBody
=
xmAppApi
.
getBodyInJSON
();
System
.
out
.
println
(
"jsonBody =="
+
jsonBody
);
Assert
.
assertEquals
(
"true"
,
jsonBody
.
getString
(
"success"
));
Assert
.
assertEquals
(
"操作成功!"
,
jsonBody
.
getString
(
"message"
));
Assert
.
assertEquals
(
"200"
,
jsonBody
.
getString
(
"code"
));
}
}
src/main/resources/apicase/apollo.json
View file @
667f052a
...
...
@@ -208,5 +208,19 @@
"apiContentType"
:
"application/json;charset=utf-8"
,
"apiName"
:
"每课学堂APP老师查看直播回放"
,
"desc"
:
"每课学堂APP老师查看直播回放"
},
"API_relationLessonFile"
:
{
"apiPath"
:
"/apollo/public/businessLive/relationLessonFile"
,
"apiContentType"
:
"application/json;charset=UTF-8"
,
"apiName"
:
"客户端上传课件"
,
"desc"
:
"客户端上传课件"
},
"API_tencentStartRecord"
:
{
"apiPath"
:
"/apollo/public/businessLive/tencentStartRecord"
,
"apiContentType"
:
"application/json;charset=UTF-8"
,
"apiName"
:
"客户端开启回放录制"
,
"desc"
:
"客户端开启回放录制"
}
}
\ 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