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
8629add9
Commit
8629add9
authored
Feb 02, 2021
by
zhangying
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add 3 case
parent
c4ebaeea
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
162 additions
and
0 deletions
+162
-0
src/main/java/com/live/cases/largeClassLive/TestExportLargeClassLiveAsync.java
+48
-0
src/main/java/com/live/cases/largeClassLive/TestQueryUserReplayRecordPage.java
+48
-0
src/main/java/com/live/cases/largeClassLive/TestTransformRecordUrl.java
+47
-0
src/main/resources/apicase/apollo.json
+19
-0
No files found.
src/main/java/com/live/cases/largeClassLive/TestExportLargeClassLiveAsync.java
0 → 100644
View file @
8629add9
package
com
.
live
.
cases
.
largeClassLive
;
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
org.testng.Assert
;
import
org.testng.annotations.BeforeMethod
;
import
org.testng.annotations.Test
;
/**
* Created by zhangying on 2020/02/02
*/
public
class
TestExportLargeClassLiveAsync
extends
XMBaseTest
{
@BeforeMethod
public
void
beforeTest
()
{
xmAppApi
.
setApiModule
(
ApiModele
.
CloudClass_apollo
)
// API 所属模块 必传 读取配置文件config.properties配置的api地址
.
setApiName
(
"API_exportLargeClassLiveAsync"
)
// API 名称 必传
.
setLoginUser
(
"zhangy-b"
)
// http 接口,测试账号 必传
.
setTerminal
(
Terminal
.
B
);
// 所属端位(B端,C端,M端等, 必传)
super
.
beforeTest
();
}
/**
* 直播课回放记录-导出
*/
@Test
public
void
testExportLargeClassLiveAsync
()
{
JSONObject
jsonObject
=
new
JSONObject
();
jsonObject
.
put
(
"exportLiveType"
,
"0"
);
jsonObject
.
put
(
"liveCourseId"
,
"1356196461296828418"
);
System
.
out
.
println
(
"jsonObject ="
+
jsonObject
);
xmAppApi
.
doRequest
(
RequestType
.
JSON
,
params
,
jsonObject
.
toJSONString
(),
headers
);
System
.
out
.
println
(
xmAppApi
);
JSONObject
jsonBody
=
xmAppApi
.
getBodyInJSON
();
Assert
.
assertEquals
(
jsonBody
.
getJSONObject
(
"result"
).
getString
(
"bizType"
),
"EXPORT_LIVE_PLAY_BACK"
);
Assert
.
assertEquals
(
"true"
,
jsonBody
.
getString
(
"success"
));
Assert
.
assertEquals
(
"200"
,
jsonBody
.
getString
(
"code"
));
}
}
src/main/java/com/live/cases/largeClassLive/TestQueryUserReplayRecordPage.java
0 → 100644
View file @
8629add9
package
com
.
live
.
cases
.
largeClassLive
;
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
org.testng.Assert
;
import
org.testng.annotations.BeforeMethod
;
import
org.testng.annotations.Test
;
/**
* Created by zhangying on 2020/02/02
*/
public
class
TestQueryUserReplayRecordPage
extends
XMBaseTest
{
@BeforeMethod
public
void
beforeTest
()
{
xmAppApi
.
setApiModule
(
ApiModele
.
CloudClass_apollo
)
// API 所属模块 必传 读取配置文件config.properties配置的api地址
.
setApiName
(
"API_queryUserReplayRecordPage"
)
// API 名称 必传
.
setLoginUser
(
"zhangy-b"
)
// http 接口,测试账号 必传
.
setTerminal
(
Terminal
.
B
);
// 所属端位(B端,C端,M端等, 必传)
super
.
beforeTest
();
}
/**
* 直播课回放记录
*/
@Test
public
void
testQueryUserReplayRecordPage
()
{
JSONObject
jsonObject
=
new
JSONObject
();
jsonObject
.
put
(
"current"
,
"1"
);
jsonObject
.
put
(
"size"
,
"10"
);
jsonObject
.
put
(
"liveCourseId"
,
"1356196461296828418"
);
xmAppApi
.
doRequest
(
RequestType
.
JSON
,
params
,
jsonObject
.
toJSONString
(),
headers
);
System
.
out
.
println
(
xmAppApi
);
JSONObject
jsonBody
=
xmAppApi
.
getBodyInJSON
();
Assert
.
assertNotEquals
(
jsonBody
.
getJSONObject
(
"result"
).
getString
(
"total"
),
0
);
Assert
.
assertEquals
(
"true"
,
jsonBody
.
getString
(
"success"
));
Assert
.
assertEquals
(
"200"
,
jsonBody
.
getString
(
"code"
));
}
}
src/main/java/com/live/cases/largeClassLive/TestTransformRecordUrl.java
0 → 100644
View file @
8629add9
package
com
.
live
.
cases
.
largeClassLive
;
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
org.testng.Assert
;
import
org.testng.annotations.BeforeMethod
;
import
org.testng.annotations.Test
;
/**
* Created by zhangying on 2020/02/02
*/
public
class
TestTransformRecordUrl
extends
XMBaseTest
{
@BeforeMethod
public
void
beforeTest
()
{
xmAppApi
.
setApiModule
(
ApiModele
.
CloudClass_apollo
)
// API 所属模块 必传 读取配置文件config.properties配置的api地址
.
setApiName
(
"API_transformRecordUrl"
)
// API 名称 必传
.
setLoginUser
(
"zhangy-b"
)
// http 接口,测试账号 必传
.
setTerminal
(
Terminal
.
B
);
// 所属端位(B端,C端,M端等, 必传)
super
.
beforeTest
();
}
/**
* 直播课回放视频转码
*/
@Test
public
void
testTransformRecordUrl
()
{
JSONObject
jsonObject
=
new
JSONObject
();
jsonObject
.
put
(
"liveCourseId"
,
"1356196461296828418"
);
System
.
out
.
println
(
"jsonObject ="
+
jsonObject
);
xmAppApi
.
doRequest
(
RequestType
.
JSON
,
params
,
jsonObject
.
toJSONString
(),
headers
);
System
.
out
.
println
(
xmAppApi
);
JSONObject
jsonBody
=
xmAppApi
.
getBodyInJSON
();
Assert
.
assertEquals
(
jsonBody
.
getString
(
"message"
),
"该回放已转码"
);
Assert
.
assertEquals
(
"false"
,
jsonBody
.
getString
(
"success"
));
Assert
.
assertEquals
(
"PARAM_ERROR"
,
jsonBody
.
getString
(
"code"
));
}
}
src/main/resources/apicase/apollo.json
View file @
8629add9
...
@@ -115,5 +115,23 @@
...
@@ -115,5 +115,23 @@
"apiContentType"
:
"application/json;charset=utf-8"
,
"apiContentType"
:
"application/json;charset=utf-8"
,
"apiName"
:
"上课详情"
,
"apiName"
:
"上课详情"
,
"desc"
:
"查看上课详情"
"desc"
:
"查看上课详情"
},
"API_queryUserReplayRecordPage"
:
{
"apiPath"
:
"/apollo/public/businessLive/queryUserReplayRecordPage"
,
"apiContentType"
:
"application/json;charset=utf-8"
,
"apiName"
:
"回放记录"
,
"desc"
:
"查看回放记录"
},
"API_exportLargeClassLiveAsync"
:
{
"apiPath"
:
"/apollo/public/businessLive/exportLargeClassLiveAsync"
,
"apiContentType"
:
"application/json;charset=utf-8"
,
"apiName"
:
"导出回放记录"
,
"desc"
:
"导出回放记录"
},
"API_transformRecordUrl"
:
{
"apiPath"
:
"/apollo/public/businessLive/transformRecordUrl"
,
"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