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
c6dcb107
Commit
c6dcb107
authored
Mar 09, 2021
by
zhangying
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
补充资料云盘移动文件夹的case
parent
b9e6208d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
88 additions
and
1 deletions
+88
-1
src/main/java/com/live/cases/fileManage/commonFolder/TestMoveFolder.java
+87
-0
src/main/resources/parameter.json
+1
-1
No files found.
src/main/java/com/live/cases/fileManage/commonFolder/TestMoveFolder.java
0 → 100644
View file @
c6dcb107
package
com
.
live
.
cases
.
fileManage
.
commonFolder
;
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.GetFolderData
;
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/9 4:43 下午
*/
public
class
TestMoveFolder
extends
XMBaseTest
{
@BeforeMethod
public
void
beforeTest
()
{
xmAppApi
.
setApiModule
(
ApiModele
.
CloudClass_apollo
)
// API 所属模块 必传 读取配置文件config.properties配置的api地址
.
setApiName
(
"API_moveFolder"
)
// API 名称 必传
.
setLoginUser
(
"zhangy-b"
)
// http 接口,测试账号 必传
.
setTerminal
(
Terminal
.
B
);
// 所属端位(B端,C端,M端等, 必传)
dal
.
setCase_owner
(
"张莹"
);
super
.
beforeTest
();
}
/**
* 测试移动文件夹-移动到自身文件夹
*/
@Test
(
description
=
"测试移动文件夹-移动到自身文件夹"
)
public
void
testMoveFolder
()
throws
InterruptedException
{
GetFolderData
getFolderData
=
new
GetFolderData
();
JSONObject
folderList
=
getFolderData
.
getCommonFolderList
();
String
folderId
=
folderList
.
getJSONObject
(
"result"
).
getJSONArray
(
"records"
).
getJSONObject
(
0
).
getString
(
"id"
);
List
moveIds
=
new
ArrayList
();
moveIds
.
add
(
folderId
);
JSONObject
jsonObject
=
new
JSONObject
();
jsonObject
.
put
(
"disk"
,
"COMMON"
);
jsonObject
.
put
(
"moveIds"
,
moveIds
);
jsonObject
.
put
(
"newParentId"
,
folderId
);
xmAppApi
.
doRequest
(
RequestType
.
JSON
,
params
,
jsonObject
.
toJSONString
(),
headers
);
JSONObject
jsonBody
=
xmAppApi
.
getBodyInJSON
();
System
.
out
.
println
(
"jsonBody = "
+
jsonBody
);
Assert
.
assertEquals
(
"false"
,
jsonBody
.
getString
(
"success"
));
Assert
.
assertEquals
(
"不能将文件移动到自身或其子目录下"
,
jsonBody
.
getString
(
"message"
));
}
/**
* 测试移动文件夹-移动到其他文件夹
*/
@Test
(
description
=
"测试移动文件夹-移动到其他文件夹"
)
public
void
testMoveFolder1
()
throws
InterruptedException
{
GetFolderData
getFolderData
=
new
GetFolderData
();
JSONObject
folderList
=
getFolderData
.
getCommonFolderList
();
String
folderId
=
folderList
.
getJSONObject
(
"result"
).
getJSONArray
(
"records"
).
getJSONObject
(
0
).
getString
(
"id"
);
String
folderId1
=
folderList
.
getJSONObject
(
"result"
).
getJSONArray
(
"records"
).
getJSONObject
(
1
).
getString
(
"id"
);
List
moveIds
=
new
ArrayList
();
moveIds
.
add
(
folderId
);
JSONObject
jsonObject
=
new
JSONObject
();
jsonObject
.
put
(
"disk"
,
"COMMON"
);
jsonObject
.
put
(
"moveIds"
,
moveIds
);
jsonObject
.
put
(
"newParentId"
,
folderId1
);
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"
));
}
}
src/main/resources/parameter.json
View file @
c6dcb107
...
...
@@ -18,7 +18,7 @@
"aid"
:
"1235115979394306049"
,
"uid"
:
"1298871716164775938"
,
"userType"
:
"B"
,
"tid"
:
"12
49975464775172097
"
,
"tid"
:
"12
35115979473997826
"
,
"teacherId"
:
"1235115979473997826"
},
"rc"
:
{
...
...
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